devops:5台服务器;centos7.9操作系统,64位。
这里以发布hyperf 服务到两台机器为演示。
部署环境:
1、安装相关依赖
yum -y install policycoreutils openssh-server openssh-clients postfix
2、启动ssh服务&设置为开机启动
systemctl enable sshd && sudo systemctl start sshd
3、设置postfix开机自启,并启动,postfix支持gitlab发信功能
systemctl enable postfix && systemctl start postfix
4、开放ssh以及http服务,然后重新加载防火墙列表
- firewall-cmd --add-service=ssh --permanent
- firewall-cmd --add-service=http --permanent
- firewall-cmd --reload