设置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;
相关文章
- 03-27vc++telnet远程登录
- 03-27SpringSecurity(十): 只允许一个用户登录
- 03-27WIN2003使用IP安全策略只允许指定IP远程桌面连接
- 03-27使用paramiko远程登录并执行命令脚本
- 03-27android – 嵌入公共Facebook页面的活动源,而不强制用户登录/允许
- 03-27【Android工具】远程登录会话工具免费好用的SSH客户端——JuiceSSH
- 03-27远程登录工具(putty/winscp等)
- 03-27远程登录环境检查
- 03-27Sentos 7安装vsftp服务(只允许虚拟用户登录)
- 03-27Debian8 远程登录Permission Denied,please try again