解決遠(yuǎn)程連接mysql錯(cuò)誤1130
遠(yuǎn)程連接Mysql服務(wù)器的數(shù)據(jù)庫,錯(cuò)誤代碼是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地址 ?
如果這步出錯(cuò)"ERROR 1062 (23000): Duplicate entry '%-root' for key 'PRIMARY'" 由說明該記錄有了肪笋,跳過這步
第五句:刷新MySQL的系統(tǒng)權(quán)限相關(guān)表 ?
第六句:再重新查看user表時(shí)月劈,有修改。藤乙。 ?
重起mysql服務(wù)即可完成猜揪。?
親測有效!L沉骸而姐!