1.1 问题
本例要求为在Linux主机上快速构建Web网站服务器,成功实现网页部署及访问,完成下列任务:
1)在 CentOS7 虚拟机上搭建 Web 服务
安装 httpd 软件包
将系统服务 httpd 设为开机自启,同时启动此服务
为默认网站创建首页文件 index.html(自建或程序员提供)
2)通过 firefox 火狐浏览器访问本机的 Web 资源
1)打开 firefox 火狐浏览器
2)在火狐浏览器中输入网址 http://127.0.0.1/ ,确认网页结果
1.2 方案
在CentOS7系统中开启Web/FTP等网络服务应用时,可能会收到默认配置的防火墙、SELinux等安全防护策略影响。为了避免干扰,学习过程中建议禁止这些保护机制。
关闭防火墙策略:
[[email protected] ~]# systemctl stop firewalld.service //设置开机禁用防火墙
[[email protected] ~]# systemctl disable firewalld.service //关闭防火墙
关闭SELinux保护机制:
[[email protected] ~]# setenforce 0 //立即切换为宽松模式
[[email protected] ~]# getenforce //确认结果
Permissive
[[email protected] ~]# vim /etc/selinux/config //以后开机不再强制生效
SELINUX=permissive //宽松模式
1.3 步骤
实现此案例需要按照如下步骤进行。
步骤一:在 CentOS7 虚拟机上搭建 Web 服务
1)安装 httpd 软件包
[[email protected] ~]# yum -y install httpd
.. ..
已安装:
httpd.x86_64 0:2.4.6-45.el7.centos
完毕!
2)将系统服务 httpd 设为开机自启,同时启动此服务
[[email protected] ~]# systemctl enable httpd //设为开机自启
Created symlink from /etc/systemd/system/multi-user.target.wants/httpd.service to /usr/lib/systemd/system/httpd.service.
[[email protected] ~]# systemctl restart httpd //启动此服务
3)为默认网站创建首页文件 index.html(自建或程序员提供)
[[email protected] ~]# vim /var/www/html/index.html
My Web Site.
步骤二:通过 firefox 火狐浏览器访问本机的 Web 资源
1)打开 firefox 火狐浏览器
2)在火狐浏览器中输入网址 http://127.0.0.1/ ,确认网页结果
原文地址:http://blog.51cto.com/13445059/2073682
时间: 2024-10-11 03:33:07