CentOS7如何配置httpd虚拟主机

admin3年前云服务器108

CentOS7配置httpd虚拟主机的操作步骤:1、查看CentOS7系统版本和httpd版本;2、输入“systemctl start httpd.service ”命令启动httpd;3、使用curl命令访问虚拟主机;4、借助mkdir命令创建指定文件目录;5、打开vir.conf配置文件,根据要求填写虚拟主机配置信息;6、创建两个web测试页面;7、重载httpd配置文件使修改生效;8、 修改客户端主机的hosts文件,让主机能够解析域名;9、在浏览器中访问web测试页面即可查看结果。

本实验旨在centos7系统中,httpd-2.4配置两台虚拟主机,主要有以下要求:

(1) 提供两个基于名称的虚拟主机:

  www1.stux.com,页面文件目录为/web/vhosts/www1;错误日志为/var/log/httpd/www1/error_log,访问日志为/var/log/httpd/www1/access_log;
  www2.stux.com,页面文件目录为/web/vhosts/www2;错误日志为/var/log/httpd/www2/error_log,访问日志为/var/log/httpd/www2/access_log;

(2) 通过www1.stux.com/server-status输出其状态信息,且要求只允许提供账号的用户访问;

(3) www1不允许192.168.1.0/24网络中的主机访问;

查看系统版本和httpd版本

[root@host~]$httpd-v

serverversion:apache/2.4.6(centos)

serverbuilt:nov14201618:04:44

[root@host~]$cat/etc/centos-release

centoslinuxrelease7.3.1611(core)

启动httpd,测试能否正常运行

[root@host~]$systemctlstarthttpd.service

[root@host~]$systemctlstatushttpd.service

●httpd.service-theapachehttpserver

loaded:loaded(/usr/lib/systemd/system/httpd.service;enabled;vendorpreset:disabled)

active:active(running)sincethu2017-06-0103:03:12cst;5sago#active表示正常运行

docs:man:httpd(8)

man:apachectl(8)

process:6473execstop=/bin/kill-winch${mainpid}(code=exited,status=0/success)

mainpid:6485(httpd)

status:"processingrequests..."

cgroup:/system.slice/httpd.service

├─6485/usr/sbin/httpd-dforeground

├─6486/usr/sbin/httpd-dforeground

├─6487/usr/sbin/httpd-dforeground

├─6489/usr/sbin/httpd-dforeground

├─6490/usr/sbin/httpd-dforeground

└─6572/usr/sbin/httpd-dforeground

jun0103:03:11hostsystemd[1]:startingtheapachehttpserver...

jun0103:03:12hostsystemd[1]:startedtheapachehttpserver.

使用curl命令访问

[root@host~]$ipashowens38#查看ip

3:ens38:<broadcast,multicast,up,lower_up>mtu1500qdiscpfifo_faststateupqlen1000

link/ether00:0c:29:dc:18:5fbrdff:ff:ff:ff:ff:ff

inet192.168.55.128/24brd192.168.55.255scopeglobaldynamicens38

valid_lft1752secpreferred_lft1752sec

inet6fe80::20c:29ff:fedc:185f/64scopelink

valid_lftforeverpreferred_lftforever

[root@host~]$curlhttp://192.168.55.128#访问

<!doctype>

<h1>

centos7.3

</h1>

创建指定文件目录

[root@hostconf.d]$mkdir-pv/web/vhosts/www1

[root@hostconf.d]$mkdir-pv/web/vhosts/www2

[root@hostconf.d]$mkdir-pv/var/log/httpd/www2

[root@hostconf.d]$mkdir-pv/var/log/httpd/www1

根据要求填写虚拟主机配置信息

#path/etc/httpd/conf.d/vir.conf#配置文件全路径

#virtualhost1  #虚拟主机1的配置

<virtualhost192.168.55.128:80>

errorlog"/var/log/httpd/www1/error_log"

customlog"/var/log/httpd/www1/access_log"combined

<location/server-status>

sethandlerserver-status

</location>

<directory/web/vhosts/www1>

<requireall>

requireallgranted

requirenotip192.168.1

</requireall>

</directory>

</virtualhost>

#virtualhost2#虚拟主机2的配置

<virtualhost192.168.55.128:80>

servernamewww2.stux.com

documentroot"/web/vhosts/www2"

errorlog"/var/log/httpd/www2/error_log"

customlog"/var/log/httpd/www2/access_log"combined

<directory/web/vhosts/www2>

<requireall>

  requireallgranted

</requireall>

</directory>

</virtualhost>

创建www1和www2的index页面

[root@hostconf.d]$cat/web/vhosts/www1/index.html

welcometowww1

thankyou

[root@hostconf.d]$cat/web/vhosts/www2/index.html

welcometowww2

thankyou

重载httpd配置文件

[root@hostconf.d]$httpd-t

syntaxok

[root@hostconf.d]$systemctlreloadhttpd.service

修改客户端主机的hosts文件,以便能解析域名

hosts在windows环境下的路径为c:\windows\system32\drivers\etc。在该文件中添加两行

192.168.55.128 www1.stux.com
192.168.55.128 www2.stux.com

访问结果

图1、访问www1站点

图2、访问www2站点

图3、查看www1站点的访问状态——正常

图4、查看www2站点的访问状态错误

免责声明:本文内容来自用户上传并发布,站点仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。请核实广告和内容真实性,谨慎使用。

相关文章

vps虚拟主机租用有哪些优势

vps虚拟主机租用的优势有:1、vps虚拟主机能减少单点故障发生的概率,保证网站正常运行;2、vps虚拟主机能实现多台节点服务器负载均衡,有利于抵御黑客攻击;3、当节点服务器增加时,站点连接数也会随着...

美国空间和香港空间的区别有哪些?

虚拟主机从地域上来说可以分为国内空间、美国空间和香港空间等。由于国内的空间需要备案等原因,所以选择使用美国、香港空间的站长也越来越多,那么,美国空间和香港空间的区别有哪些?下面小编就为大家进行分析。美...

使用独立ip虚拟主机有哪些优势

使用独立ip虚拟主机的优势有:1、安全性更高,使用独立ip虚拟主机能避免其他网站被K、攻击、异常等因素的牵连;2、空间更大,使用独立ip虚拟主机稳定性好,访问速度快,更有利于网站优化;3、用户能拥有特...

虚拟主机管理面板是什么

虚拟主机管理面板是:虚拟主机管理面板是针对虚拟主机运营商开发的专业性管理软件,可以通过管理面板管理域名、虚拟主机、企业邮局、数据库等。具体分析如下:虚拟主机管理面板实现域名、虚拟主机、企业邮局、数据库...

企业建站怎么选择免费海外虚拟主机

企业建站选择免费海外虚拟主机的方法:1、根据网站类型进行判断选择,如常见的博客站点,选择一个500M左右大小的网站空间就可以满足需求;2、根据网站用途进行判断选择,如游戏行业对网站的安全性,稳定性要求...

成都虚拟主机租用如何选择配置

成都虚拟主机租用选择配置的方法:1、选择300M以上的空间大小,能容纳大量数据;2、根据网站的访问量,选择合适的虚拟主机流量;3、选择多线或BGP线路,能保障网站的访问速度;4、根据自身使用习惯,选择...