Skip to content

Instantly share code, notes, and snippets.

@tru2dagame
Last active August 29, 2015 14:12
Show Gist options
  • Save tru2dagame/297142a58c03175a0181 to your computer and use it in GitHub Desktop.
Save tru2dagame/297142a58c03175a0181 to your computer and use it in GitHub Desktop.
uninstall mysql from dev.mysql.com on a Mac OS X

To uninstall MySQL and completely remove it (including all databases) from your Mac do the following:

. Open a terminal window
. Use mysqldump to backup your databases to text files!
. Stop the database server
. sudo rm /usr/local/mysql
. sudo rm -rf /usr/local/mysql*
. sudo rm -rf /Library/StartupItems/MySQLCOM
. sudo rm -rf /Library/PreferencePanes/My*
. edit /etc/hostconfig and remove the line MYSQLCOM=-YES-
. 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*
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment