一、安装Rocky_Linux9 https://mirrors.aliyun.com/rockylinux/9/isos/x86_64/Rocky-9-latest-x86_64-dvd.iso 1. 选择install rocky_linux进入安装界面 选择语言种类后,设置一个root密码即可开始安装系统 二、系统安装后进行初始化配置 查看防火墙以及Selinux状态 #查看防火墙状态systemctl status firewalld#查看s...
退出myslq # 查看是否开放3306端口 firewall-cmd--list-ports # 开启防火墙 systemctl start firewalld.service # 开放3306端口 firewall-cmd--zone=public --add-port=3306/tcp --permanent # 刷新 firewall-cmd--reload # 关闭防火墙 systemctl stop firewalld.service # 禁止防火墙开机自启 systemctl disab...
9.输入账号密码登录到主机 10.查看ip,关闭防火墙 11.使用xshell远程连接虚拟主机(填写主机ip) 12.输入账号密码即可远程操作 https://mirrors.tuna.tsinghua.edu.cn/ubuntu-releases/22.04/ https://mirrors.aliyun.com/rockylinux/8.7/isos/x86_64/ 1. 2. 2.打开VMware新建虚拟主机 打开已经下载好的VM虚拟机,...
1 2 3 4 5 6 7 8 9 10 11 12 13 14 # 关闭防火墙 systemctl stop firewalld && systemctl disable firewalld # 永久关闭selinux grubby --update-kernel ALL --args selinux=0 # 临时关闭 setenforce 0 # 查看selinux状态 getenforce # 恢复selinux(少用) grubby --update-kernel ALL --remove-...
2.3. 关闭防火墙和selinux(全部节点) 分别在所有节点运行 [root@localhost ~]# systemctl stop firewalld.service [root@localhost ~]# systemctl disable firewalld.service [root@localhost ~]# setenforce 0 [root@localhost ~]# sed -i 's#SELINUX=enforcing#SELINUX=disabled#' /etc/selinux/config 2.4...
Rocky Linux 下载地址:https://dl.rockylinux.org/vault/rocky/ 这里使用的镜像是 Rocky-9.0-x86_64-minimal.iso 一、环境准备 # 关闭防火墙 systemctl stop firewalld systemctl disable firewalld # 查看防火墙状态 firewall-cmd --state # 关闭selinux 修改配置文件/etc/selinux/config SELINUX=disabled set...
sed -i 's/^SELINUX=enforcing$/SELINUX=Disabled/' /etc/selinux/config sed -i '/swap/ s/^/# /' /etc/fstab 3、各集群节点防火墙规则配置 方式一:配置防火墙规则,放行必要端口。适用于线上生产 # Master node 防火墙规则 firewall-cmd --permanent --add-port={6443,2379,2380,10250,10251,10252,...
本文介绍了Rocky Linux的安装、配置和使用方法。包括安装时的语言选择、手动分区配置、设置ROOT密码、安装进度及系统重启。系统使用部分详细说明了版本查询、主机名配置、网络配置(包括NetworkManager的使用和nmcli命令)、SELinux配置(查看状态、临时/永久关闭)、Firewall防火墙配置、SSH免密登录设置以及其他命令工具的安装方法...
在Rocky Linux中,可以使用firewalld来设置防火墙规则。以下是设置防火墙规则的步骤: 检查firewalld状态: sudo systemctl status firewalld 复制代码 如果firewalld未启动,可以使用以下命令启动firewalld: sudo systemctl start firewalld 复制代码 为了确保firewalld在系统重启后自动启动,可以运行以下命令: sudo system...
接下来,我们将介绍如何在Rocky Linux中设置防火墙规则。 1、安装firewalld 在大多数Rocky Linux系统中,firewalld已经预装并默认启用,如果还没有安装,可以使用以下命令进行安装: sudo dnf install firewalld 2、启动和停止firewalld 使用以下命令启动和停止firewalld: ...