欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  网络运营

Apache之安装(阿里云镜像)

程序员文章站 2022-06-25 09:14:14
1.安装epel仓库wget -O /etc/yum.repos.d/epel.repo http://mirrors.aliyun.com/repo/epel-7.repo2.安装apacheyum install -y httpd-* httpd3.配置文件的注释太多了,影响浏览,删除所有#号和空白行sed -i '/#/d' /etc/httpd/conf/httpd.confsed -i '/^$/d' /etc/httpd/conf/httpd.conf4.启动apache...

1.安装epel仓库

wget -O /etc/yum.repos.d/epel.repo http://mirrors.aliyun.com/repo/epel-7.repo

Apache之安装(阿里云镜像)

2.安装apache

yum install -y httpd-* httpd

3.配置文件的注释太多了,影响浏览,删除所有#号和空白行(记得先备份,这一步可以不要,如果不改配置文件的话)

sed -i '/#/d' /etc/httpd/conf/httpd.conf
sed -i '/^$/d' /etc/httpd/conf/httpd.conf

Apache之安装(阿里云镜像)

4.启动apache

systemctl start httpd

Apache之安装(阿里云镜像)此时,在电脑上输入虚拟机的IP,连接超时?
Apache之安装(阿里云镜像)不要急,正常现象

5.临时关闭selinux

setenforce 0

6.关闭防火墙或放行端口

systemctl stop firewalld         //关闭防火墙
或
firewall-cmd --add-port=80/tcp --permanent     //放行80端口
firewall-cmd --reload            //不改变状态的条件下重新加载防火墙

此时在主机上打开,出现了这个,说明安装好了
Apache之安装(阿里云镜像)

本文地址:https://blog.csdn.net/weixin_45663905/article/details/107331479