16.2.11 的开源版本部署: 环境需求: 三个节点,每个节点20G的硬盘一块作为系统盘,10G的硬盘三块作为OSD的硬盘;每个节点的配置2C4G,操作系统: RHEL8.4\CentOS8.4\RockyLinux8.4 及8.4以上的版本 1. 配置主机名 hostnamectl set-hostname node1.example.com (在node1上操作,以下在指定主机操作) hostnamectl set-hostname node2.example.com hostnamectl set-hostname node3.example.com 2.关闭防火墙和SELINUX systemctl disable --now firewalld setenforce 0 将SELINUX设置为警告模式 sed -i 's/SELINUX=enforcing/SELINUX=disabled/' /etc/selinux/config 将其改成disable 禁止开机启用SELINUX reboot (重启)
admin