mysql 新增、刪除使用者和許可權分配

bluepeach發表於2021-09-09

1. 新增使用者


複製程式碼 程式碼如下:
mysql>insert into mysql.user(Host,User,Password) values("localhost","lionbule",password("hello1234"));
mysql>flush privileges;


2. 修改使用者密碼


複製程式碼 程式碼如下:
mysql>update mysql.user set password=password('new password') where User="lionbule" and Host="localhost";
mysql>flush privileges;


3. 刪除使用者


複製程式碼 程式碼如下:
mysql>DELETE FROM user WHERE User="lionbule" and Host="localhost";
mysql>flush privileges;


4. 許可權分配

    4.1. grant用法
           grant 許可權 on 資料庫.* to 使用者名稱@'登入主機' identified by '密碼'


複製程式碼 程式碼如下:
許可權:
    常用總結, ALL/ALTER/CREATE/DROP/SELECT/UPDATE/DELETE
資料庫:
     *.*                    表示所有庫的所有表
     test.*                表示test庫的所有表
     test.test_table  表示test庫的test_table表    
使用者名稱:
     mysql賬戶名
登陸主機:
     允許登陸mysql server的客戶端ip
     '%'表示所有ip
     'localhost' 表示本機
     '192.168.10.2' 特定IP
密碼:
      賬戶對應的登陸密碼


4.2 例子


複製程式碼 程式碼如下:
mysql>grant all  on test.* to lionbule@'%' identified by 'hello1234';
mysql>flush privileges;


新增密碼為‘hello234'的使用者lionbule對test庫擁有所有操作許可權,並不限制lionbule使用者的登陸IP。    

4.3 注意事項

grant 會覆蓋使用者的部分資訊,跟insert 、update執行功能一樣.

參考:
http://dev.mysql.com/doc/refman/5.6/en/grant.html

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/2558/viewspace-2804162/,如需轉載,請註明出處,否則將追究法律責任。

相關文章