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