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

Databases

Jeremy Barbe
Jeremy Barbe
8,728 Points

Getting MySQL to work on the command line (Mac)

Here's my $PATH:

/usr/local/mysql/support-file:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/opt/X11/bin

Here's what I put into my .bash_profile:

export PATH=$PATH:/usr/local/mysql/support-file

Still getting "mysql: command not found" when I type mysql in the Terminal. What am I doing wrong?

1 Answer

Nathan Tallack
Nathan Tallack
22,159 Points

You should find that your mysql binaries are within the /usr/local/mysql/bin path. So add that to your $PATH and restart your console and you should be right.

:)