Joyce Chin
Joyce Chin

Reputation: 29

How can I boot mysql?

After I install mysql in my terminal like this

brew install mysql

I try to open it like this

mysql -uroot

but it appear an error:ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/tmp/mysql.sock' (2) What should I do

Upvotes: 0

Views: 39

Answers (1)

user8603269
user8603269

Reputation:

Try starting mysql server with this command: mysql.server start

and if this not help try: brew services start mysql

Upvotes: 1

Related Questions