設定Ubuntu上的MySQL可以遠端存取

來源:互聯網
上載者:User

今天使用MyEclipse的DB Explorer串連安裝在Ubuntu8.04上的MySQL上,始終提示錯誤,但是在Ubuntu上訪問是沒有問題的。於是開始尋找原因:

1.
3306連接埠是不是沒有開啟?

使用nestat命令查看3306連接埠狀態:

~# netstat
-an | grep 3306

tcp       
0      0 127.0.0.1:3306          0.0.0.0:*               LISTEN

從結果可以看出3306連接埠只是在IP 127.0.0.1上監聽,所以拒絕了其他IP的訪問。

解決方案:修改/etc/mysql/my.cnf檔案。開啟檔案,找到下面內容:

# Instead of skip-networking the default is now to listen only on

# localhost which is more compatible and is not less secure.

bind-address  = 127.0.0.1

把上面這一行注釋掉或者把127.0.0.1換成合適的IP,建議注釋掉。

重新啟動後,重新使用netstat檢測:

~#
netstat -an | grep 3306

tcp        0      0 0.0.0.0:3306            0.0.0.0:*               LISTEN

2.
問題解決了嗎?

現在使用下面命令測試:

 ~#
mysql -h 10.1.1.2 -u root -p

Enter password:

ERROR 1130 (00000): Host 'B0324-Desktop.local' is not allowed to connect to this MySQL server

結果出乎意料,還是不行。

解決方案:原來還需要把使用者權限分配各遠端使用者。

登入到mysql伺服器,使用grant命令分配許可權

mysql> grant all on database_name.* to user_name@'%' identified
by 'user_password';

其中database_name、user_name和user_password根據實際情況設定。

完成後使用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.