Mysql 使用者管理

2021-09-25 14:10:44 字數 711 閱讀 3732

# 檢視使用者列表

select host, user, authentication_string from mysql.user;

# 建立表空間

create user 'asemgr1'@'%' identified by 'asemgr1';

create user 'asemgr2'@'%' identified by 'asemgr2';

# 授予使用者通過外網ip對於該資料庫的全部許可權

grant all privileges on `test`.* to 'test'@'%';

# 授予使用者在本地伺服器對該資料庫的全部許可權

grant all privileges on `test`.* to 'test'@'localhost';

grant select on test.* to 'user1'@'localhost'; /*給予查詢許可權*/

grant insert on test.* to 'user1'@'localhost'; /*新增插入許可權*/

grant delete on test.* to 'user1'@'localhost'; /*新增刪除許可權*/

grant update on test.* to 'user1'@'localhost'; /*新增許可權*/

# 重新整理許可權

flush privileges;

mysql 使用者管理 MySQL使用者管理

一 mysql使用者管理的必要性 如果我們只能使用root使用者,這樣安全隱患,這時,我們需要使用mysql的使用者管理技術.一次獲得 分配許可權user db tables priv columns priv 許可權範圍一次遞減,全域性許可權覆蓋區域性許可權。換句話說user表中的每個許可權都代表...

mysql授權 使用者管理 MySQL使用者管理 授權

建立使用者 命令 create user username host identified by password 說明 username 建立的使用者名稱 host 使用者可以在哪個主機上登入,任意主機選擇 password 使用者的密碼 例 create user arvin identifie...

MySQL使用者管理

mysql管理員應該知道如何設定mysql使用者賬號,指出哪個使用者可以連線伺服器,從 連線,連線後能做什麼。mysql 3.22.11開始引入兩條語句使得這項工作更容易做 grant語句建立mysql使用者並指定其許可權,而revoke語句刪除許可權。兩條語句扮演了mysql資料庫的前端角色,並提...