Reputation: 1330
I ran sudo /usr/local/mysql/support-files/mysql.server stop
with Terminal and it showed
Shutting down MySQL
. SUCCESS!
But very weirdly the next command sudo mysqld_safe --skip-grant-tables
did not work, showing the following message.
151103 19:45:27 mysqld_safe Logging to '/usr/local/mysql/data/Marshalls-MacBook-Air.local.err'.
151103 19:45:27 mysqld_safe A mysqld process already exists
I went to System Preferences -> MySQL to find out if it is still running, and it turned out to be yes.
Now I started the Activity Monitor, to forcefully quit mysqld. I clicked the quit button, and it still turns out to be active.
Any solutions?
Upvotes: 3
Views: 3732
Reputation: 137
This indicates that MySQL server is running on your Mac. If you would like to kill/stop the process for any reason, do the following:
Go to System Preferences... -> MySQL
click on Stop MySQL server.
you are done. :)
Upvotes: 6