MySQL忘记密码重置方法

9 篇文章 1 订阅

MySQL忘记密码重置方法

1、此次测试系统环境为centos7,MySQL版本为5.7.33

2、此方法可以作为初始安装MySQL后临时密码无法登录系统或者忘记密码情况的解决方案

3、停止服务并查看服务状态
#systemctl stop mysqld
#systemctl status mysqld
在这里插入图片描述

4、打开MySQL配置文件,在[mysqld]节点下加skip-grant-tables
#vi /etc/my.cnf

# For advice on how to change settings please see
# http://dev.mysql.com/doc/refman/5.7/en/server-configuration-defaults.html

[mysqld]
#
# Remove leading # and set to the amount of RAM for the most important data
# cache in MySQL. Start at 70% of total RAM for dedicated server, else 10%.
# innodb_buffer_pool_size = 128M
#
# Remove leading # to turn on a very important data integrity option: logging
# changes to the binary log between backups.
# log_bin
#
# Remove leading # to set options mainly useful for reporting servers.
# The server defaults are faster for transactions and fast SELECTs.
# Adjust sizes as needed, experiment to find the optimal values.
# join_buffer_size = 128M
# sort_buffer_size = 2M
# read_rnd_buffer_size = 2M

skip-grant-tables

datadir=/var/lib/mysql
socket=/var/lib/mysql/mysql.sock

# Disabling symbolic-links is recommended to prevent assorted security risks
symbolic-links=0

log-error=/var/log/mysqld.log
pid-file=/var/run/mysqld/mysqld.pid                                  

5、启动服务(查看服务状态)并登录MySQL
#systemctl start mysqld
#systemctl status mysqld
在这里插入图片描述
登录MySQL,不需要密码参数
#mysql -uroot
在这里插入图片描述

6、修改密码,使用password(‘需要修改的密码’)进行更改密码
update user set authentication_string=password(‘root’) where user=‘root’;
在这里插入图片描述

7、停服务,配置文件中注释掉skip-grant-tables,启服务。使用新的密码登录MySQL。

小尾巴~~
只要有积累,就会有进步

  • 0
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 1
    评论
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值