MySQL資料庫已經應用到很多互連網公司,mysql許可權管理非常重要,合理規劃好mysql資料庫許可權,對資料庫的安全和使用是非常有好處的.一個好的規範和習慣,做任何事也不會出現大問題.
下面是mysql許可權規劃授權的語句:
授權jc使用者,查詢、插入、更新、刪除 本機testdb資料庫中所有表資料的權利的授權方法如下:
grant select on testdb.* to jc@’localhost’
grant insert on testdb.* to jc@’localhost’
grant update on testdb.* to jc@’localhost’
grant delete on testdb.* to jc@’localhost’
授權jc使用者,建立、修改、刪除 MySQL 資料表結構許可權
grant create on testdb.* to jc@’localhost’;
grant alter on testdb.* to jc@’localhost’;
grant drop on testdb.* to jc@’localhost’;
授權jc使用者,操作MySQL外鍵許可權
grant references on testdb.* to jc@’localhost’;
授權jc使用者操作MySQL暫存資料表許可權
grant create temporary tables on testdb.* to jc@'localhost’
授權jc使用者操作MySQL索引許可權
grant index on testdb.* to jc@'localhost’;
授權jc使用者操作MySQL視圖,查看視圖原始碼許可權
grant create view on testdb.* to jc@’localhost’;
grant show view on testdb.* to jc@’localhost’;
授權jc使用者管理某個MySQL資料庫的許可權:
grant all privileges on testdb to jc@’localhost’;
授權jc使用者管理MySQL中所有資料庫的許可權:
grant all on *.* to jc@’localhost';
授權jc使用者權限分別可以作用在多個層次上。
1. grant 作用在整個 MySQL 伺服器上:
grant select on *.* to jc@localhost; — jc可以查詢 MySQL 中所有資料庫中的表。
grant all on *.* to jc@localhost; — jc可以管理 MySQL 中的所有資料庫
2. grant 作用在單個資料庫上:
grant select on testdb.* to jc@localhost; — jc可以查詢 testdb 中的表。
3. grant 作用在單個資料表上:
grant select, insert, update, delete on testdb.orders to jc@localhost;
4. grant 作用在表中的列上:
grant select(id, se, rank) on testdb.apache_log to jc@localhost;
5. grant 作用在預存程序、函數上:
grant execute on procedure testdb.pr_add to ‘jc’@'localhost’
grant execute on function testdb.fn_add to ‘jc’@'localhost’
查看 MySQL 使用者權限
查看目前使用者自己)許可權:
show grants;
查看其他 MySQL 使用者權限:
show grants for dba@localhost;
撤銷已經賦予給 MySQL 使用者權限的許可權。
revoke 跟 grant 的文法差不多,只需要把關鍵字 “to” 換成 “from” 即可:
grant all on *.* to jc@localhost;
revoke all on *.* from jc@localhost;
許可權授權文法和列表:
GRANT 文法:
GRANT privileges (columns)
ON what
TO user IDENTIFIED BY "password"
WITH GRANT OPTION
許可權列表:
- ALTER: 修改表和索引。
- CREATE: 建立資料庫和表。
- DELETE: 刪除表中已有的記錄。
- DROP: 拋棄(刪除)資料庫和表。
- INDEX: 建立或拋棄索引。
- INSERT: 向表中插入新行。
- REFERENCE: 未用。
- SELECT: 檢索表中的記錄。
- UPDATE: 修改現存表記錄。
- FILE: 讀或寫伺服器上的檔案。
- PROCESS: 查看伺服器中執行的線程資訊或殺死線程。
- RELOAD: 重載授權表或清空日誌、主機緩衝或表緩衝。
- SHUTDOWN: 關閉伺服器。
- ALL: 所有許可權,ALL PRIVILEGES同義字。
- USAGE: 特殊的 "無許可權" 許可權。
本文出自 “IMySQL” 部落格,請務必保留此出處http://jiechao2012.blog.51cto.com/3251753/1144429