문제

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.

도움이 되었습니까?

해결책

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.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top