Linux 下MySQL修改密码

目录

背景

一、关闭mysql服务

二、 修改mysql的配置文件my.cnf

三、修改密码

四、重启mysql服务

五、新密码登陆成功


背景

今天硬件测试在用平台的时候说平台挂了,开发人员检查说环境被人修改了。无奈,测试站出来帮忙重新部署。

发现mysql进程在,说明有安装mysql。试了密码报错,问了密码大家都不知道。于是我想到了修改密码。

看看报错信息:

[root@zhangdi:~]# mysql -u root -p
Enter password: 
ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: YES)

一、关闭mysql服务

 service mysql stop

二、 修改mysql的配置文件my.cnf

my.cnf配置文件的位置,一般在/etc/my.cnf,有些版本在/etc/mysql/my.cnf

在配置文件中,增加2行代码

[mysqld]

skip-grant-tables

 

作用是登录mysql的时候跳过密码验证

然后启动mysql服务,并进入mysql

root@zhangdi:~# service mysql start
root@zhangdi:~# 
root@zhangdi:~# 
root@zhangdi:~# mysql -u root


三、修改密码

mysql> use mysql
Reading table information for completion of table and column names
You can turn off this feature to get a quicker startup with -A

Database changed
mysql> update mysql.user set authentication_string=password('新密码') where user='root';
Query OK, 1 row affected, 1 warning (0.00 sec)
Rows matched: 1  Changed: 1  Warnings: 1
mysql> flush privileges;
Query OK, 0 rows affected (0.00 sec)

mysql> exit
Bye

四、重启mysql服务

root@zhangdi:~# service mysql start

五、新密码登陆成功

mysql -u root -p
Enter password: 

root@zhangdi:~# mysql -u root -p
Enter password: 
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 35
Server version: 5.7.30-0ubuntu0.18.04.1 (Ubuntu)

Copyright (c) 2000, 2020, 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.

修改完成

2020年5月20日。

 

 

 

 

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

软件测试李同学

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值