I installed it it via mac ports, what is the command I need to stop the server (i need to test how my app behave when MySQL is dead)

link|improve this question

61% accept rate
feedback

9 Answers

up vote 67 down vote accepted

There are two cases depending on whether you installed mysql with the official binary installer or using macports:

MacPorts

sudo launchctl unload -w /Library/LaunchDaemons/org.macports.mysql.plist
sudo launchctl load -w /Library/LaunchDaemons/org.macports.mysql.plist

Note: this is persistent after reboot.

Binary installer

sudo /Library/StartupItems/MySQLCOM/MySQLCOM stop
sudo /Library/StartupItems/MySQLCOM/MySQLCOM start
sudo /Library/StartupItems/MySQLCOM/MySQLCOM restart
link|improve this answer
Thanks a ton - I had the stop and start commands, but didn't know about/think about trying restart. After using the stop command, start would do nothing, as would starting from the MySQL System Preferences panel. – Ross Henderson Apr 16 '11 at 1:00
1  
In my case it was slightly different, because the mysql version number was added in the plist file. It was like that: sudo launchctl unload -w /Library/LaunchDaemons/org.macports.mysql5.plist sudo launchctl load -w /Library/LaunchDaemons/org.macports.mysql5.plist – d1rk Oct 26 '11 at 10:23
feedback

You can always use command "mysqladmin shutdown"

link|improve this answer
The commands above didn't work for me. This one did. Not sure what the difference is in my setup, but thanks. – Marco Sep 6 '09 at 1:10
1  
Even though it may work, if you're using MacPorts and run this, launchctl will not realize mysql has stopped and will complain if you try to start it (load). Using launchctl is thus preferable. – jpatokal Jul 6 '11 at 2:22
Also although this works for shutting down the server, it won't do anything to help you bring it back up when you want to restart it. – aroth Aug 9 '11 at 1:59
feedback

sudo /opt/local/etc/LaunchDaemons/org.macports.mysql5/mysql5.wrapper stop

You can also use start and restart here. I found this by looking at the contents of /Library/LaunchDaemons/org.macports.mysql.plist.

link|improve this answer
this worked for me thanks :) – Kurund Jalmi Jan 28 '10 at 20:29
This is how you're supposed to do it.. For MacPorts.. The launchctl method does NOT work, and in fact can cause problems with PID / DB startup bitching and moaning. – alex gray Mar 13 at 4:01
feedback

Apparently you want:

sudo /Library/StartupItems/MySQLCOM/MySQLCOM stop

Have a further read here: http://www.simplisticcomplexity.com/2007/10/27/start-and-stop-mysql-in-mac-os-x-105-leopard/

link|improve this answer
feedback

To add to the list of many:

Brew starts:

/usr/local/bin/mysql.server start|restart|stop

Just to be clear, that | is just there so you choose which one you want to select... don't pick all 3.

link|improve this answer
feedback

Well if all else fails you could just take the ruthless approach and kill the process running mysql manually.

i.e. "ps -Af" to list all processes, then do "kill <pid>" where <pid> is the process id of the mysql daemon (mysqld).

link|improve this answer
yeah.. this one is the best and universal for scripting. Do you think there is possibility of data corruption? or any other problems? – user425720 Nov 11 '10 at 19:01
feedback

try

sudo <path to mysql>/support-files/mysql.server start
sudo <path to mysql>/support-files/mysql.server stop

else try :

sudo /Library/StartupItems/MySQLCOM/MySQLCOM start
sudo /Library/StartupItems/MySQLCOM/MySQLCOM stop
sudo /Library/StartupItems/MySQLCOM/MySQLCOM restart

however, I found that the second option only worked (OS X 10.6, MySQL-5.1.50) if the .plist has been loaded with:

sudo launchctl load -w /Library/LaunchDaemons/com.mysql.mysqld.plist

p.s I also found that I needed to un-load the .plist to get an un-related install of MAMP-mysql to start / stop correctly. After running running this MAMP-mysql starts just fine:

sudo launchctl unload -w /Library/LaunchDaemons/com.mysql.mysqld.plist

link|improve this answer
feedback

For me it's working with a "mysql5"

sudo launchctl unload -w /Library/LaunchDaemons/org.macports.mysql5.plist
sudo launchctl load -w /Library/LaunchDaemons/org.macports.mysql5.plist
link|improve this answer
feedback

If you installed mysql5 package with macports:

sudo launchctl  unload -w /Library/LaunchDaemons/org.macports.mysql.plist

or

sudo launchctl  unload -w /Library/LaunchDaemons/org.macports.mysql5-devel.plist

if you installed mysql5-devel package.

link|improve this answer
1  
This will stop it from starting when you reboot, which is not what the poster was asking for. – Matthew Schinckel Sep 19 '08 at 10:27
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.