I just installed mysql with homebrew on mac OSX.

The very first thing I did after the installation was the following symlink: /usr/bin/mysql -> /usr/local/Cellar/mysql/5.5.15/bin/mysql

But if I type 'mysql', instead of having the mysql-client interface, I get into /var/empty/, exactly like if I was doing a cd /var/empty/

Why, and how can I fix this problem so that the mysql command execute the mysql client ?

link|improve this question

Does your shell have a 'mysql' alias, perhaps, which is malfunctioning? – Marc B Oct 31 '11 at 16:11
@Marc B.: I don't know, how may I check ? – FMaz008 Oct 31 '11 at 17:01
To the person who voted for close: I'm setuping a brand new iMac, so it's not a specific/personnal case, and the FAQ specify "software tools commonly used by programmers", and I think that the Terminal and MySQL are tools commonly used by programmers. – FMaz008 Oct 31 '11 at 17:04
'alias' at the prompt would show any. – Marc B Oct 31 '11 at 17:14
@Mark B. ➜ ~ alias | grep mysql return: mysql='nocorrect mysql' – FMaz008 Oct 31 '11 at 17:54
show 1 more comment
feedback

1 Answer

up vote 1 down vote accepted

Does your shell have a 'mysql' alias, perhaps, which is malfunctioning? alias at the prompt will show any aliases that are set.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.