远程连接MySQL数据库报错:is not allowed to

2021-02-26  本文已影响0人  小五愣

可能是你的帐号不允许从远程登陆,只能在localhost;
只要在localhost的那台电脑,登入MySQL后,更改 "mysql" 数据库里的 "user" 表里的 "host" 项,"localhost"改"%"

mysql -u $用户名 -p

mysql>use mysql;

mysql>update user set host = '%' where user = 'root';

mysql>select host, user from user;

mysql>FLUSH   PRIVILEGES  //修改生效

mysql>EXIT  //退出MySQL服务器
上一篇下一篇

猜你喜欢

热点阅读