萬盛學電腦網

 萬盛學電腦網 >> 數據庫 >> mysql教程 >> Mysql錯誤提示 is not allowed to connect to this MySQL server

Mysql錯誤提示 is not allowed to connect to this MySQL server

如果我們mysql提示s not allowed to connect to this MySQL server錯誤意思是數據庫沒有連接權限了,只需要把權限設置一下就可以解決了。

如果你想連接你的mysql的時候發生這個錯誤:

ERROR 1130: Host ‘192.168.33.60’ is not allowed to connect to this MySQL server

解決方法:

1。 改表法。可能是你的帳號不允許從遠程登陸,只能在localhost。這個時候只要在localhost的那台電腦,登入mysql後,更改 “mysql” 數據庫裡的 “user” 表裡的 “host” 項,從”localhost”改稱”%”

 代碼如下 復制代碼

mysql -u root -pvmware

mysql>use mysql;

mysql>update user set host = ‘%’ where user = ‘root';

mysql>select host, user from user;

2. 授權法。例如,你想myuser使用mypassword從任何主機連接到mysql服務器的話。

 代碼如下 復制代碼

GRANT ALL PRIVILEGES ON *.* TO ‘myuser’@’%’ IDENTIFIED BY ‘mypassword’ WITH GRANT OPTION;

如果你想允許用戶myuser從ip為192.168.33.60的主機連接到mysql服務器,並使用mypassword作為密碼

 代碼如下 復制代碼

GRANT ALL PRIVILEGES ON *.* TO ‘root’@’192.168.33.60′ IDENTIFIED BY ‘mypassword’ WITH GRANT OPTION;

GRANT ALL PRIVILEGES ON *.* TO ‘root’@’192.168.33.61′ IDENTIFIED BY ‘123456’ WITH GRANT OPTION;

copyright © 萬盛學電腦網 all rights reserved