美文网首页js css html
Host is not allowed to connect t

Host is not allowed to connect t

作者: 蓉漂里的小白 | 来源:发表于2022-12-29 23:19 被阅读0次
image.png

新来的实习生在服务器上安装了mysql,发现用本地电脑的navicat链接不上,一直以来以为这个问题很常见从没有记录过,今天发现这些小问题不知道的人挺多,记录一下。

原因

出现这个原因是因为我们在安装mysql时候的,mysql.user表中存储的root账号只能localhost登录,需要我们重新创建账号或者修改Host字段


image.png

解决办法

1. 通过命令修改

通过指令登入mysql

mysql -u root -p 

选择DB

use mysql

修改帐号不允许从远程登陆,只能在localhost。这个时候只要在localhost的那台电脑,登入MySQL后,更改 "mysql" 数据库里的 "user" 表里的 "host" 项,从"localhost"改称"%"

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

刷新配置。

flush privileges 

2. 通过IDE 修改

在服务器上安装IDE,然后通过IDE 修改(如果是云服务器,可以使用第三方提供的图形化界面)
查看当前user表中所有用户的属性

SELECT * from mysql.`user` u 
image.png

修改账号root的Host 属性

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

相关文章

网友评论

    本文标题:Host is not allowed to connect t

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