我的编程空间,编程开发者的网络收藏夹
学习永远不晚

MySQL 5.7遗忘root密码重置记录

短信预约 -IT技能 免费直播动态提醒
省份

北京

  • 北京
  • 上海
  • 天津
  • 重庆
  • 河北
  • 山东
  • 辽宁
  • 黑龙江
  • 吉林
  • 甘肃
  • 青海
  • 河南
  • 江苏
  • 湖北
  • 湖南
  • 江西
  • 浙江
  • 广东
  • 云南
  • 福建
  • 海南
  • 山西
  • 四川
  • 陕西
  • 贵州
  • 安徽
  • 广西
  • 内蒙
  • 西藏
  • 新疆
  • 宁夏
  • 兵团
手机号立即预约

请填写图片验证码后获取短信验证码

看不清楚,换张图片

免费获取短信验证码

MySQL 5.7遗忘root密码重置记录

摘要:MySQL 5.7设置root密码方法update mysql.user set authentication_string=PASSWORD('****') where user='root' and host='localhost';

 

操作系统:

[root@localhost ~]# cat /etc/redhat-release

CentOS Linux release 7.1.1503

 

MysQL版本5.7

mysql> select version();

+-----------+

| version()    |

+-----------+

| 5.7.9        |

+-----------+

1 row in set (0.00 sec)

 

安装MySQL的yum repo源:

[root@localhost ~]# rpm -ivh http://repo.mysql.com//mysql57-community-release-el7-7.noarch.rpm

 

安装MySQL

[root@localhost ~]# yum -y install mysql-community-server mysql-community-client


修改mysql 配置文件跳过密码验证

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

[mysqld]

skip-grant-tables

skip-networking

 

重启MySQL:

[root@localhost ~]# systemctl mysqld restart

 

匿名登录MySQL设置root密码:

[root@localhost ~]# mysql -uroot -p

Welcome to the MySQL monitor.  Commands end with ; or \g.

Your MySQL connection id is 2

Server version: 5.7.9 MySQL Community Server (GPL)

Copyright (c) 2000, 2015, 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> update mysql.user set PASSWORD=PASSWORD('test') where user='root' and host='localhost';

ERROR 1054 (42S22): Unknown column 'PASSWORD' in 'field list'
提醒:从5.7开始使用authentication_string不再使用password字段存放密码所以提示出错。

mysql> ALTER USER 'root'@'localhost' IDENTIFIED BY 'test' ;

ERROR 1131 (42000): You are using MySQL as an anonymous user and anonymous users are not allowed to change passwords


查看mysql.user表密码字段:
mysql> desc mysql.user;

mysql> update mysql.user set authentication_string=PASSWORD('test') where user='root' and host='localhost';

Query OK, 1 row affected, 1 warning (0.07 sec)

Rows matched: 1  Changed: 1  Warnings: 1

mysql> flush privileges;

Query OK, 0 rows affected (0.06 sec)

mysql> select host,user,password from mysql.user;

mysql> exit;

Bye

 

取消跳过密码认证:

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

[mysqld]

#skip-grant-tables

#skip-networking

 

重启MySQL:

[root@localhost ~]# systemctl mysqld restart

 

必须使用alter user重置密码:

mysql> show databases;

ERROR 1820 (HY000): You must reset your password using ALTER USER statement before executing this statement.

 

重新设置新密码:

mysql> ALTER USER 'root'@'localhost' IDENTIFIED BY '********'

ERROR 1820 (HY000): You must SET PASSWORD before executing this statement

 

密码需要复杂度要求:

mysql> SHOW VARIABLES LIKE 'validate_password%';

+--------------------------------------+--------+

| Variable_name                          | Value  |

+--------------------------------------+--------+

| validate_password_dictionary_file|         |

| validate_password_length           | 8      |

| validate_password_mixed_case_count| 1       |

| validate_password_number_count| 1       |

| validate_password_policy             | MEDIUM |

| validate_password_special_char_count| 1       |

+--------------------------------------+--------+

6 rows in set (0.00 sec)

 

mysql> set password=password('xxxx');
Query OK, 0 rows affected (0.00 sec)

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

MySQL 5.7遗忘root密码重置记录

下载Word文档到电脑,方便收藏和打印~

下载Word文档

猜你喜欢

mysql 8.0 忘记root密码后重置

最近状态很不好,一直晕晕晕晕晕晕乎乎的,一个测试实例,下班前修改了一下root的密码,接着就下班走人,第二天来发现root密码忘了刚好自动化安装脚本整理好了,本来想着算了直接重装实例得了,简单省事也花不了半分钟,反正是测试实例,没什么大问题发现有些思维定势,所
mysql 8.0 忘记root密码后重置
2016-11-27

MySQL忘记密码,重置root密码(纯步骤)

进入MySQL安装bin文件夹,打开cmd 1、停止服务(若已停止则忽略) net stop mysql 2、跳过MySQL验证(无密码登录) 其中my.ini文件地址根据自己情况修改 mysqld --defaults-file="C:P
2023-08-16

centos忘记密码怎么重置root密码

这篇文章主要介绍“centos忘记密码怎么重置root密码”,在日常操作中,相信很多人在centos忘记密码怎么重置root密码问题上存在疑惑,小编查阅了各式资料,整理出简单好用的操作方法,希望对大家解答”centos忘记密码怎么重置roo
2023-06-10

MySQL数据库root密码忘记丢失重置方法

对于DBA来说,丢失超管用户root的密码是致命的,可以通过添加--ship-grant-tables参数来跳过权限表。 1、忘记root密码,进不去数据库:这个时候需要强制停库,先查看MySQL进程号Kill掉MySQL进程,命令如下:Kill完可以再查看是
MySQL数据库root密码忘记丢失重置方法
2019-10-24

编程热搜

目录