I am using a piece of hardware called a Meshlium AP, which I use to estimate where people are based on smartphone pings. If I am connected to the meshlium network I can access the management panel at 10.10.10.1.
Originally, I was working on a Windows Laptop and when connected to the Meshlium network, within their Management system (located at 10.10.10.1) I have the option to go to phpMyAdmin on local host to download the SQL data. I was able to login with the supplied username and password. I am still able to do this easily
I am now working on a Mac and when I attempt to login phpMyAdmin through their management system, I get this error "Access denied for user 'root'#localhost' (using password: YES)". I am using the same username and pass that still currently works on the PC
I have a feeling it might be some permission issues, but I have no idea how or what to change.
Any thoughts on how or what permissions I can change to gain access?
If you're sure that the password is correct then it sounds like the 'host' for the user is only localhost, and not setup to allow other hosts (even on LAN) to connect.
Related
I'm trying to connect to my siteground native database, but I'm getting this error:
ER_ACCESS_DENIED_ERROR: Access denied for user
'root'#'cpc1234569-man6-2-1-cust215.7-1.cable.virginm.net' (using
password: YES)
when I try to make a query. I'm connecting via mySQL's VSCode plugin.
I've entered my public IP address in to Siteground's remote access host section, but I'm still being denied permission. Any ideas?
I solved it by creating a new database access account within the siteground tools page. There must have been something wrong with the credentials of the previous account passed on to me by my colleague. It worked smoothly from a new account.
I am trying to connect to an external database using the CodeIgniter 3 framework. When I enter the database details in Codeigniter's database settings I get the following message:
Message: mysqli::real_connect(): (HY000/1045): Access denied for user '{username}'#'{HomeIP}' (using password: YES).
While I have set in the database settings that it should connect to an external database, it does not. It then tries to connect to the ip adress of where I live
I have already tried the following things:
Disable firewall
Connect via hotspot (then it tries to connect to ip of service provider)
When I use my phone to go to the website it does succeed in connecting, it is then most likely in the settings of my Macbook Pro (Big Sur)
Does anyone have an idea what it could be?
Enable remote database access on the database source.
That's why you're getting that message.
I have a database built by a commercial company. Their reporting is basically non-existent. They have a few canned reports but not what we need. Of course, they highly recommend not connecting to the database and can build custom reports for a "small fee".
My thoughts were to connect to the database using linked tables, then use something like Business Objects, Access, or even Excel to build all the reports I want for a "small fee". The only means I know to do this requires an ODBC connection. I have downloaded / installed the MySQL 5.1 Driver. But, I am having issues connecting.
I have a user name and password for the server. When I try the test connection I get
Connection Failed: [HY000][MySQL][ODBC 5.1 Driver]Access denied for
the user 'userrname'# '....'(using password: YES).
Tried establishing a read only account as well without a password and received the same error message but at the end it says
(using password: NO)
Any suggestions as to what is causing this? Any workaround?
Things you need to do:
Make sure you have the user/password correct.
Make sure you are granted access to the database with: grant all privileges on db.* to 'youruser'#'your ip' identified by 'YOURPASSWORD';
This seems like the most annoying thing in the world, but for some odd reason, I'm not able to connect my MySQL DB in PhpStorm (as a data source). It constantly tells me that the user/password combo is incorrect. Here's the complete error message:
The specified user/password combination is rejected: [28000][1045] Access denied for user 'my_username'#'localhost' (using password: YES).
I know for a fact that my credentials are correct. I've checked and double checked. Even created a few new users.
I know that the credentials are correct because the application I'm writing is successfully connected to this DB.
And, as an FYI, the DB I'm trying to connect to is hosted on GoDaddy (shared CPanel Linux hosting).
PS: I've also tried using my website's IP as the host to no avail.
I am developing an app with MySQL. I have MySQL (XAMPP) running on my PC. All works fine but now I want to let other users from our network to login, but I found out that when I change user property "localhost" to % (any computer) I get access denied even with my own account.
So, in the short, everytime I change "localhost" to "%" (any computer) I get "access denied". When switch back to localhost I can log easily.
What is wrong please?
Thank you
In MySQL, user#localhost and user#% are two completely different and unrelated users. You need to grant access to your data (and, if applicable, set a password) for user#% in addition to granting access for user#localhost. One does not also provide the other.