mitchellang
mitchellang

Reputation: 39

Unable to stop MySQL on MAC

Whenever I click on the "Stop MySQL Server" on mac, it either can't stop or just restart. However, rebooting will, but the minute I open the MySQL page, it starts up again! I tried kill, shutdown on terminal but to no avail...

Upvotes: 3

Views: 1735

Answers (2)

tmwong
tmwong

Reputation: 116

try these 3 commands below:

brew services stop mysql
sudo launchctl unload /Library/LaunchDaemons/com.mysql.mysql.plist
sudo launchctl unload /Library/LaunchDaemons/com.oracle.oss.mysql.mysqld.plist

Upvotes: 4

Related Questions