首页 > 数据库技术 > 详细

mysql用户

时间:2014-09-23 02:12:05      阅读:259      评论:0      收藏:0      [点我收藏+]

update mysql.user set Password = PASSWORD(‘密码‘) where User = ‘root‘;

flush privileges;

select password(‘密码‘);

create user ‘用户名‘@‘主机名‘ identified by ‘密码‘

grant all on *.* to ‘用户名‘@‘主机名‘;

grant select,insert on *.* to ‘用户名‘@‘主机名‘;

grant all on db.* to ‘用户名‘@‘主机名‘;

grant select,insert on db.* to ‘用户名‘@‘主机名‘;


mysql用户

原文:http://richchen1979.blog.51cto.com/8779901/1557119

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!