mysql建立使用者,授權

2021-09-28 11:05:02 字數 572 閱讀 2833

-- 檢視使用者

select

*from mysql.

user

;-- 建立使用者

-- 如果只允許從本機登陸,則 填 『localhost』 ,如果允許從遠端登陸,則填 『%『

create

user test01@localhost identified by

'123456'

;-- 刪除使用者

drop

user test01@localhost

;-- 授權

-- 其中,*.*第乙個*代表所有資料庫,第二個*代表某個資料庫所有表

grant

allprivilegeson*

.*to test01@localhost identified by

'123456'

;flush privileges

;-- 撤銷許可權

revoke

allon*.

*from test01@localhost

;flush privileges

;

Mysql建立使用者 授權

建立使用者命令 create user 使用者名稱 localhost identified by 密碼 create user 使用者名稱 192.168.1.101 idendified by 密碼 create user 使用者名稱 identified by 密碼 create user 使...

mysql 建立使用者 授權

b 1 建立使用者 b 可以在任何地方登陸 create user test identified by test123 或create user test identified by test123 在本地登陸 create user test localhost identified by te...

mysql建立使用者,授權

可以用一句語句實現 grant all on to 使用者名稱 identified by 密碼 然後需要刷一下 flush privileges insert into mysql.user host,user,password values localhost hbchen p assword ...