Linux下MySQL Error 1130 不能遠端存取

來源:互聯網
上載者:User

標籤:

LinuxMySQL Error 1130 不能遠端存取

內容簡介:遠端連線MySQL時總是報出erro 2003: Can‘t connect to MySQL server on ‘211.87.***.***‘ (111),昨天查了好幾個小時才找到解決方案,如下:……

最近做Linux項目用到MySQL資料庫,可是遠端連線MySQL時總是報出erro 2003: Can‘t connect to MySQL server on ‘211.87.***.***‘ (111),昨天查了好幾個小時才找到解決方案,如下:

 

1.sudo gedit /etc/mysql.my.cnf

 

找到bind-address =127.0.0.1

 

修改為bind-address =0.0.0.0

 

2.sudo /etc/init.d/ mysql restart

 

在這種情況下如果再嘗試遠端連線,則會報出ERROR 1130 (HY000): Host ‘211.87.***.***‘is not allowed to connect to this MySQL server提示資訊,不能遠端連線資料庫。

 

在MySQL host上按如下命令操作

 

mysql -u root -p //進入mysql控制台

 

mysql>use mysql;

 

mysql>update user set host = ‘%‘ where user = ‘root‘; //這個命令執行錯誤時可略過

 

mysql>flush privileges;

 

mysql>select host, user from user; //檢查‘%’ 是否插入到資料庫中

 

mysql>quit

Linux下MySQL Error 1130 不能遠端存取(轉)

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.