Mysql:is not allowed to connect to this MySQL
轉自:http://blog.chinaunix.net/uid-27666459-id-4028596.html
如果你想連接你的mysql的時候發生這個錯誤:
ERROR 1130: Host '192.168.1.3' is not allowed to connect to this MySQL server
解決方法:
1。 改表法。可能是你的帳號不允許從遠程登陸,只能在localhost。這個時候只要在localhost的那臺電腦,登入mysql后,更改 "mysql" 數據庫里的 "user" 表里的 "host" 項,從"localhost"改稱"%"
mysql -u root -pvmwaremysql>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.1.3的主機連接到mysql服務器,并使用mypassword作為密碼
GRANT ALL PRIVILEGES ON *.* TO?'root'@'192.168.1.3'?IDENTIFIED BY 'mypassword' WITH GRANT OPTION;
GRANT ALL PRIVILEGES ON *.* TO?'root'@'10.10.40.54'?IDENTIFIED BY '123456' WITH GRANT OPTION;
轉載于:https://my.oschina.net/liangzhenghui/blog/376411
總結
以上是生活随笔為你收集整理的Mysql:is not allowed to connect to this MySQL的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 关于考研
- 下一篇: 递归下降分析程序的设计与实现_递归就是这