MinIO集群部署详细步骤(高性能的分布式对象存储系统)
minio集群部署详细步骤
节点:
10.1.3.184
10.1.3.185
10.1.3.186
10.1.3.187
CentOS7.9
单独挂载/data 数据盘
需要安装哪些依赖,需要系统做哪些设置
minio集群部署详细步骤,考虑生产环境
# 安装基础依赖
yum install -y epel-release wget curl net-tools bind-utils ntpdate lsof
yum install -y wget curl net-tools bind-utils ntpdate lsof
# 设置时区并同步时间
timedatectl set-timezone Asia/Shanghai
ntpdate -u pool.ntp.org
systemctl enable chronyd && systemctl start chronyd
# 禁用防火墙或开放必要端口
systemctl stop firewalld
systemctl disable firewalld
# 或者开放端口(如果防火墙必须启用)
# firewall-cmd --permanent --add-port=9000/tcp
# firewall-cmd --permanent --add-port=9001/tcp
# firewall-cmd --reload
# 禁用SELinux
setenforce 0
sed -i 's/^SELINUX=enforcing/SELINUX=disabled