標籤:重設mysql密碼
重設mysql密碼
很常見的一種情況,就是需要重設mysql密碼
1、vim /etc/my.cnf
添加:
skip-grant
2、重啟mysql服務
/etc/init.d/mysql restart
3、登入重設密碼
#mysql -uroot 直接進入mysql
mysql> use mysql
Database changed
mysql> update user set password="passwd" where user="root";
Query OK, 0 rows affected (0.00 sec)
Rows matched: 2 Changed: 0 Warnings: 0
mysql> flush privileges;
Query OK, 0 rows affected (0.01 sec)
mysql> exit;
Bye
4、vim /etc/my.cnf
注釋:
#skip-grant
5、/etc/init.d/mysql restart
6、重新登入
[[email protected] tmp]# mysql -uroot -p
Enter password:
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 2
Server version: 5.6.22-log Source distribution
Copyright (c) 2000, 2014, Oracle and/or its affiliates. All rights reserved.
Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.
Type ‘help;‘ or ‘\h‘ for help. Type ‘\c‘ to clear the current input statement.
mysql>
本文出自 “梅花香自苦寒來!” 部落格,請務必保留此出處http://daixuan.blog.51cto.com/5426657/1783913
重設mysql密碼