mysql使用者賦權

2021-10-06 13:26:19 字數 685 閱讀 2863

建立使用者:

create user 『test』@『localhost』 identified by 『test』;

解釋:建立test使用者,密碼是test,允許在mysql伺服器登入,如果允許其他伺服器連線,localhost改為%

賦予使用者許可權:

方法1:

grant all on . to 『test』@『localhost』 identified by 『test』;

解釋:允許test使用者在本地連線msql的所有資料庫所有表,並有所有許可權。

grant all on . to 『test』@』%』 identified by 『test』;

解釋:允許test使用者在所有機器連線mysql的所有資料庫所有表,並有所有許可權。

flush privileges;

方法2:

grant all on . to 『test』@』%』 identified by 『test』;

解釋:允許test使用者在所有機器連線mysql的所有資料庫所有表,並有所有許可權。

grant all privileges on . to 『test』@』%』 identified by 『test』 with grant option;

解釋:允許test使用者在所有機器連線mysql的所有資料庫所有表,並有所有許可權。

flush privileges;

mysql 賦權 Mysql賦權

mysql 賦予使用者許可權命令的簡單格式可概括為 grant 許可權 on 資料庫物件 to 使用者 授權後記得重新整理許可權 flush privileges 一 grant 普通資料使用者,查詢 插入 更新 刪除 資料庫中所有表資料的權利。grant select on testdb.to c...

mysql 建立使用者及賦權

mysql 建立使用者及賦權 一,建立使用者 命令 create user username host identified by password 說明 username 你將建立的使用者名稱,host 指定該使用者在哪個主機上可以登陸,如果是本地使用者可用localhost,如果想讓該使用者可以...

mysql 建立使用者及賦權

一,建立使用者 命令 create user username host identified by password 說明 username 你將建立的使用者名稱,host 指定該使用者在哪個主機上可以登陸,如果是本地使用者可用localhost,如果想讓該使用者可以從任意遠端主機登陸,可以使用萬...