解决ERROR 1130: Host 'x.x.x.x' is not allowed to connect to this MariaDB server 方法
Posted WindSun
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了解决ERROR 1130: Host 'x.x.x.x' is not allowed to connect to this MariaDB server 方法相关的知识,希望对你有一定的参考价值。
问题描述
在使用SQLyog操作Linux上的MariaDB时候,会出现如下错误:
解决方法
改表法
可能是你的帐号不允许从远程登陆,只能在localhost
。这个时候只要在localhost
的那台电脑,登入mysql
后,更改 “mysql
” 数据库里的 “user
” 表里的 “host
” 项,从”localhost
”改称”%
”
具体操作为:
连接mysql服务器:mysql -u root -p
看当前所有数据库:show databases;
进入mysql数据库:use mysql;
查看mysql数据库中所有的表:show tables;
查看user表中的数据:select Host, User,Password from user;
修改user表中的Host:update user set host = '%' where user = 'root';
刷新授权列表:flush privileges;
通过以上操作,再重新连接便成功
授权法
例如,你想myuser
使用mypassword
从任何主机连接到mysql
服务器的话。
GRANT ALL PRIVILEGES ON *.* TO 'myuser'@'%' IDENTIFIED BY 'mypassword' WITH GRANT OPTION;
如果你想允许用户myuser
从ip为192.168.1.3的主机连接到mysql服务器,并使用mypassword作为密码
GRANT ALL PRIVILEGES ON *.* TO 'myuser'@'192.168.1.3' IDENTIFIED BY 'mypassword' WITH GRANT OPTION;
参考:https://blog.csdn.net/july_2/article/details/41896295
以上是关于解决ERROR 1130: Host 'x.x.x.x' is not allowed to connect to this MariaDB server 方法的主要内容,如果未能解决你的问题,请参考以下文章
ERROR 1130: Host '192.168.1.3' is not allowed to connect to this MySQL
远程登陆mysql报错:ERROR 1130 (HY000): Host '10.0.0.8' is not allowed to connect to this MySQL serv
ERROR 1130 (HY000): Host ‘192.168.3.238‘ is not allowed to connect to this MySQL server
ERROR 1130 (HY000): Host 'test177' is not allowed to connect to this MySQL server
ERROR 1130: Host '192.168.1.3' is not allowed to connect to this MySQL ERROR 1062 (23000): D
Mysql远程连接报错:SQL Error (1130): Host '192.168.6.128' is not allowed to connect to this MySQL s