mysql允许指定ip远程访问连接

发布时间:2020-03-18编辑:脚本学堂
有关mysql设置指定ip地址远程访问连接的方法,允许从任意主机和指定ip访问远程mysql数据库,mysql用户授权访问的例子,需要的朋友参考下。

mysql设置指定ip远程访问连接的方法

1、授权用户root使用密码jbxue从任意主机连接到mysql服务器
 

grant all privileges on *.* to 'root'@'%' identified by 'jbxue' with grant option;
flush privileges;

2、授权用户root使用密码jbxue从指定ip为218.12.50.60的主机连接到mysql服务器:
 

grant all privileges on *.* to 'root'@'218.12.50.60' identified by 'jbxue' with grant option;
flush privileges;

参考链接: