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

mysql 忘记root密码

时间:2017-07-05 11:49:43      阅读:224      评论:0      收藏:0      [点我收藏+]

标签:roo   where   date   upd   参数   pass   重启   配置   restart   

mysql 忘记root密码怎么办

密码 mysql
如果忘记root密码或其他用户密码,不要急,按下面操作即可。
1. 编辑mysql主配置文件 my.cnf
vim /etc/my.cnf
在[mysqld]字段下添加参数 skip-grant
2. 重启数据库服务
service mysqld restart
3. 这样就可以进入数据库不用授权了
mysql -uroot
4. 修改相应用户密码
use mysql;
update user set password=password(‘your password‘) where user=‘root‘;
flush privileges;
5. 修改/etc/my.cnf 去掉 skip-grant , 重启mysql服务

mysql 忘记root密码

标签:roo   where   date   upd   参数   pass   重启   配置   restart   

原文地址:http://www.cnblogs.com/ddgen/p/7119900.html

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