Skip to content

Instantly share code, notes, and snippets.

@collinprice
Created February 27, 2015 01:08
Show Gist options
  • Save collinprice/50f7f465d59bd60f5de2 to your computer and use it in GitHub Desktop.
Save collinprice/50f7f465d59bd60f5de2 to your computer and use it in GitHub Desktop.
Fix Mac mysql install
ps -ax | grep mysql
stop and kill any MySQL processes
brew remove mysql
brew cleanup
sudo rm /usr/local/mysql
sudo rm -rf /usr/local/var/mysql
sudo rm -rf /usr/local/mysql*
sudo rm ~/Library/LaunchAgents/homebrew.mxcl.mysql.plist
sudo rm -rf /Library/StartupItems/MySQLCOM
sudo rm -rf /Library/PreferencePanes/My*
launchctl unload -w ~/Library/LaunchAgents/homebrew.mxcl.mysql.plist
rm -rf ~/Library/PreferencePanes/My*
sudo rm -rf /Library/Receipts/mysql*
sudo rm -rf /Library/Receipts/MySQL*
sudo rm -rf /private/var/db/receipts/*mysql*
sudo rm -rf /var/mysql
brew doctor
brew update
brew install mysql
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment