怎样重置ubuntu mysql8密码

密码很难记住,所以如果您忘记了 MySQL root 密码,幸运的是,有一种方法可以更改它。这篇文章是为您而写的,在这篇文章结束时,您将成功更改 MySQL 的密码。

本博客演示了如何在 Ubuntu 上重置使用包管理器安装的 MySQL 和 MariaDB 数据库的root密码。更改 root 密码的过程会有所不同,具体取决于您是否安装了 MySQL 以及其他供应商的发行版或软件包附带的默认 systemd 配置。

1.检查MySQL版本

首先,检查您的 MySQL 版本,因为这篇文章包含在版本 8 或更高版本上更改 root 密码的解决方案。如果你的MySQL版本低于8,那么答案就会不同。运行以下命令:

mysql --version

MySQL版本输出:mysql Ver 8.0.36-0ubuntu0.20.04.1 for Linux on x86_64 ((Ubuntu))

2.停止MySQL服务器

要更改MySQL root密码,首先需要关闭MySQL服务器,运行以下命令:

sudo systemctl stop mysql.service

检查MySQL 服务器的**状态以进行验证。**运行以下命令:

bash 复制代码
sudo systemctl status mysql.service

3.跳过授权表和网络

要在不授予表和网络检查的情况下启动 MySQL 服务器,请设置MySQL 在启动时使用的环境 变量 **MYSQLD_OPTS 。**运行以下命令:

bash 复制代码
sudo systemctl set-environment MYSQLD_OPTS="--skip-networking --skip-grant-tables"

好了,环境变量设置好了,我们就可以不用密码登录MySQL shell了。

4.启动MySQL服务

设置环境变量MYSQLD_OPTS 后,启动MySQL 服务。运行以下命令:

bash 复制代码
sudo systemctl start mysql.service

确认MySQL 服务的状态(如果正在运行):

5. 登录MySQL Shell

此时我们就可以不用密码访问MySQL数据库了:

bash 复制代码
wenhua@my-dream:~$ sudo mysql -u root
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 8
Server version: 8.0.36-0ubuntu0.20.04.1 (Ubuntu)

Copyright (c) 2000, 2024, Oracle and/or its affiliates.

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>

6.重置root密码

现在,首先**刷新权限。**运行以下命令:

bash 复制代码
mysql> flush privileges;
bash 复制代码
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> ALTER USER  'root'@'localhost' IDENTIFIED BY '(YOUR NEW PASSWORD)';;
Query OK, 0 rows affected (0.01 sec)

mysql> quit;
Bye

((YOUR NEW PASSWORD)替换成新密码后退出

7.杀死所有MySQL进程并重新启动MySQL服务

首先,在重新启动 MySQL 服务器之前杀死 MySQL 的所有进程。

并重新启动 MySQL 服务器,运行以下命令:

bash 复制代码
sudo killall -u mysql

8.使用新密码登录MySQL

如果一切顺利,您现在应该能够使用 root 密码登录 MySQL 数据库:

bash 复制代码
wenhua@my-dream:~$ sudo mysql -u root -p
Enter password:
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 8
Server version: 8.0.36-0ubuntu0.20.04.1 (Ubuntu)

Copyright (c) 2000, 2024, Oracle and/or its affiliates.

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> 
相关推荐
bohu835 分钟前
亚博microros小车-原生ubuntu支持系列:16 机器人状态估计
ubuntu·机器人·imu·localization·microros·imu_tools
马立杰1 小时前
H3CNE-33-BGP
运维·网络·h3cne
云空2 小时前
《DeepSeek 网页/API 性能异常(DeepSeek Web/API Degraded Performance):网络安全日志》
运维·人工智能·web安全·网络安全·开源·网络攻击模型·安全威胁分析
深度Linux2 小时前
Linux网络编程中的零拷贝:提升性能的秘密武器
linux·linux内核·零拷贝技术
没有名字的小羊3 小时前
Cyber Security 101-Build Your Cyber Security Career-Security Principles(安全原则)
运维·网络·安全
千夜啊3 小时前
Nginx 运维开发高频面试题详解
运维·nginx·运维开发
存储服务专家StorageExpert4 小时前
答疑解惑:如何监控EMC unity存储系统磁盘重构rebuild进度
运维·unity·存储维护·emc存储
chian-ocean6 小时前
从理论到实践:Linux 进程替换与 exec 系列函数
linux·运维·服务器
拎得清n6 小时前
UDP编程
linux
敖行客 Allthinker6 小时前
从 UTC 日期时间字符串获取 Unix 时间戳:C 和 C++ 中的挑战与解决方案
linux·运维·服务器·c++