mysql教程添加遠程用戶或允許遠程訪問三種方法
用root用戶登陸,然後:
grant all privileges on *.* to 創建的用戶名 @"%" identified by "密碼";
flush privileges; * 刷新剛才的內容*
格式:grant 權限 on 數據庫教程名.表名 to 用戶@登錄主機 identified by "用戶密碼";
@ 後面是訪問mysql的客戶端ip地址(或是 主機名) % 代表任意的客戶端,如果填寫 localhost 為
本地訪問(那此用戶就不能遠程訪問該mysql數據庫了)。
同時也可以為現有的用戶設置是否具有遠程訪問權限。如下:
use mysql;
update db set host = '%' where user = '用戶名'; (如果寫成 host=localhost 那此用戶就不具有遠程訪問權限)
flush privileges;
grant all privileges on *.* to 'myuser'@'%' identified by 'mypassword' with grant option;
方法二
1. 使用grant語句添加:首先在數據庫本機上用root用戶
登錄mysql(我是用遠程控制linux服務器,相當於在服務器本機登錄mysql了),然後輸入:
mysql>grant all privileges on *.* to admin@localhost identified by 'something' with grant option;
添加一個用戶admin並授權通過本地機(localhost)訪問,密碼"something"。
mysql>grant all privileges on *.* to admin@"%" identified by 'something' with grant option;
添加一個用戶admin並授權可從任何其它主機發起的訪問(通配符%)。使用這一條語句即可。
2.使用insert語句:
mysql>insert into user values('%','admin',password('something'), 'y','y','y','y','y','y',
'y','y','y','y','y','y','y','y')
用戶信息可在mysql數據庫中的users表中查看,這裡不在介紹了就。數清y的個數哦。
好了,使用admin帳號連接試試看,我是屢試屢成功哦,呵呵!
方法三
添加遠程用戶admin密碼為password
grant all privileges on *.* to admin@localhost identified by 'password' with grant option
grant all privileges on *.* to admin@"%" identified by 'password' with grant option
由於項目開發的要求數據庫的設計不得不用遠程模式。但是數據庫的遠程設置並沒那麼簡單,該項目的數據庫是mysql5.0。剛開始以為只要裝了數據庫服務器就可以進行遠程鏈接了,但是mysql的設置是為了用戶的安全,系統默認的設置是不允許遠程用戶連接,只能本地的用戶連接。只要我們設置下系統的管理員用戶的host這一項的值就可以給遠程的用戶訪問了。