MAMP phpmyadmin db files not in the expected location - mysql

For some reason MAMP, mySQL server and phpMyAdmin started acting odd.
First some back story....
First off in MAMP the mySQL Server indicator was not on (although it's on in system prefs) and when launching phpMyAdmin I was getting the error:
mysqli_real_connect(): (HY000/2002): No such file or directory.
Step-1 After some google-foo – I symbolic linked /tmp/mysql.sock to /var/mysql/mysql.sock – then error changed to:
mysqli_real_connect(): (HY000/2002): Connection refused
Step-2 Bit more google-foo – in MAMP I changed the mysql to 3306 – and then error changed to:
mysqli_real_connect(): (HY000/1045): Access denied for user
'root'#'localhost' (using password: YES)
Step-3 Bit more google-foo – I used terminal and changed the password to 'root' which is what the MAMP start page said the mysql password should be.
Working.
Step-5 Rebooted mac. Not working again and back to error:
mysqli_real_connect(): (HY000/2002): No such file or directory.
Step-6 Checked the symbolic links from step 1 and now tmp/mysql now points to MAMP/tmp/mysql/
Step-7 Bit more google-foo – changed localhost to 127.0.0.1 in MAMP/bin/phpMyAdmin/config.inc.php
So I am now into phpMyAdmin, although the MAMP mySQL Server indicator is still not on. When I go into phpMyAdmin non of my databases are listed.
Step-8 Rebooted mac. Still no databases listed and MAMP mySQL Server indicator still off.
Step-9 So I created a new DB and tried to find that in the Finder, which I did in usr/local/mysql/data – although I was locked out of 'data' until I changed it's permissions to 755. (usr/local/mysql is actually sym linked to usr/local/mysql-5.7.17-macos10.12-x86_64)
So the question is now how to get MAMP/phpMyAdmin to point to the db files in MAMP/db/mysql56 and not usr/local/mysql/data
Create a symbolic link?
I have reinstalled MAMP which has made no difference.

It sounds like you might have two different MySQL servers running on your system. That would explain why the MAMP status is showing that MySQL isn't running, but you're still able to connect and would also explain why you're not seeing existing database when you connect. This is further reinforced by the paths; /usr/local/mysql-5.7.17-macos10.12-x86_64 doesn't seem like a MAMP path (though I don't use MAMP, so I don't know for sure).
You should examine your system for another MySQL installation. You might try which mysql at the command line, or which mysqld which might give some clue where it's running from. Once you find the second MySQL installation, I suggest removing it entirely (while maintaining the data directory that you need), because no good can come from having two different MySQL installations fighting for the same resources.
An alternative explanation would be that you're not connecting as an actual user, but as the anonymous user, which could hide all the normal databases from your view.

Related

phpMyAdmin - "Cannot log in to the MySQL server"

I just recently installed MySQL (Ver 8.0.32) and phpMyAdmin on my CentOS 7 machine, however, every time I try to login to phpMyAdmin it says I cannot login. The MySQL database is up and running as I am able to log into it via the command line using root as the username and the password I had set on install.
I have tried creating a new user with full access and privileges (which I can log into via the command line as well) but phpMyAdmin returns the same "Cannot log into the MySQL server" error even though everything is correct.
I have tried updating the MySQL port, I have tinkered with /etc/phpMyAdmin/config.inc.php to use the proper host of the machine, the port, socket, connect_type, auth_type, user, password, etc. I have tried every solution that was recommended online and yet nothing. I cannot login to phpMyAdmin and I am unsure as to why (I can't find any logs regarding the issue either).
Can anyone help? I am so annoyed and I do not know what else to do.

mysql only runs as root

I've just recently installed my Macports MAMP environment and I thought I'd followed the directions, but couldn't get MySQL to run. After much wrangling and testing, I've stumbled upon what the problem is, but I have no idea how to solve it.
I was getting the classic, irritating "Can't connect to local MySQL server through socket" error message. Checking and rechecking, the socket file was exactly where MySQL expected it to be and was set to the right permissions. Then, while trying to troubleshoot, I attempted to log in while I was still in superuser and boom! I was in!!
Leave superuser and it no longer works. Doh!
So my question is: how might I correct this problem and get it to run as a regular user? The trouble with Google searching a topic like this is that the two user systems - MySQL and Mac - are getting confused and I'm not finding the solution I need.
Thanks very much!
A brief example of the problem:
`tomb# mysql -u root -p thisismypassword
ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/opt/local/var/run/mysql55/mysqld.sock' (13)
tomb#sudo su
Password:
sh-3.2#mysql -u root -p thisismypassword
mysql >`

Can't connect to MySQL

I'm trying to connect to MySQL, using Sequel Pro, something I have done many times before. Host 127.0.0.1, username root, no password. I get the following message:
Unable to connect to host 127.0.0.1 because access was denied.
Double-check your username and password and ensure that access from your current location is permitted.
MySQL said: Access denied for user 'root'#'localhost' (using password: NO)
For what it's worth, I got this message after upgrading to a new Mac OS (Mavericks), realized that the server wasn't running, downloaded a new server (which is currently running), and tried again - but I had the same problem.
Make sure you are running MySql in background System Preferences -> Mysql -> Start MySql
Make sure you are able to connect to MySql through command line, if command line works, there is no reason why it should not work in SequelPro.
If problem still persists, try changing the 'root' password.
It happened to my in Mac. I went to system preferences -> MySQL -> Stopped the server, started it again, and it worked.

error: 'Access denied for user 'debian-sys-maint'#'localhost' (using password: YES)'

Longtime reader of Stackoverflow, first time submitting a question.
I had to hardware-reboot my dev laptop a few nights ago for various reasons. When i brought it back up i realized that mysqld were no longer accessible. I usually connect with root on a local dev machine. I could not start/stop it through the init-scripts as usual either and so I turned to various search engines as always. After consulting Google, Bing and Duckduckgo.com I still could not find a solution on the problem. I found solutions to similar problems but all involved changing the auto-generated password for debian-sys-maint and login as root to set a new one but since I cannot login as root either this does not solve my problem.
Does anyone know of any other solution-candidates for this dilemma?
error: 'Access denied for user 'debian-sys-maint'#'localhost' (using password: YES)' .
I just got the same error after I restored mysql database like so:
mysql -h localhost -u root -p < mysql.backup.sql
mysql.backup.sql file comes from another server.
The problem seems to originate from the different password stored in /etc/mysql/debian.cnf in target and source systems. I copy/pasted the password line from source system's debian.cnf file to the file in target system. Then I was able to restart mysqld without any problems.
Note: I had to do killall mysqld before I could do a restart.
Sounds like you might have trashed the tables in the database ("mysql") that holds the credentials for accessing all the databases. Do you see anything in the MySQL logs (/var/log/mysql) that indicates a problem?
If there is corruption the approach to trying to fix it will depend on your storage engine. Are you using MyISAM (the default)? If so, try turning off the daemon and using myisamchk to attempt a repair.
If you can't repair, you will likely have to restore from backups (you have backups, right?) or reinitialize MySQL (probably just reinstalling the package through APT is easiest).
You might try over at ServerFault too for more suggestions from experienced sysadmins.
P.S.- if you have system super user access, you can reset the MySQL root password even if you can't login to MySQL, albeit through a somewhat convoluted procedure.
There is nothing stange or unusual.
The error means that password is incorrect.
If you want to change/reset the password, then take a look at this article - http://dev.mysql.com/doc/refman/5.1/en/resetting-permissions.html

Cannot connect to Database server (mysql workbench)

Could you help me solve this problem ?
When I try to click "query database" under database menu in Mysql workbench. it gives me an error:
Cannot Connect to Database Server
Your connection attempt failed for user 'root' from your host to server at
127.0.0.1:3306:Can't connect to mysql server on '127.0.0.1'(10061)
Please:
Check that mysql is running on server 127.0.0.1
Check that mysql is running on port 3306 (note: 3306 is the default, but this can be changed)
Check the root has rights to connect to 127.0.0.1 from your address (mysql rights define what clients can connect to the server and from which machines)
Make sure you are both providing a password if needed and using the correct password for 127.0.0.1 connecting from the host address you're connecting from
The issue is likely due to socket authentication being enabled for the root user by default when no password is set, during the upgrade to ubuntu 16.04.
The solution is to revert back to native password authentication. You can do this by logging in to MySQL using socket authentication by doing:
sudo mysql -u root
Once logged in:
ALTER USER 'root'#'localhost' IDENTIFIED WITH mysql_native_password BY 'password';
which will revert back to the native (old default) password authentication.
Now use password as the password whenever required by MySQL.
Try opening services.msc from the start menu search box and try manually starting the MySQL service or directly write services.msc in Run box
It looks like there are a lot of causes of this error.
My Cause / Solution
In my case, the cause was that my server was configured to only accept connections from localhost. I fixed it by following this article: How Do I Enable Remote Access To MySQL Database Server?. My my.cnf file had no skip-networking line, so I just changed the line
bind-address = 127.0.0.1
to
bind-address = 0.0.0.0
This allows connections from any IP, not just 127.0.0.1.
Then, I created a MySql user that could connect from my client machine by running the following terminal commands:
# mysql -u root -p
mysql> CREATE USER 'username'#'1.2.3.4' IDENTIFIED BY 'password';
-> GRANT ALL PRIVILEGES ON *.* TO 'username'#'1.2.3.4' WITH GRANT OPTION;
-> \q
where 1.2.3.4 is the IP of the client you are trying to connect from. If you really have trouble, you can use '%' instead of '1.2.3.4' to allow the user to connect from any IP.
Other Causes
For a fairly extensive list, see Causes of Access-Denied Errors.
Did you try to determine if this is a problem with Workbench or a general connection problem? Try this:
Open a terminal
Type mysql -u root -p -h 127.0.0.1 -P 3306
If you can connect successfully you will see a mysql prompt after you type your password (type quit and Enter there to exit).
Report back how this worked.
I had a similar issue on Mac OS and I was able to fix it this way:
From the terminal, run:
mysql -u root -p -h 127.0.0.1 -P 3306
Then, I was asked to enter the password. I just pressed enter since no password was setup.
I got a message as follows:
Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL
connection id is 181. Server version: 8.0.11 Homebrew.
If you succeeded to log into mysql>, run the following command:
ALTER USER 'root'#'localhost' IDENTIFIED WITH mysql_native_password BY 'password';
You should get a message like this:
Query OK, 0 rows affected (0.19 sec)
Now, your password is "password" and your username is "root".
Happy coding :)
Run the ALTER USER command. Be sure to change password to a strong password of your choosing.
sudo mysql # Login to mysql`
Run the below command
ALTER USER 'root'#'localhost' IDENTIFIED WITH mysql_native_password BY 'password';
Now you can access it by using the new password.
Ref : https://www.digitalocean.com/community/tutorials/how-to-install-mysql-on-ubuntu-18-04
I had to start Workbench as Administrator. Apparently it didn't have the required permissions to connect to my localhost database server process.
Right-click the Workbench shortcut and select Run as Administrator. In the shortcut's Properties window, you can click on "Advanced" and tick the box next to "Run as Administrator" to always run the Workbench with Admin privileges.
The error occur because the mysql server is not starting on your computer. You should start it manually. Do following steps:
Download and install wamp server according to your bit version(32bit or 64bit) in your computer(http://wampserver-64bit.en.softonic.com/) this link allows you to download wamp server for 64bit.
As soon as you install it you can double click and run it..(you can see a icon in the right hand of the taskbar.It may be hidden .so you can click the arrow which show you the hide apps runing).So click the icon and go to Mysql
Then go to Service and there you can find Start/Resume Services click on it..
And now it is done.Open mysql workbench and see.It will work..
I had same problem with Workbench on Ubuntu, problem was with permission.
Find Workbench app
Click button Permissions
Give all permission for this app
I struggled with this problem for awhile and did several reinstalls of MySQL before discovering this.
I know that MySQL server was running OK because I could access all my DB's using the command line.
Hope this works for you.
In MySQL Workbench (5.2.47 CE)
click Mange Server Instances (bottom right corner)
click Connection
in the Connection box select:
Local Instance ($ServerName) - root#127.0.0.1:3306 '<'Standard(TCP/IP)>
click Edit Selected...
under Parameters, Hostname change localhost or 127.0.0.1 to your NetBIOS name
click Test Connection
If this works for you, great. If not change the hostname back to what it was.
Even I faced a similar error when I opened MySQL Workbench.
The solution that worked for me was:
Click on the Start button on a Windows machine
Type services and press Enter
Find MySQL and click on it
On the top side of the left panel, you will find an option as Start the service
Click on Start which is visible as a hyperlink
Forr me reason was that I tried to use newest MySQL Workbench 8.x to connect to MySQL Server 5.1 (both running on Windows Server 2012).
When I uninstalled MySQL Workbench 8.x and installed MySQL Workbench 6.3.10 it successfully connected to localhost database
For those who ignored that the initial error message displaying is the following one:
The name org.freedesktop.secrets was not provided by any .service files
Make sure to install gnome-keyring using the following
sudo apt install gnome-keyring
I tried these steps -
Step 1 : Go to Ubuntu Software Center
Step 2 : Searched for MySql Workbench
Step 3 : And Click on Permissions
Step 4 : Enable Read, add, change or remove saved passwords
Then, enter Login Password
And then, I found that my problem solved
The problem is that MySQL server is not installed.
You can get the installer from here.
Then watch this 6-minute installation tutorial.
If then creating a new connection in MySQL Workbench is not working, make sure you run that connection as root as show below:
If you don't find your .ini file, check this answer (also written below).
Enter "services.msc" on the Start menu search box.
Find MySQL service under Name column, for example, MySQL56.
Right click on MySQL service, and select Properties menu.
Look for "Path To Executable" under General tab, and there is your .ini file, for instance, "C:\Program Files (x86)\MySQL\MySQL Server 5.6\bin\mysqld.exe" --defaults-file="C:\ProgramData\MySQL\MySQL Server 5.6\my.ini" MYSQL56
I was in similar situations before and last time I found it was some Windows update issue(not sure). This time, I opened MySQL workbench and found no connection to my local database. I cannot see my tables, but yesterday I could connect to the database.
I found that my cause is that, after letting my computer sleeping for some time and wake it again, the mysql service is not running.
My solution: restart the service named "mysql" and rerun the workbench. Restarting the service takes a while, but it works.
To be up to date for upper versions and later visitors :
Currently I'm working on a win7 64bit having different tools on it including python 2.7.4 as a prerequisite for google android ...
When I upgraded from WB 6.0.8-win32 to upper versions to have 64bit performance I had some problems for example on 6.3.5-winx64 I had a bug in the details view of tables (disordered view) caused me to downgrade to 6.2.5-winx64.
As a GUI user, easy forward/backward engineering and db server relative items were working well but when we try to Database>Connect to Database we will have Not connected and will have python error if we try to execute a query however the DB server service is absolutely ran and is working well and this problem is not from the server and is from workbench. To resolve it we must use Query>Reconnect to Server to choose the DB connection explicitly and then almost everything looks good (this may be due to my multiple db connections and I couldn't find some solution to define the default db connection in workbench).
As a note : because I'm using latest Xampp version (even in linux addictively :) ), recently Xampp uses mariadb 10 instead of mysql 5.x causes the mysql file version to be 10 may cause some problems such as forward engineering of procedures which can be resolved via mysql_upgrade.exe but still when we try to check a db connection wb will inform about the wrong version however it is not critical and works well.
Conclusion : Thus sometimes db connection problems in workbench may be due to itself and not server (if you don't have other db connection relative problems).
My problem was that the MySQL server wasn't actually installed. I had run the MySQL Installer, but it didn't install the MySQL server.
I reran the installer, click "Add", and then added MySQL server to the list. Now it works fine.
In my case I have just installed MySQL Workbench but after uninstalling MySQL Workbench and installing MySQL installer and is same for both 32 and 64 bit then after it working like a charm. Hope it could be useful.
I just use:
sudo snap connect mysql-workbench-community:ssh-keys
sudo snap connect mysql-workbench-community:password-manager-service
I also struggled with this problem for quite a while.
I came accross this interesting thread from MySQL forum: http://forums.mysql.com/read.php?11,11388,11388#msg-11388
I also came accross (obviously) some good SO Q/A.
It seems that the message mentioned in "user948950" 's question can be coming from a wide range of reasons: log file too big, incorrect mysql.ini file values, spaces in the file path, security/acl issue, old entries in the registry, and so on.
So, after trying for 3h to fix this... I abandonned and decided to do a good old re-install.
This is where this post from (again) this MySQL thread came in useful, I quote:
Gary Williams wrote: Hi Guys,
I've had exactly the same problem and this is how I got it working
for me, starting with a non working installation.
Stop the windows service for any existing mysql installation.
Uninstall Mysql.
As with most uninstalls, old files are left behind. If your directory
is C:\mysql\ etc then delete the innob, etc, files but leave the
directories themselves as well as any existing databases in 'data'.
If your directory is C:\Program Files\ etc, delete all the mysql
directories.
It's now worth running regedit to make sure the old registry entries are deleted as well by the uninstall. If not, delete them.
It's ok to use the new .msi installer (essential files only), however ....
Do not use their default install path! Some genius set a path with spaces in it! Choose the custom install and select a sensible path,
ie, C:\mysql (note from Adrien: C:\mysqldata for ... the data)
Do not choose to alter the security settings. Uncheck the relevant box and the install will complete without having to set a root
password.
I think I have remembered everything.
Good luck
Gary
I did get into troubles when simply copy/pasting the databases I had in my previous "data" directory to the new one. So the work around I found was to export each database (I know... a lot of fun) and then re-import them one by one.
FYI: I used the following command to import C:/<MySQLInstallDir>/My SQL Server x.x/bin/mysql -u root -p <dbName> < "<dirPathOfDump>\<dumpName>.sql", that is for instance C:/mysql/MySQL Server 5.6/bin/mysql -u root -p mySupaCoolDb < "C:\mySupaCoolDbDump20130901.sql"
2022 and beyond this works for me:
sudo nano /etc/mysql/mysql.conf.d/mysqld.cnf
change
bind-address = 127.0.0.1
to
bind-address = 0.0.0.0
Then remember to restart mysql sudo systemctl restart mysql
Initially I was confused, but I was able to solve the problem.
If your workbench was downloaded through the Snap package manager you could easily use this command to solve the problem, very simple:
sudo snap connect mysql-workbench-community:password-manager-service :password-manager-service
Go to services.msc and find MySQL.
If "Log on As" section is 'Network Service', then:
Double click on the MySQL row to open a pop-up
go to "Log on" tab
Select Log on as: "Local System account" and check "Allow service to interact with desktop"
Voilà, now you can start your service on localhost and make sure you enter correct root/user password on your MySQL Workbench, and you are good to go.
If you are using snap to install mysql workbench, try this:
sudo snap connect mysql-workbench-community:password-manager-service :password-manager-service to allow sandboxed package to access password service
askubuntu.com/a/1242777/1621549
This Solution was made as a comment before by Rohim Chou