在嘗試從客戶端系統連接遠端mysql伺服器時,我們經常遇到下面的問題,遠端客戶端不允許存取這個mysql伺服器,如下所示。
# mysql -h 192.168.1.10 -u root -p Enter password: [Output] ERROR 1130 (HY000): Host '192.168.1.12' is not allowed to connect to this MySQL server
這個問題是因為,如果客戶機系統沒有連接mysql伺服器的權限。預設情況下,mysql伺服器不允許任何遠端客戶端連線。
(相關推薦:MySQL教學)
允許MySQL客戶端連線:
允許客戶端系統連接mysql伺服器。先使用ssh登入遠端mysql伺服器,然後在本機登入mysql伺服器。現在使用以下命令來允許遠端客戶端。例如,如果遠端客戶端的IP是192.168.1.12,並嘗試透過MySQL root帳戶進行連線。
[以下命令需要在mysql伺服器上執行]
# mysql -u root -p Enter password: mysql> GRANT ALL ON *.* to root@'192.168.1.12' IDENTIFIED BY 'new-password'; mysql> FLUSH PRIVILEGES; mysql> quit
已在MySQL伺服器中成功建立新帳戶以從指定的客戶端系統進行連線。
讓我們嘗試從客戶端系統連線。
# mysql -h 192.168.1.10 -u root -p [Sample Output] Enter password: Welcome to the MySQL monitor. Commands end with ; or g. Your MySQL connection id is 27 Server version: 5.1.69 Source distribution Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved. Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective owners. Type 'help;' or 'h' for help. Type 'c' to clear the current input statement. mysql>
這篇文章到這裡就已經全部結束了,更多其他精彩內容可以關注php中文網的其他相關欄位教學! ! !
以上是如何允許遠端客戶端連接MySQL伺服器的詳細內容。更多資訊請關注PHP中文網其他相關文章!