远程登录
- 在本地登陆mysql,根据提示输入密码,密码不会显示,没关系直接回车
mysql -uroot -p
- 更改远程连接的设置
grant all privileges on *.* to 'root'@'%' identified by '123456' with grant option;
其中,root表示数据路用户名,123456表示远程登陆的密码 - 刷新刚才修改的权限,使其生效
flush privileges;
mysql -uroot -p
grant all privileges on *.* to 'root'@'%' identified by '123456' with grant option;
flush privileges;
本文标题:配置MySQL远程登陆与用户授权
本文链接:https://www.haomeiwen.com/subject/dloutctx.html
网友评论