码迷,mamicode.com
首页 > 数据库 > 详细

MySQL远程链接

时间:2016-09-14 23:16:20      阅读:255      评论:0      收藏:0      [点我收藏+]

标签:

当把本地数据库作为服务器的时候,如果你发现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远程链接

标签:

原文地址:http://www.cnblogs.com/beiyetengqing/p/5873895.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!