I installed MySQL via MacPorts. What is the command I need to stop the server (I need to test how my application behave when MySQL is dead)?
|
There are two cases depending on whether you installed MySQL with the official binary installer or using MacPorts: MacPorts
Note: this is persistent after reboot. Binary installer
|
|||||||||
|
|
You can always use command "mysqladmin shutdown" |
|||||||||||
|
|
To add to the list of many: Brew starts:
Just to be clear, that | is just there so you choose which one you want to select... don't pick all 3. |
|||
|
|
|
You can also use start and restart here. I found this by looking at the contents of /Library/LaunchDaemons/org.macports.mysql.plist. |
|||||
|
|
Apparently you want:
Have a further read in Jeez People, Stop Fretting Over Installing RMagic. |
||||
|
|
|
I used Homebrew to install MySQL and I use:
|
|||
|
|
|
Try
Else try:
However, I found that the second option only worked (OS X 10.6, MySQL 5.1.50) if the .plist has been loaded with:
PS: I also found that I needed to unload the .plist to get an unrelated 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 |
||||
|
|
|
sudo /usr/local/mysql/support-files/mysql.server stop |
||||
|
|
Well, if all else fails, you could just take the ruthless approach and kill the process running MySQL manually. That is,
to list all processes, then do " |
||||
|
|
For me it's working with a "mysql5"
|
|||
|
|
|
I installed mysql5 and mysql55 over macports. For me the mentioned files here are located at the following places: (mysql55-server) /opt/local/etc/LaunchDaemons/org.macports.mysql55-server/org.macports.mysql55-server.plist (mysql5) /opt/local/etc/LaunchDaemons/org.macports.mysql5/org.macports.mysql5.plist So stopping for these works like this: mysql55-server:
mysql5:
You can check if the service is still running with:
Further you can check the log files in my case here: mysql55-server
mysql5:
|
|||
|
|
|
If you installed the MySQL 5 package with MacPorts:
Or
if you installed the |
|||||
|