程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> MYSQL數據庫 >> MySQL綜合教程 >> mysql 新增、刪除用戶和權限分配

mysql 新增、刪除用戶和權限分配

編輯:MySQL綜合教程

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

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved