解決遠(yuǎn)程連接mysql錯誤1130
遠(yuǎn)程連接Mysql服務(wù)器的數(shù)據(jù)庫,錯誤代碼是1130,ERROR 1130: Host xxx.xxx.xxx.xxx ?is not allowed to connect to this MySQL server
猜想是無法給遠(yuǎn)程連接的用戶權(quán)限問題讲坎。
這樣子操作mysql庫,即可解決侧啼。
在本機(jī)登入mysql后芜飘,更改 “mysql” 數(shù)據(jù)庫里的 “user” 表里的 “host” 項(xiàng),從”localhost”改稱'%'即可
mysql -u root -p
mysql;use mysql;
mysql;select 'host' from user where user='root';
mysql;update user set host = '%' where user ='root';
mysql;flush privileges;
mysql;select 'host' ? from user where user='root';
第一句:以權(quán)限用戶root登錄
第二句:選擇mysql庫
第三句:查看mysql庫中的user表的host值(即可進(jìn)行連接訪問的主機(jī)/IP名稱)
第四句:修改host值(以通配符%的內(nèi)容增加主機(jī)/IP地址)蹦狂,當(dāng)然也可以直接增加IP地址
如果這步出錯"ERROR 1062 (23000): Duplicate entry '%-root' for key 'PRIMARY'" 由說明該記錄有了誓篱,跳過這步
第五句:刷新MySQL的系統(tǒng)權(quán)限相關(guān)表
第六句:再重新查看user表時,有修改凯楔。窜骄。
重起mysql服務(wù)即可完成。