預設情況下linux內的mysql資料庫mysql,user表內的使用者許可權只是對localhost即本機才能登陸。需要更改許可權:
mysql> grant all privileges on *.* to 'root'@'%' identified by 'password' with grant option;(%表示是所有的外部機器,如果指定某一台機,就將%改為相應的機器名;『root』則是指要使用的使用者名稱,)
mysql> flush privileges; (執行為句才生效,或者重啟mysql)
query ok, 0 rows affected (0.03 sec)
檢視使用者的許可權情況:
mysql>use mysql;
mysql> select host,user from user;
| % | root |(表面root可外部ip訪問)
thanks:
mysql允許遠端特定ip訪問
1.登入 mysql u root p之後輸入密碼登入 2.許可權設定 新增遠端ip訪問許可權 grant all privileges on to root 172.23.101.131 identified by lxw 123 with grant option flush privilege...
MYSQL 允許遠端訪問
本文詳細介紹ubuntu下mysql資料庫安裝後初步設定。1 安裝mysql 這個應該很簡單了,而且我覺得大家在安裝方面也沒什麼太大問題,所以也就不多說了,下面我們來講講配置。2 配置mysql 注意,在ubuntu下mysql預設是只允許本地訪問的,如果你要其他機器也能夠訪問的話,那麼需要改變 e...
mysql允許外部IP訪問
預設情況下linux內的mysql資料庫mysql,user表內的使用者許可權只是對localhost即本機才能登陸。需要更改許可權 mysql grant all privileges on to root identified by password with grant option 表示是所...