mysql community edition(gpl)
在我們使用mysql資料庫時,有時我們的程式與資料庫不在同一機器上,這時我們需要遠端訪問資料庫。預設狀態下,mysql的使用者是沒有遠端訪問的許可權。
下面介紹兩種方法,解決這一使用者遠端訪問的許可權問題。
1、改表法
可能是你的帳號不允許從遠端登陸,只能在localhost。這個時候只要在localhost的那台電腦,登入mysql後,更改 "mysql" 資料庫裡的 "user" 表裡的 "host" 項,從"localhost"改稱"%"
mysql -u root -p
mysql>use mysql;
mysql>update user set host = '%' where user = 'root';
mysql>select host, user from user;
2、授權法
在安裝mysql的機器上執行mysql:
1、mysql>use mysql
//這樣應該可以進入mysql伺服器
2、mysql>grant all privileges on *.* to 'root'@'%'with grant option;
//賦予任何主機訪問資料的許可權
例如,你想 root 使用 password 從任何主機連線到mysql伺服器的話。
grant all privileges on *.* to 'root'@'%' identified by 'password' with grant option;
例如:如果你想允許使用者myuser從ip為192.168.1.1的主機連線到mysql伺服器,並使用password作為密碼
grant all privileges on *.* to 'myuser'@'192.168.1.1' identified by 'password' with grant option;
3、mysql>flush privileges;
//修改生效
4、mysql>exit
退出mysql伺服器,這樣就可以在其它任何的主機上以root身份登入
MySQL允許遠端授權
一 允許root使用者在任何地方進行遠端登入,並具有所有庫任何操作許可權,具體操作如下 在本機先使用root使用者登入mysql mysql u root p youpassword 進行授權操作 mysql grant all privileges on to root identified by...
MYSQL 允許遠端訪問
本文詳細介紹ubuntu下mysql資料庫安裝後初步設定。1 安裝mysql 這個應該很簡單了,而且我覺得大家在安裝方面也沒什麼太大問題,所以也就不多說了,下面我們來講講配置。2 配置mysql 注意,在ubuntu下mysql預設是只允許本地訪問的,如果你要其他機器也能夠訪問的話,那麼需要改變 e...
Mysql授權遠端訪問
mysql授權遠端訪問 在安裝mysql的機器上執行 1 d mysql bin mysql h localhost u root 這樣應該可以進入mysql伺服器 2 mysql grant all privileges on to root with grant option 賦予任何主機訪問資...