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

mysql用户管理

时间:2017-10-07 16:23:30      阅读:147      评论:0      收藏:0      [点我收藏+]

标签:grant   mysql   host   create   快速   select   style   sele   localhost   

  mysql用户管理

快速创建用户

grant all on *.*   to ‘mvpbang‘@‘localhost‘  identified by ‘123123‘;

grant all on *.*   to ‘mvpbang‘@‘%‘  identified by ‘123123‘;

步步为营

00、创建用户

create user ‘mvpbang‘@‘localhost‘  identified by ‘123123‘;
create user ‘mvpbang‘@‘%‘            identified by ‘d123123‘;

01、用户授权

grant all on *.* to ‘user1‘@‘localhost‘;

grant select on *.*  to ‘mvpbang‘@‘localhost‘;

grant select on *.*  to  szcx;

mysql用户管理

标签:grant   mysql   host   create   快速   select   style   sele   localhost   

原文地址:http://www.cnblogs.com/xiaochina/p/7366183.html

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