mysql資料庫遠端連線

來源:互聯網
上載者:User

標籤:功能   資料庫   span   命令   base   tools   ase   修改   授權   

如果安裝的時候沒有啟用遠端連線功能,要執行如下命令

1、修改資料表

可能是你的帳號不允許從遠程登陸,只能在localhost。這個時候只要在 localhost 的那台電腦,登入MySQL後,更改 “MySQL” 資料庫裡的 “user” 表裡的 “Host” 項,從“localhost”改稱“%”,%表示所有機器都允許。

 

[sql] view plain copy 
  1. mysql> use mysql  

 

[sql] view plain copy 
  1. mysql> update user set Host=‘%‘ where User=‘root‘;  


2、授權許可權

 

允許任何主機使用“myuser”帳號和“mypwd”密碼串連到 MySQL 伺服器。

 

[sql] view plain copy 
  1. mysql> GRANT ALL PRIVILEGES ON *.* TO ‘myuser‘@‘%‘ IDENTIFIED BY ‘mypwd‘ WITH GRANT OPTION;  


即可生效。

 

 

[sql] view plain copy 
  1. mysql> FLUSH PRIVILEGES;  


通過以上兩步走就可以了。

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.