apache的安装与配置

安装apache

yum install httpd -y

apache的安装与配置_第1张图片

安装apache收册

yum install httpd-manual

apache的安装与配置_第2张图片

将Apache服务添加到 开机自启中

        systemctl start httpd
        systemctl enable httpd

设置永久允许http

firewall-cmd --permanent --add-service=http 

 让防火墙重新加载策略

firewall-cmd --reload

列出防火墙信息

firewall-cmd --list-all

apache的安装与配置_第3张图片

进入默认发布的目录,并编辑默认发布文件内容

vim /var/www/html/index.html

helloword

apache的安装与配置_第4张图片

在查看直接的IP

IP add

apache的安装与配置_第5张图片

然后在电脑浏览器中查看

输入:http://192.168.153.135apache的安装与配置_第6张图片 

配置apache

先进入主配置文件

cd /etc/httpd/conf

在进入并编辑 httpd.conf

vim httpd.conf

将listen 80改为你要设置的端口

apache的安装与配置_第7张图片

重启http的端口

systemctl restart httpd

防火墙添加端口号

firewall-cmd --permanent --add-port=5555/tcp

重新加载防火墙

firewall-cmd --reload

 

查看防火墙列表

firewall-cmd --list-all

apache的安装与配置_第8张图片 

临时关闭:(不用重启机器):

setenforce 0

查看5555端口

netstat -atunp |grep 5555

 

 

 

你可能感兴趣的:(linux)