跑网页
Posted atma
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了跑网页相关的知识,希望对你有一定的参考价值。
1.本地yum源安装:
[[email protected] ~]# mount /dev/sr0 /opt
写yum源配置文件:
[[email protected] ~]# cd /etc/yum.repo.d/
[[email protected] ~]# vi dvd.repo
2.配置文件如下:
[dvd]
name=dvd
baseurl=file:///opt
gpgcheck=0
3.清除和查看:
[[email protected] ~]# yum clean all
[[email protected] ~]# yum list
4.安装httpd:
[[email protected] ~]# yum install httpd (安装httpd服务)
[[email protected] ~]# systemctl restart httpd (启动httpd服务)
[[email protected] ~]# systemctl status httpd (查看启动状态)
5.关闭防火墙:
[[email protected] ~]# iptables -F
[[email protected] ~]# iptables -X
[[email protected] ~]# setenforce 0
最后结果如下:
由于,首次配置httpd服务,所以,在浏览首页文件的时候,会跳至到/etc/httpd/conf.d/wlcom.conf文件,将此文件用网页的形式显示到屏幕。如果想修改主页,操作如下:
1.移动/etc/httpd/conf.d/wlcom.conf文件到根目录下,(注意:此时/etc/httpd/conf.d/这个文件目录下已经没有wlcom.conf的这个文件):
[[email protected] ~]# mv /etc/httpd/conf.d/welcome.conf /
2.切换至 /var/www/html/ 目录下:
[[email protected] ~]# cd /var/www/html
3.在此目录下,编辑一个index.html的文件 (注意:文件后缀名要以html结尾)
[[email protected] ~]# vi index.html
内容如下:
<h1>你好</h1>
4.修改成功退出后,重启服务器,生效配置文件:
[[email protected] ~]# systemctl restart httpd
5.关闭防火墙:
[[email protected] ~]# iptables -F
[[email protected] ~]# iptables -X
[[email protected] ~]# setenforce 0
6.结果如下:
以上是关于跑网页的主要内容,如果未能解决你的问题,请参考以下文章