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等安全防护策略影响。为了避免干扰,学习过程中建议禁止这些保护机制。

关闭防火墙策略:

[root@svr7 ~]# systemctl stop firewalld.service //设置开机禁用防火墙

[root@svr7 ~]# systemctl disable firewalld.service //关闭防火墙

关闭SELinux保护机制:

[root@svr7 ~]# setenforce 0 //立即切换为宽松模式

[root@svr7 ~]# getenforce //确认结果

Permissive

[root@svr7 ~]# vim /etc/selinux/config //以后开机不再强制生效

SELINUX=permissive //宽松模式

1.3 步骤

实现此案例需要按照如下步骤进行。

步骤一:在 CentOS7 虚拟机上搭建 Web 服务

1)安装 httpd 软件包

[root@svr7 ~]# yum -y install httpd

.. ..

已安装:

httpd.x86_64 0:2.4.6-45.el7.centos

完毕!

2)将系统服务 httpd 设为开机自启,同时启动此服务

[root@svr7 ~]# systemctl enable httpd //设为开机自启

Created symlink from /etc/systemd/system/multi-user.target.wants/httpd.service to /usr/lib/systemd/system/httpd.service.

[root@svr7 ~]# systemctl restart httpd //启动此服务

3)为默认网站创建首页文件 index.html(自建或程序员提供)

[root@svr7 ~]# vim /var/www/html/index.html

My Web Site.

步骤二:通过 firefox 火狐浏览器访问本机的 Web 资源

1)打开 firefox 火狐浏览器

2)在火狐浏览器中输入网址 http://127.0.0.1/ ,确认网页结果

ecfceff53573f5af2942caf038fdca2c.png

Logo

华为开发者空间,是为全球开发者打造的专属开发空间,汇聚了华为优质开发资源及工具,致力于让每一位开发者拥有一台云主机,基于华为根生态开发、创新。

更多推荐