MySQL 學習(三)建立使用者 授權 刪除

2021-10-07 17:56:10 字數 1053 閱讀 9354

# username 是使用者名稱,密碼為123456

# localhost 使用者只能在本地登入

create

user username@localhost identified by

'123456'

;# % 可以在任何一台電腦上都可以登入

create

user username@'%

' identified by '

123456';

# select, insert, update 設定使用者的操作許可權

grant

select

,insert

,update

on mq.

*to username@localhost

;# 最大許可權

grant

allprivilegeson*

.*to username@localhost

;

補充:

# 建立使用者同時授權

grant

allprivilegeson*

.*to username@localhost identified by

'1234'

;flush privileges

;

(授權只能root使用者使用)

;(撤銷授權只能root使用者使用)

drop

user username@localhost

;

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 ...