mysql 使用者 許可權

2021-10-01 19:15:21 字數 716 閱讀 9922

許可權:限制使用者能夠進行的資料庫的操作。

create drop alter update delete insert select 

create view:建立檢視

index:索引許可權

execute:執行儲存過程的許可權

使用者:建立使用者:create user 'usr_name'@'localhost' indentified by '密碼';

剛建立的使用者沒有使用資料庫的許可權。

刪除使用者:drop user 'user_name'@'localhost';

分配使用者許可權:with grant option代表這個使用者具備給其他使用者分配許可權的許可權;

grant 許可權(列名)on 資料庫物件 to 使用者 indentified by '密碼' with grant option;

如:grant all privileges on *.* to 使用者 indentified by '密碼';

flush privileges;

grant insert,update,select,delete on db.table to 使用者 indentified by '密碼';

檢視使用者許可權:

show grants;

show grants for 'user_name'@'localhost';

刪除許可權:

revoke 許可權 on 資料庫物件 from 使用者;

mysql配置使用者許可權 mysql使用者許可權配置

mysql使用者許可權配置 有什麼不對的地方請各位大神多多指教!1,檢視使用者表 mysql select user,password,host from mysql.user user 使用者名稱 password 密碼 加密 host 連線ip 2,開放遠端連線 vim etc mysql ma...

mysql使用者許可權時間 Mysql使用者許可權管理

1.檢視mysql使用者 select user,host,authentication string from mysql.user user host authentication string root localhost root b7d0cf7b6e2f root 127.0.0.1 ro...

mysql使用者和許可權 MySQL使用者及許可權知識梳理

一 賬號使用者賬號mysql使用者賬號組成 user host user 使用者名稱。mysql create user user host identified by pwd 使用者重新命名 mysql rename user old username to new username 刪除使用者 ...