新安裝mysql第三方工具連接不上問題
Mysql從客戶端連接服務器連不上的問題
公司要用Mysql做一個測試,開始在自己的本地建一個Mysql數據庫自己本地的程序再連上去,沒有遇到過連接不上的問題。
這次數據庫在服務器上,從本地客戶端連接就是被拒絕。
報的錯誤為
ERROR 1130: Host ’192.168.5.3’ is not allowed to connect to this MySQL server
www.Bkjia.com
查過資料後發現這個問題,一般都會遇到,Mysql數據庫跟其他數據庫不一樣,需要設置權限可以控制哪台機器能訪問數據庫,能訪問哪些表。
所以就要登上服務器。
C:\Documents and Settings\Administrator>mysql -h localhost -u root -p
Enter password: ***
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 5
Server version: 5.1.43-community MySQL Community Server (GPL)
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
www.Bkjia.com
mysql> grant all privileges on *.* to root@'%' identified by '123' with grant
-> option;
Query OK, 0 rows affected (0.00 sec)
意思就是將服務器上的所有資源都給root用戶權限,%代表來自不同的IP
這裡需要注意一下要把密碼也要帶上。通過密碼123登錄。
mysql> FLUSH PRIVILEGES;
Query OK, 0 rows affected (0.00 sec)
最後要刷新下權限。
這樣就從本地192.168.5.3這個IP的客戶端連接到服務器上了