标签:serve 新建用户 配置 ges 电脑 flush with 密码 远程访问
1、新建用户远程连接mysql数据库
grant all on *.* to admin@‘%‘ identified by ‘123456‘ with grant option;
flush privileges;
允许任何ip地址(%表示允许任何ip地址)的电脑用admin帐户和密码(123456)来访问这个mysql server。
注意admin账户不一定要存在。
2、支持root用户允许远程连接mysql数据库
grant all privileges on *.* to ‘root‘@‘%‘ identified by ‘123456‘ with grant option;
flush privileges;
标签:serve 新建用户 配置 ges 电脑 flush with 密码 远程访问
原文地址:https://www.cnblogs.com/sunshenggang/p/9797096.html