MySQL远程链接
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了MySQL远程链接相关的知识,希望对你有一定的参考价值。
当把本地数据库作为服务器的时候,如果你发现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远程链接的主要内容,如果未能解决你的问题,请参考以下文章