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

mysql用户管理

时间:2018-08-29 16:03:02      阅读:229      评论:0      收藏:0      [点我收藏+]

标签:mysql   sha   roc   process   ant   grant   更改密码   sel   pass   

注意:(mysql数据库不区分大小写,但符号一定要用英文格式)

查看用户命令:select user,authentication_string,host from user;

技术分享图片

创建用户命令一,直接创建:create user ‘zhangsan‘@‘localhost‘ identified by ‘abc123‘;

技术分享图片

创建用户命令二,权限创建:grant all on . to ‘lisi‘@‘localhost‘ identified by ‘abc123‘;

技术分享图片

更改密码命令:set password for ‘zhangsan‘@‘localhost‘ = password(‘123abc‘);

技术分享图片

更改用户名:rename user ‘lisi‘@‘localhost‘ to ‘wangwu‘@‘localhost‘;

技术分享图片

密码忘记时解决办法(mysql5.7版本)

技术分享图片

在【mysqld】下面插入

skip-grant-tables

技术分享图片

技术分享图片

技术分享图片

技术分享图片
技术分享图片

mysql用户管理

标签:mysql   sha   roc   process   ant   grant   更改密码   sel   pass   

原文地址:http://blog.51cto.com/13756916/2165984

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