美文网首页程序员
MySQL无法远程访问

MySQL无法远程访问

作者: Lyudmilalala | 来源:发表于2022-08-10 16:55 被阅读0次

需要查看你希望用来远程访问的用户账号的权限

> use mysql;
> select user,host from user; 
+-------------------------+-----------+
| user                       | host      |
+-------------------------+-----------+
| mysql.infoschema | localhost |
| mysql.session       | localhost |
| mysql.sys              | localhost |
| root                        | localhost |
+-------------------------+-----------+

如果host为localhost则只能在本地访问,这时候需要修改权限为%

> update user set host = '%' where user = 'root';
> flush privileges;

相关文章

网友评论

    本文标题:MySQL无法远程访问

    本文链接:https://www.haomeiwen.com/subject/mrsawrtx.html