解決遠程鏈接mysql錯誤1130的方法

解決遠程鏈接mysql錯誤1130代碼的方法mysql


今天在用遠程鏈接Mysql服務器的數據庫,無論怎麼弄都是鏈接不到,錯誤代碼是1130,ERROR 1130: Host 192.168.2.159 is not allowed to connect to this MySQL serversql

猜測是沒法給遠程鏈接的用戶權限問題。結果這樣子操做mysql庫,便可解決。在本機登入mysql後,更改 「mysql」 數據庫裏的 「user」 表裏的 「host」 項,從」localhost」改稱'%'。。數據庫

mysql -u root -p服務器

mysql>use mysql;ide

mysql>select 'host' from user where user='root';工具

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

mysql>flush privileges;this

mysql>select 'host' from user where user='root';server

第一句是以權限用戶root登陸ip

第二句:選擇mysql庫

第三句:查看mysql庫中的user表的host值(便可進行鏈接訪問的主機/IP名稱)

第四句:修改host值(以通配符%的內容增長主機/IP地址),固然也能夠直接增長IP地址

第五句:刷新MySQL的系統權限相關表

第六句:再從新查看user表時,有修改。。

重起mysql服務便可完成。




============================


1、經過MySQL-Front或mysql administrator鏈接mysql的時候發生的這個錯誤


ERROR 1130: Host ***.***.***.*** is not allowed to connect to this MySQL server


說明所鏈接的用戶賬號沒有遠程鏈接的權限,只能在本機(localhost)登陸。


需更改 mysql 數據庫裏的 user表裏的 host項

把localhost改稱%


首先按下面的步驟登陸Mysql服務器


登陸mysql須要切換到dos下的mysql的bin目錄,進行以下操做:


語法格式:mysql -h host_name -u user_name -p password (本機的話-h 和host_name可省)


例如:


C:\program files\mysql\mysql server 5.0\bin>mysql -u root -p

Enter password:******

先輸入用戶名和密碼登錄要求(-p),回車後等出現"Enter password:",再輸入密碼回車,這樣就能夠

成功登錄mysql,不然將會登錄失敗。


登錄成功後會顯示以下信息及Mysql標識符:


Welcome to the MySQL monitor. Commands end with ; or \g.

Your MySQL connection id is 1 to server version: 5.0.1-nt


Type 'help;' or '\h' for help. Type '\c' to clear the buffer.


mysql>



標識符"mysql>",當你看到這個出如今窗口的最左邊的頂格時,這就是告訴你,你能夠輸入命令進行操做了。


mysql> \s 查看版本信息

mysql> \q or mysql> quit 退出mysql數據庫服務器

mysql> \h or mysql> help 查看幫助(其餘的數據庫服務器相關命令)


2、登陸成功後可經過如下步驟對用戶進行權限更改


mysql>use mysql;


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


mysql>flush privileges;


mysql>select 'host','user' from user where user='root';


mysql>quit


退出後會回到DOS正常的提示符狀態,此時能夠經過遠程鏈接Mysql了!






========================================






My


SQL 用戶賬號的修改 error 1130

2007-09-07 09:18



MySQL上的一個數據庫要備份,裝了個MySQL的gui工具。打開"MySQL Administrator"工具,填好用戶名和密碼卻登陸不了,總是報這個錯「ERROR 1130: Host 'lijuan-' 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 'myuser'@'192.168.1.3' IDENTIFIED BY 'mypassword' WITH GRANT OPTION;

個人mysql.user裏root用戶的host果真是localhost,先用改表法給localhost改爲「%」,仍是不行,仍然報1130的錯誤,又按「從任何主機鏈接到mysql服務器」方法受權,仍是報同樣的錯,最後給本身的ip受權以後,終於登陸上了。。。。

乎乎。。。


mysql的ERROR 1045 在上面狀況後如再出現客戶段1045可在服務器執行以下


UPDATE user SET Password=PASSWORD('123456') where USER='myuser';

FLUSH PRIVILEGES;

相關文章
相關標籤/搜索