概述
1.安装httpd,并将访问apache服务器的首页修改为hello.html, 且内容为: "My Home Page is hello”
(1)首先需要明白,成功安装的前提是在 /etc/yum.repo.d/ 下配置了yum源;
然后进行安装:
[root@rhcsa ~]# yum install -y httpd
#:成功安装有这么几个包
[root@rhcsa ~]# rpm -qa | grep httpd httpd-tools-2.4.6-97.el7.centos.5.x86_64 httpd-2.4.6-97.el7.centos.5.x86_64 [root@rhcsa ~]#
#:再来看一下安装成功有哪些包:9090和9091是我自己加的端口,httpd默认端口是80;
[root@rhcsa ~]# netstat -lntup | grep httpd tcp6 0 0 :::80 :::* LISTEN 1593/httpd tcp6 0 0 :::9090 :::* LISTEN 1593/httpd tcp6 0 0 :::9091 :::* LISTEN 1593/httpd [root@rhcsa ~]#
(2):在 /var/www/html 下面创建这个hello.html文件并且写入指定内容;
[root@rhcsa html]# cat hello.html My Home Page is hello [root@rhcsa html]#
(3):将访问apache服务器的首页修改为hello.html;
[root@rhcsa conf]# cat httpd.conf | grep hello.html DirectoryIndex hello.html [root@rhcsa conf]#
(4):效果截图:
2.虚拟主机:虚拟两台主机ip为100,200, 对应访问
最后
以上就是顺利白云为你收集整理的Linux--CE--web服务器,虚拟主机的全部内容,希望文章能够帮你解决Linux--CE--web服务器,虚拟主机所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复