Reputation: 69
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:
Could someone explain what I have done wrong? I have tried everything (commands, reinstalling MySQL
...)
Upvotes: 1
Views: 625
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
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