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

Ubuntu下忘记MySQL密码重设方法

时间:2015-09-08 20:23:17      阅读:250      评论:0      收藏:0      [点我收藏+]

标签:ubuntu mysql密码重设

1、结束当前正在运行的mysql进程。

# /etc/init.d/mysql stop

2、用mysql安全模式运行并跳过权限验证。
# /usr/bin/mysqld_safe --skip-grant-tables

3、重开一个终端以root身份登录mysql。
# mysql -u root

4、修改root用户口令。
mysql> use mysql;
Reading table information for completion of table and column names
You can turn off this feature to get a quicker startup with -A

Database changed
mysql> update user set Password = PASSWORD(‘root‘) where User =‘root‘;
Query OK, 3 rows affected (0.00 sec)
Rows matched: 3  Changed: 3  Warnings: 0

mysql> exit

5、结束mysql安全模式,用正常模式运行mysql。
# /etc/init.d/mysql restart

6、试试你新修改的口令
 
mysql> show grants for ‘root‘@‘127.0.0.1‘; 

mysql> flush privileges;
mysql> quit


本文出自 “PETER-疏狂少年” 博客,请务必保留此出处http://petervip.blog.51cto.com/3790959/1692840

Ubuntu下忘记MySQL密码重设方法

标签:ubuntu mysql密码重设

原文地址:http://petervip.blog.51cto.com/3790959/1692840

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