1、安装apache服务器、并配置访问端口为:9999
yum install httpd -y ##apache软件
yum install httpd-manual ##apache的手册
systemctl start httpd
systemctl enable httpd
firewall-cmd --list-all ##列出火墙信息
firewall-cmd --permanent --add-service=http ##永久允许http
firewall-cmd --reload ##防火墙从新加载策略
/var/www/html ##apache的/目录,默认发布目录
/var/www/html/index.html ##apache的默认发布文件
vim /var/www/html/index.html ##写默认发布文件内容
<h1> hello world </h1>
vim /etc/httpd/conf/httpd.conf/
将80改为9999
2、添加新的默认页面sorry.html,在默认主页不能访问的情况下显示“很抱歉。。。该网站正在维护中,请您在4月1号后访问,感谢您的支持。”
[root@qm httpd]# cd /var/www/html/
[root@q'm html]# touch sorry.html
[root@qm html]# vim sorry.html
3、配置三台虚拟主机,用基于端口的方式配置。
输入:nmtui
分别用ping命令ping我们配置的三个IP地址,ping通即成功
下一步我们分别创建网站数据目录:在/home/wwwroot下分别创建三个网站数据目录
输出命令可同时创建三个目录,然后我们分别在三个网站数据目录下面写入主页文件,内容就写该网站的IP地址。
下一步我们在配置文件中描述基于IP地址的虚拟主机 vim /etc/httpd/conf/httpd.conf 直接将我们的信息找地方写入即可
<VirtualHost 192.168.235.150>
DocumentRoot /home/wwwroot/150
ServerName www.linuxprobe.com
<Directory /home/wwwroot/150>
AllowOverride None
Require all granted
</Directory>
</VirtualHost>
<VirtualHost 192.168.235.151>
DocumentRoot /home/wwwroot/151
ServerName bbs.linuxprobe.com
<Directory /home/wwwroot/151 >
AllowOverride None
Require all granted
</Directory>
</VirtualHost>
<VirtualHost 192.168.235.153>
DocumentRoot /home/wwwroot/153
ServerName tech.linuxprobe.com
<Directory /home/wwwroot/153 >
AllowOverride None
Require all granted
</Directory>
</VirtualHost>
配置完毕后我们要重启一下httpd服务。systemctl restart httpd
最后我们就可以分别以不同IP访问验证结果了