标签:简单web站点搭建
一、CentOS6中简单的web站点的配置实例:二、CentOS7中简单的web站点的配置实例:
1.安装httpd:
yum install -y httpd httpd-manual httpd-tools
2.确保SElinux和iptables防火墙不会干扰httpd服务的提供:
SElinux配置:
~]# getenforce
Enforcing
~]# setenforce 0
防火墙:
~]# iptables -vnL
其执行结果中如果有防火墙规则,需要进行如下处理:
~]# systemctl disable firewalld.service
~]# systemctl stop firewalld.service
~]# iptables -F
3.添加一个html文档:/var/www/html/index.html
4.启动httpd服务:
~]# systemctl start httpd
5.监测服务启动是否正常:
~]# ss -tnl | grep httpd
~]# ps aux | grep httpd
~]# systemctl status httpd.service
6.设置httpd服务开机自动启动:
~]# systemctl enable httpd.service
7.在本地客户端主机访问创建好的IP地址就可以了。
标签:简单web站点搭建
原文地址:http://blog.51cto.com/chenliangdeeper/2108738