Linux下MySQL不能遠端存取

來源:互聯網
上載者:User

標籤:os   資料   art   linux   ar   資料庫   sql   res   

最近在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 -ppassword    //進入mysql控制台

mysql>use mysql;

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

mysql>flush privileges;

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

mysql>quit

 

3、其它

mysqladmin -u root password 123           //改密碼  
 在/ety/my.cnf中加入skip-grant-tables        //跳過mysql存取控制

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.