1130 - Host 'localhost' is not allowed to connect to this MySQL server 原因分析: MySQL只有一个root用户,修改root密码后选了MD5,提交后重新 登陆就会出现Host 'localhost' is not allowed to connect to this MySQL server"错误提示。 解决方法: 编辑my.ini 在[mysqld]的段中加上一句:skip-grant-tables ...
mysql>update user set host = '%' where user ='root'; mysql>flush privileges; mysql>select 'host' from user where user='root'; 第一句是以权限用户root登录 第二句:选择mysql库 第三句:查看mysql库中的user表的host值(即可进行连接访问的主机/IP名称) 第四句:修改host值(以通配符%的内容增加主机/...
如果你想允许用户myuser从ip为192.168.1.3的主机连接到mysql服务器,并使用mypassword作为密码 GRANT ALL PRIVILEGES ON *.* TO IDENTIFIED BY'mypassword' WITH GRANT OPTION; 方法二: 错误代码是1130,ERROR 1130: Host xxx.xxx.xxx.xxx is not allowed to connect to this MySQL server 是无法给远程连接的用户...
mysql>update user set host = '%' where user ='root'; 修改host值,以通配符%的内容增加主机/IP地址,当然也可以直接增加某个特定IP地址,如果执行update语句时出现ERROR 1062 (23000): Duplicate entry '%-root' for key 'PRIMARY' 错误,需要select host from user where user = 'root'; 查看一下host是否...
Navicat for MySQL 1130错误 问题描述: Error No.1130 Host '192.168.25.3' is not allowed to connect to this MySQL server 解决方法: 1. 改表法 可能是你的帐号不允许从远程登陆,只能在localhost。这个时候只要在localhost的那台电脑登入MySQL后,更改"MySQL"数据库"user"表里的"host"项,将"localhost"改成"...
错误代码是1130: ERROR 1130: Host X.X.X.X is not allowed to connect to this MySQL server 原因: 是无法给远程连接的用户权限问题。 解决方案: 在服务器登入mysql后,更改 “mysql” 数据库里的 “user” 表里的 “host” 项,从”localhost”改称'%'。
Navicat forMySQL1130错误 问题描述: 1130 - Host 'localhost' is not allowed to connect to this MySQL server 原因分析: MySQL只有一个root用户,修改root密码后选了MD5,提交后重新 登陆就会出现Host 'localhost' is not allowed to connect to this MySQL server"错误提示。
错误代码解决方法:是给用户授权权限 我用的用户是root 密码123456 进入mysql数据库执行以下代码: GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY '123456' WITH GRANT OPTION; flush privileges; 测试:使用Navicat for MySQL连接mysql数据库,将会连接成功。
解决办法:给需要远程登录mysql的用户进行授权,然后刷新权限缓存使其生效即可 具体操作步骤: 1、ssh远程到对于的linux服务器,使用mysql -u root -p 回车输入密码再次回车进行登录 2、登录成功后使用 GRANT ALL PRIVILEGES ON *.* TO 'root'@'%'; 进行root或者其他用户的授权, ...
通过NavicatforMySQL远程连接的时候报错mysql1130的 解决⽅法 Navicat for mysql 1130错误⽤Navicat连接远程MYSQL,提⽰如下错误,我以为是⾃⼰的防⽕墙问题,但是关了,依然不⾏。我认为这段英⽂,有点误导,让⼈感觉是⾃⼰这边出了问题。看解决⽅法吧 ERROR 1130: Host '192.168.1.3' is ...