1.安装httpd,并将访问apache服务器的首页修改为hello.html, 且内容为: "My Home Page is hello"
(1)因为我用的是本地源,所以我需要将本地源配置挂载在相应的目录下面
a.挂载好了之后需要下载安装httpd并开启httpd服务
b.将访问apache服务器的首页修改为hello.html, 且内容为: "My Home Page is hello"
c.用浏览器访问IP地址即可展示结果
2.虚拟主机:虚拟两台主机ip为100,200, 对应访问目录:/www/ip/100, /www/ip/200
并创建首页文件index.html(1)先创建两个目录
(2)创建两个IP于虚拟主机的端口上
a.虚拟主机IP的配置
3.配置不同端口的虚拟主机访问apache服务器(1)创建目录/www/port/{9090,9091}
(2)在对应目录中创建文件并设置主页内容[root@rhcsa conf.d]# echo hello world9090 > /9090/index.html [root@rhcsa conf.d]# echo hello world9091 > /9091/index.html
(3)在下面路径中vim创建并配置文件[root@rhcsa conf.d]# vim /etc/httpd/conf.d/myhosts2.conf
(4)重启httpd服务
[root@rhcsa conf]# systemctl restart httpd
(5)运行效果如下