主機 不能 遠程 鏈接 mysql 數據庫 解決辦法 欄目 MySQL 简体版
原文   原文鏈接

1。改表法。在數據庫所在機器登入mysql後,更改 "mysql" 數據庫裏的 "user" 表裏的 "host" 項,把"localhost"改稱"%" mysql

mysql -u root -p 
mysql>use mysql; 
mysql>select 'host' from user where user='root'; 
mysql>update user set host = '%' where user ='root'; 
mysql>flush privileges; 
mysql>select host,user   from user where user='root';

重起mysql服務便可完成。sql

  1. 受權法。在數據庫所在機器登入mysql後,直接進行受權

grant all privileges on . to 'root'@'%' identified by 'password' with grant option; 數據庫

相關文章
相關標籤/搜索
每日一句
    每一个你不满意的现在,都有一个你没有努力的曾经。
本站公眾號
   歡迎關注本站公眾號,獲取更多信息