当前位置:Gxlcms > 数据库问题 > MySQL远程链接

MySQL远程链接

时间:2021-07-01 10:21:17 帮助过:3人阅读

当把本地数据库作为服务器的时候,如果你发现client无法链接到你的数据库服务器,那么有可能是:

1. 当前account没有远程链接权限,如何开通?

 GRANT ALL PRIVILEGES ON *.* TO ‘root‘@‘%‘ IDENTIFIED BY ‘password‘ WITH GRANT OPTION;
 FLUSH PRIVILEGES;

2. 防火墙屏蔽了远程链接请求,怎么解决?

netsh advfirewall firewall add rule name="MySQL Server" action=allow protocol=TCP dir=in localport=3306

Reference:

http://stackoverflow.com/questions/21627421/mysql-unable-to-connect-with-remote-server

http://stackoverflow.com/questions/14779104/how-to-allow-remote-connection-to-mysql

 

MySQL远程链接

标签:

人气教程排行