centos7 安装配置apache
Posted sheshidu
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了centos7 安装配置apache相关的知识,希望对你有一定的参考价值。
1、在安装apache
yum install httpd
2、启动测试
systemctl start httpd // restart (重启)
3、查看运行状态
service httpd status
4、配置httpd.conf文件,把AllowOverride改为了All。
vim /etc/httpd/conf/httpd.conf
5、查看已经开放的端口
firewall-cmd --list-ports
如果没有80端口
开启端口
firewall-cmd --zone=public --add-port=80/tcp --permanent
命令含义:
–zone #作用域
–add-port=80/tcp #添加端口,格式为:端口/通讯协议
–permanent #永久生效,没有此参数重启后失效
6、重启防火墙
firewall-cmd --reload #重启firewall
systemctl stop firewalld.service #停止firewall
systemctl disable firewalld.service #禁止firewall开机启动
firewall-cmd --state #查看默认防火墙状态(关闭后显示notrunning,开启后显示running)
7、访问ip
---------------------重启服务器后发现firewalld未开启
1、查看firewalld运行状态
systemctl status firewalld
Active: inactive (dead) 为dead 表示未启动
2、启动firewalld
systemctl start firerwalld
在查看状态
systemctl status firewalld
Active: active (running) 为running 表示已启动
以上是关于centos7 安装配置apache的主要内容,如果未能解决你的问题,请参考以下文章