1.安装epel仓库
wget -O /etc/yum.repos.d/epel.repo http://mirrors.aliyun.com/repo/epel-7.repo
2.安装apache
yum install -y httpd-* httpd
3.配置文件的注释太多了,影响浏览,删除所有#号和空白行(记得先备份,这一步可以不要,如果不改配置文件的话)
sed -i '/#/d' /etc/httpd/conf/httpd.conf
sed -i '/^$/d' /etc/httpd/conf/httpd.conf
4.启动apache
systemctl start httpd
此时,在电脑上输入虚拟机的IP,连接超时?
不要急,正常现象
5.临时关闭selinux
setenforce 0
6.关闭防火墙或放行端口
systemctl stop firewalld //关闭防火墙
或
firewall-cmd --add-port=80/tcp --permanent //放行80端口
firewall-cmd --reload //不改变状态的条件下重新加载防火墙
此时在主机上打开,出现了这个,说明安装好了