mysql賦權的簡單記錄

2021-08-30 07:40:12 字數 429 閱讀 3919

怕自己以後忘記,寫在這裡當作備份~

//給某台電腦所有mysql操作許可權

grant all privileges  on *.* to [email protected] identified by '123456';

//給任意一台電腦mysql增刪改查許可權

grant insert,update,delete,select on *.* to 'remote'@'%'  identified by '123456';

從上面概括得出

grant  許可權  on 資料庫名.資料庫表名 to 使用者名稱@電腦ip(所有電腦則為%)identified by 密碼

mysql下的user表中常用許可權為select,insert,update,delete,create,drop

還有很多可以去mysql.user表中檢視。

mysql 賦權 Mysql賦權

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

mysql使用者賦權

建立使用者 create user test localhost identified by test 解釋 建立test使用者,密碼是test,允許在mysql伺服器登入,如果允許其他伺服器連線,localhost改為 賦予使用者許可權 方法1 grant all on to test local...

mysql 建立使用者及賦權

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