I have mysql installed on my mac (running OSX Snow Leopard). According to everything I have seen, all I should have to do is type mysql at the command line to bring up the monitor. I do have /usr/local/mysql in my path.

Instead, I have to type open mysql. That opens the monitor. However, I cannot login as root. I tried sudo open mysql. That worked, but it still logs me in as @localhost.

What's up???

Thanks,

John

link|improve this question

50% accept rate
1  
What happens when you just type mysql? – Pekka Jan 22 '10 at 22:09
Whats wrong with @localhost? If the server is running at your machine then you log in from localhost.... – Felix Kling Jan 22 '10 at 22:11
In MySQL users have a name and a domain. If you're logging in as root, it would be root@localhost so @localhost isn't a full login. How did you install MySQL? There's a number of different ways on OS-X and which one you used could make a big difference in the answer to your question. – Emily Jan 22 '10 at 22:12
feedback

1 Answer

up vote 0 down vote accepted

That /usr/local/mysql is usually the directory where MySQL installs on OS X. Try this command:

/usr/local/mysql/bin/mysql

In addition, I start the local MySQL server using an alias:

alias mysqld="sudo /usr/local/mysql/bin/mysqld_safe"
link|improve this answer
I'm such a tard!! That did it Harold!! Thanks. – user145110 Jan 23 '10 at 0:34
feedback

Your Answer

 
or
required, but never shown

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