一、安装httpd
- 查看软件仓库中apache版本列表
dnf provides http
- 安装apache
dnf install -y httpd
二、启动http并测试
- 查看apache版本号
httpd -v
- 检查配置文件是否正确
httpd -t
- 启动并设置为开机启动
systemctl enable httpd --now
或
systemctl enable httpd
systemctl start httpd
- 查看httpd服务状态
systemctl status httpd
- 防火墙添加80端口
firewall-cmd --zone=public --add-port=80/tcp --permanent
firewall-cmd --reload
三、几种检查http服务状态的方法
- 方法一:查看端口监听状态
ss -lnp | grep 80
- 方法二:curl命令访问80端口
curl 127.0.0.1:80
- 方法三:浏览器访问ip