无法连接mysql且报错:Error1130-Host ‘::1‘ is not allowed to connect to this MySQL server

注:报错Access denied for user ‘root’@‘localhost’ (using password: NO)
也适用如下方法

解决:

1.找到配置文件my.ini ,然后将其用记事本打开。

无法连接mysql且报错:Error1130-Host ‘::1‘ is not allowed to connect to this MySQL server_第1张图片

2.打开后,在mysqld下面添加skip-grant-tables(这样就可以输入mysql -u root -p后不输入密码按回车直接进入mysql了),保存退出。

无法连接mysql且报错:Error1130-Host ‘::1‘ is not allowed to connect to this MySQL server_第2张图片

3.打开运行对话框,输入“服务”,打开服务窗口,找到mysql服务,进行重启。

无法连接mysql且报错:Error1130-Host ‘::1‘ is not allowed to connect to this MySQL server_第3张图片
无法连接mysql且报错:Error1130-Host ‘::1‘ is not allowed to connect to this MySQL server_第4张图片

4.运行cmd,输入mysql -u root -p就可以不用密码登录了,出现password:的时候直接回车可以进入。

5.进入mysql数据库: mysql> use mysql;

6.执行 set password for ‘root’@‘localhost’=password(‘123456’);

报错后执行flush privileges;
再次输入
set password for ‘root’@‘localhost’=password(‘123456’);即可
无法连接mysql且报错:Error1130-Host ‘::1‘ is not allowed to connect to this MySQL server_第5张图片

7.刷新数据库mysql> flush privileges; 退出mysql:mysql> exit;

8.再次打开my.ini这个文件,把刚才加入的"skip-grant-tables"删除,保存退出再重启mysql服务。

9.再次运行cmd和sqlyog,输入新的密码,成功。

无法连接mysql且报错:Error1130-Host ‘::1‘ is not allowed to connect to this MySQL server_第6张图片

你可能感兴趣的:(mysql)