码迷,mamicode.com
首页 > 数据库 > 详细

mysql用户管理

时间:2018-12-15 17:56:48      阅读:179      评论:0      收藏:0      [点我收藏+]

标签:href   user   权限   主机   管理   授权   HERE   mys   mysql用户   

 

增加用户并授权:

grant select,insert,update,delete on *.* to test@"%" Identified by "aaa"

#增加一个用户test,密码为aaa,该用户可在任何主机上(%)登录,并对所有数据库(*.*所有库的所有表)有查询、插入、修改、删除的权限:

 

 

查看用户情况:

SELECT User, Host, Password FROM mysql.user;

 

查看某个用户权限:

show grants for ‘usertest‘;

 

添加用户:

create user usertest identified by ‘aaa’;

 

用户授权:

grant all privileges on dbtest.* to usertest@‘%‘ identified by ‘aaa‘;

flush privileges;

 

修改用户密码:

update mysql.user set password = password(‘newpassword‘) where user = ‘usertest‘ and host = ‘%‘;

flush privileges;

 

删除用户:

drop user  usertest@‘%‘;

mysql用户管理

标签:href   user   权限   主机   管理   授权   HERE   mys   mysql用户   

原文地址:https://www.cnblogs.com/lalalaya/p/10124058.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!