MySQL 的mysql_secure_installation安全脚本执行过程介绍

server/2025/1/21 7:35:36/

1.设置 MySQL root 用户密码。
2.删除匿名用户。
3.禁止 root 用户远程登录。
4.删除测试数据库
5.重新加载权限表。
以下是执行 mysql_secure_installation 的详细步骤:

mysql_secure_installation__11">步骤 1:启动 mysql_secure_installation 脚本

打开终端并执行以下命令:
sudo mysql_secure_installation

步骤 2:输入当前的 MySQL root 密码

如果这是第一次设置,MySQL root 用户没有密码,你可以直接按 Enter 键。否则,输入当前的 root 密码。

步骤 3:设置新的 root 密码

你会被询问是否要设置新的 root 密码。如果当前没有设置 root 密码,建议设置一个强密码。输入 Y 并按 Enter,然后按照提示设置密码。

步骤 4:删除匿名用户

删除匿名用户账户,防止未授权用户登录 MySQL。输入 Y 并按 Enter。

5:禁止 root 用户远程登录

为了提高安全性,建议禁止 root 用户远程登录。输入 Y 并按 Enter。

步骤 6:删除测试数据库

删除默认安装的测试数据库,它可以被任何用户访问。输入 Y 并按 Enter。

步骤 7:重新加载权限表

最后,重新加载权限表,以确保所有更改生效。输入 Y 并按 Enter。

完整示例

以下是一个完整的示例输出:
Securing the MySQL server deployment.
Enter password for user root: (输入当前的 root 密码或直接按 Enter 如果没有密码)
The existing password for the user account root has expired. Please set a new password.
New password: (输入新的 root 密码)
Re-enter new password: (重新输入新的 root 密码)

VALIDATE PASSWORD PLUGIN can be used to test passwords and improve security.
It checks the strength of password and allows the users to set only those passwords which are secure enough.

Would you like to setup VALIDATE PASSWORD plugin

Press y|Y for Yes, any other key for No: Y (根据需要选择是否启用密码验证插件)
Please set the password validation policy:

LOW Length >= 8
MEDIUM Length >= 8, numeric, mixed case, and special characters
STRONG Length >= 8, numeric, mixed case, special characters and dictionary file

Please enter 0 = LOW, 1 = MEDIUM and 2 = STRONG: 1 (选择密码验证策略)
Using existing password for root.

Estimated strength of the password: 100
Change the password for root ((Press y|Y for Yes, any other key for No) : N (如果刚刚设置了密码,这里选择 N)
… skipping.

By default, a MySQL installation has an anonymous user, allowing anyone
to log into MySQL without having to have a user account created for
them. This is intended only for testing, and to make the installation
go a bit smoother. You should remove them before moving into a
production environment.

Remove anonymous users (Press y|Y for Yes, any other key for No) : Y (删除匿名用户)
Success.

Normally, root should only be allowed to connect from ‘localhost’. This
ensures that someone cannot guess at the root password from the network.

Disallow root login remotely (Press y|Y for Yes, any other key for No) : Y (禁止 root 用户远程登录)
Success.

By default, MySQL comes with a database named ‘test’ that anyone can
access. This is also intended only for testing, and should be removed
before moving into a production environment.

Remove test database and access to it (Press y|Y for Yes, any other key for No) : Y (删除测试数据库)

  • Dropping test database…
    Success.
  • Removing privileges on test database…
    Success.

Reloading the privilege tables will ensure that all changes made so far
will take effect immediately.

Reload privilege tables now (Press y|Y for Yes, any other key for No) : Y (重新加载权限表)
Success.

All done!
你已经成功执行了 mysql_secure_installation 并提高了 MySQL 服务器的安全性。


http://www.ppmy.cn/server/160115.html

相关文章

SpringBoot集成OpenFeign,实现服务间的相互调用

SpringBoot集成OpenFeign,实现服务间的相互调用 文章目录 SpringBoot集成OpenFeign,实现服务间的相互调用一、实验准备与目标二、添加依赖三、写调用接口四、写controller层五、启动类注解六、结果 一、实验准备与目标 有业务模块business和跑批模块bat…

Python 爬虫学习指南与资料分享

Python爬虫学习资料 Python爬虫学习资料 Python爬虫学习资料 在数字化浪潮中,Python 爬虫作为强大的数据获取工具,为众多领域提供关键支持。想要系统掌握这门技术,以下的学习指南与资料分享将为你照亮前行道路。 一、学习指南 入门奠基 …

数据结构(线性表的链式实现):稀疏多项式

#include <iostream> //稀疏多项式合并 typedef struct PNode {int expn;//指数float coef;//系数struct PNode *next; }PNode,*Polyn; void create_polyn(Polyn &s,int n) {snew PNode ;//头节点s->nextnullptr;PNode *qnew PNode;PNode *prenew PNode;qs;for (…

Linux手写FrameBuffer任意引脚驱动spi屏幕

一、硬件设备 开发板&#xff1a;香橙派 5Plus&#xff0c;cpu&#xff1a;RK3588&#xff0c;带有 40pin 外接引脚。 屏幕&#xff1a;SPI 协议 0.96 寸 OLED。 二、需求 主要是想给板子增加一个可视化的监视器&#xff0c;并且主页面可调。 平时跑个模型或者服务&#xff0c;…

使用AI生成金融时间序列数据:解决股市场的数据稀缺问题并提升信噪比

“GENERATIVE MODELS FOR FINANCIAL TIME SERIES DATA: ENHANCING SIGNAL-TO-NOISE RATIO AND ADDRESSING DATA SCARCITY IN A-SHARE MARKET” 论文地址&#xff1a;https://arxiv.org/pdf/2501.00063 摘要 金融领域面临的数据稀缺与低信噪比问题&#xff0c;限制了深度学习在…

源码编译http

1.下载源码包上传到linux中 2.编译源码包安装apache软件 安装软件&#xff1a;yum install gcc gcc-c make -y 解压&#xff1a;tar xf httpd-2.4.62.tar.bz2 -C /usr/local/src/ 指定组和用户&#xff1a;groupadd -r -g 48 apache useradd -r -u 48 -g 48 -c "Apache …

基于Ubuntu22.04安装SVN服务器

基于Ubuntu22.04安装SVN服务器 1.安装SVN服务器2.修改SVN服务器版本库目录3.调整SVN配置4.重启SVN服务5.安装TortoiseSVN 1.安装SVN服务器 确认uubuntu是否已经安装了SVN命令&#xff0c;如果没安装&#xff0c;使用对应的命令进行安装 svn //查看命令是否存在 s…

element-ui textarea备注 textarea 多行输入框

发现用这个组件&#xff0c;为了给用户更好的体验&#xff0c;要加下属性 1. 通过设置 autosize 属性可以使得文本域的高度能够根据文本内容自动进行调整&#xff0c;并且 autosize 还可以设定为一个对象&#xff0c;指定最小行数和最大行数。:autosize"{ minRows: 3, ma…