目录

一 yum 安装apache

二、开启Apache服务

三、关闭SElinux、iptables防火墙

四、重启httpd服务并打开浏览器,测试网站访问


一 yum 安装apache

需要安装4个包:httpd、httpd-devel、httpd-manual、httpd-tools 

[root@localhost ~]# yum -y install httpd httpd-devel httpd-manual httpd-tools

二、开启Apache服务

1、先编辑一下配置文件/etc/httpd/conf/httpd.conf,在ServerName 那一行加上localhost:80 否则在启动服务的时候会报错 

[root@localhost ~]# vim /etc/httpd/conf/httpd.conf
ServerName www.example.com:80

2、启动httpd服务

[root@localhost ~]# service httpd start
正在启动 httpd:                                           [确定]
[root@localhost ~]# service httpd status
httpd (pid  2361) 正在运行...

三、关闭SElinux、iptables防火墙

把/etc/selinux/conf 配置文件中的SELINUX修改为disabled或permissive。保存退出后重启虚拟机! 

[root@localhost ~]# vim /etc/selinux/config

SELINUX=permissive

关闭iptables防火墙

[root@localhost ~]# service iptables stop
[root@localhost ~]# service iptables status
iptables:未运行防火墙。

四、重启httpd服务并打开浏览器,测试网站访问

[root@localhost ~]# service httpd restart
停止 httpd:                                               [确定]
正在启动 httpd:                                           [确定]

GitHub 加速计划 / li / linux-dash
10.39 K
1.2 K
下载
A beautiful web dashboard for Linux
最近提交(Master分支:2 个月前 )
186a802e added ecosystem file for PM2 4 年前
5def40a3 Add host customization support for the NodeJS version 4 年前
Logo

旨在为数千万中国开发者提供一个无缝且高效的云端环境,以支持学习、使用和贡献开源项目。

更多推荐