欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Mysql 5.7 忘记root密码或重置密码的详细方法

程序员文章站 2023-12-11 19:31:46
在centos中安装完mysql数据库以后,不知道密码,这可怎么办,下面给大家说一下怎么重置密码 1、修改配置文件my.cnf 按i编辑 [root@iz2ze...

在centos中安装完mysql数据库以后,不知道密码,这可怎么办,下面给大家说一下怎么重置密码

1、修改配置文件my.cnf 按i编辑

[root@iz2ze14tbj23jllo85kuh1z ~]# vim /etc/my.cnf

在[mysqld]中添加

skip-grant-tables

例如:

[mysqld]
**skip-grant-tables**
datadir=/var/lib/mysql
socket=/var/lib/mysql/mysql.sock

键盘 esc 保存修改  :wq退出

2、重启mysql服务

service mysqld restart

3、用户登录

mysql -uroot -p (直接点击回车,密码为空)

选择数据库

use mysql;

下面我们就要修改密码了

以前的版本我们用的是以下修改

update user set password=password('root') where user='root';

但是在5.7版本中不存在password字段,所有我们要用以下修改进行重置密码

update user set authentication_string=password('123456') where user='root';

执行

flush privileges;

4、退出mysql

quit;

5、将最开始修改的配置文件my.cnf中的skip-grant-tables删除

6、重启mysql

7、当你登陆mysql之后你会发现,当你执行命令时会出现

error 1820 (hy000): you must reset your password using alter user statement;

这是提示你需要修改密码

当你执行了

set password = password('123456');

如果执行成功后面的就不要看了,纯属浪费时间!

如果出现:

error 1819 (hy000): your password does not satisfy the current policy requirements

你需要执行两个参数来把mysql默认的密码强度的取消了才行

set global validate_password_policy=0; set global validate_password_mixed_case_count=2;

这时你再执行

set password = password('123456');

以上所述是小编给大家介绍的mysql 5.7 忘记密码或重置密码的详细方法,希望对大家有所帮助

上一篇:

下一篇: