RHCA III之路---EX436-9
- 1. 题目
- 2. 解题
- 2.1 安装apache
- 2.2 配置页面
- 2.3 配置selinux和防火墙
- 2.4 创建资源
- 3. 确认
1. 题目
2. 解题
考试时会给你个url,从url下载index.html并放入默认目录
2.1 安装apache
3个节点分别安装
yum install -y httpd
2.2 配置页面
nodea上执行
echo "RH436 Training" >> /var/www/html/index.html
考试时候执行
wget http://xxx.xxx.xxx.xx/index.html -o /var/www/html/index.thml
2.3 配置selinux和防火墙
三个节点执行
firewall-cmd --permanent --add-service=http
firewall-cmd --reload
restorecon -Rv /var/www
2.4 创建资源
nodea上执行
pcs resource create webserver apache --group=cluster436
pcs resource create via IPaddr2 ip=172.25.250.80 cidr_netmask=24 --group=cluster436
pcs constraint order start LVMshared-clone then cluster436
3. 确认
任意节点尝试访问vip都正常
curl 172.25.250.80