Question

I want to connect to another PC's database through MySQL Workbench6.0

I have added all the related firewall exceptions for all ports in both PCs.

In Workbench i have done settings as

enter image description here

Is there anything wrong with it?

Is there any more settings i will have to do?

Please help me.

Was it helpful?

Solution

Make sure that you have set

bind-address = 192.168.1.1

set in yourr my.cnf.

Also make sure you granted the correct rights

so something like for just your client machine

grant all privilege on *.* to `username`@`your-pc-id` identified by 'password'

or

grant all on *.* to 'username'@'%' identified by 'password';

for all hosts.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top