owenasteel
owenasteel

Reputation: 69

SQL Cannot connect to database server

Currently I have been working with MySQL on Mac OSX. I have MySql Workbench and MySql installed, along with commands on Terminal, but every time I try to open a database it comes up with this: Error

Could someone explain what I have done wrong? I have tried everything (commands, reinstalling MySQL...)

Upvotes: 1

Views: 625

Answers (2)

Arul Suju
Arul Suju

Reputation: 706

There is a mistake in ip address . make sure you use correct format. if you use it locally give "127.0.0.1:3306" or "localhost:3306"

Upvotes: 1

Nonskill_CAT
Nonskill_CAT

Reputation: 21

"8.0.13:3306" is not a legal "ip:port" format, make sure you've entered a correct IP address such as "10.8.0.13:3306"

Upvotes: 0

Related Questions