What to do if the MAMP app fails to start MySQL server?
On my macOS devices I use MAMP app by appsolute GmbH for local web development. So far, this is the perfect app for me to have a local server environment. But sometimes there are problems such as the following error message when I try to start the servers:
MySQL wasn't able to start. Please check log for more information
This article is intended for regular users. We will use the Finder and the Activity Monitor app to solve the problem. For experienced users, I recommend reading another article about this problem. It describes how to do almost the same thing, but using the Terminal app.
I’m using version 4.2.1 of the MAMP app, but in your case there can be any other version of the MAMP app. If you use the non-standard version of the app, but the PRO one, then in the following steps, replace “MAMP” with “MAMP PRO”, respectively.
What causes this problem
The reasons for the problems with running MySQL server can be different in different cases. The most common problems with MySQL server not starting are the following:
- Another
mysql
service running on the same port. - The
mysql.sock.lock
file was not deleted. - The current user not having permissions to the file.
- The log file is corrupted.
- The database is corrupted.
To find out the exact cause of the problem, you need to look in the MySQL log file located in /Applications/MAMP/logs/
or /Library/Application Support/appsolute/MAMP/logs/
.
Most often, the problems listed above occur after an incorrect shutdown of the MAMP app. For example, when your computer was hard powered off, or you force the MAMP app to quit.
How to solve it
I have encountered this problem on many occasions, and in most cases the following solutions work:
- Kill other MySQL processes running. (Solution №1)
- Rename or delete the MySQL log files. (Solution №2)
- Delete the
mysql.sock.lock
file. (Solution №3)
In this solution we will use the Activity Monitor app. You do not need to download and install anything, because it is already built into every macOS.
-
Quit MAMP app.
-
Launch the Activity Monitor app from the Utilities folder of your Applications folder, or use Spotlight to find it.
-
Type
mysqld
into the search field on the top right. -
Quit every process you find after your search.
-
Launch MAMP and click the
Start Servers
button.
In this solution we will use the Finder. You do not need to download and install anything, because it is already built into every macOS.
-
Quit MAMP app.
- In the Finder, go to the folder
Applications
->MAMP
->db
->mysql56
.Note! The path to this folder may be different on your system. Try the following variants:
1)/Applications/MAMP/db/mysql56/
2)/Library/Application Support/appsolute/MAMP/db/mysql56
- Rename the two log files
ib_logfile0
andib_logfile1
toib_logfile0_bak
andib_logfile1_bak
. Both of these files will be automatically rebuilt by MAMP on the next launch.Note! Don’t delete these two files as you may need to return to them.
- Launch MAMP and click the
Start Servers
button.
In this solution we will use the Finder. You do not need to download and install anything, because it is already built into every macOS.
-
Quit MAMP app.
- In the Finder, go to the folder
Applications
->MAMP
->tmp
->mysql
.Note! The path to this folder may be different on your system. Try the following variants:
1)/Applications/MAMP/tmp/mysql/
2)/Library/Application Support/appsolute/MAMP/tmp/mysql
-
Delete the lock file
mysql.sock.lock
. This file is a plain text file with a PID in it. This file will be automatically rebuilt by MAMP on the next launch. - Launch MAMP and click the
Start Servers
button.
Conclusion
That’s it, you’re done. Now the MAMP should start the MySql server without errors. So simple isn’t it?
If you are having trouble fixing this problem with the instructions above, but are being able to solve this problem with any another method please describe it in the comment section below. Thanks!
If this article has helped you solve the problem then please leave a comment
Thanks for reading!
Arthur is a designer and full stack software engineer. He is the founder of Space X-Chimp and the blog My Cyber Universe. His personal website can be found at arthurgareginyan.com.