Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Development Tools Database Foundations Installing MySQL Server and MySQL Workbench Installing MySQL Server and Workbench on OS X

Seph Cordovano
Seph Cordovano
17,400 Points

Erasing MySQL from Mavericks MacOS and Reinstalling, Error-free (hopefully)

Not really a question, more of a quick guide I came up with after doing some heavy research.

I hit a pretty large wall even after following Kyle Damken's tutorial as well due to the fact that my hard drive was cloned from another computer that I had previously used MySQL on. It took quite a while to figure out but I uninstalled MySQL completely by running these commands from the command line:

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- (if this doesn't execute, attempt to just continue)

$ 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*

then uninstall all the parts mentioned in this video and then reinstall them and it should work fine with Kyle Damken's walkthrough, located in the forum here.

Ps. I'm running Mavericks on Mac OS 10.10 and installed the most up to date components of MySQL Workbench and Server.

Leigh Maher
Leigh Maher
21,830 Points

Thanks. This helped me.