重置mysql密码
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了重置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密码的主要内容,如果未能解决你的问题,请参考以下文章
mysql忘记密码后重置密码的方法(mysql 8.0.25重置密码)