mysql 遠程登入設定

來源:互聯網
上載者:User

1.預設情況下Mysql只允許本地登入,所以需要修改設定檔將地址綁定給注釋掉:
vim /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  <---注釋掉這一行就可以遠程登入了

2.重啟mysql服務:
sudo service mysql restart

3.設定可以從遠程登入的使用者,以使用者tom為例
$ mysql -u root -p      (以root使用者登入,賦予tom使用者權限)
mysql > update mysql.user set host= '%' where user=' tom'

4.授權使用者(以tom為例)可以遠端存取的資料庫(以testdb為例)
mysql > GRANT ALL ON testdb.* TO 'tom'@'%';
mysql > FLUSH   PRIVILEGES;

5.遠程登入測試

mysql -h hostname -P protNum -u username -p

如:mysql -h 192.168.0.1 -P 3306 -u tom -p

相關文章

聯繫我們

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