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

设置mysql允许远程访问

时间:2020-05-07 23:17:30      阅读:133      评论:0      收藏:0      [点我收藏+]

标签:sel   目的   flush   修改表   grant   HERE   连接   数据   option   

设置mysql允许远程访问
1.登陆mysql数据库,修改表。
use mysql;
update user set host=‘%‘ where user=‘root‘;
select host,user from user;
flush privileges;

注意:最后一句很重要,目的是使修改生效,如果没有写,则还是不能进行远程连接。

2.授权用户,允许从任何主机连接到mysql数据库。
grant all privileges on *.* to ‘root‘@‘%‘ identified by ‘pwd‘ with grant option;
flush privileges;

如果只是允许用户从ip为192.168.1.104的主机连接到mysql服务器。
grant all privileges on *.* to ‘root‘@‘%192.168.1.104‘ identified by ‘Fmty_888_!@#‘ with grant option;
flush privileges;

设置mysql允许远程访问

标签:sel   目的   flush   修改表   grant   HERE   连接   数据   option   

原文地址:https://www.cnblogs.com/bianlan/p/12845915.html

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