目录
一、虚拟机浏览器访问本地IP
1.进入root
[centos@localhost ~]$ su root
密码:
2.虚拟机联网
[root@localhost centos]# dhclient
3. 查看虚拟机IP地址
[root@localhost centos]# ifconfig
ens33: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500
inet 192.168.0.103 netmask 255.255.255.0 broadcast 192.168.0.255
ether 00:0c:29:14:9c:5b txqueuelen 1000 (Ethernet)
RX packets 99 bytes 13846 (13.5 KiB)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 50 bytes 6046 (5.9 KiB)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
4. 没有安装httpd导致连接失败
5. 安装httpd,完毕后启动
[root@localhost centos]# yum install httpd
完毕!
[root@localhost centos]# service httpd status
6. 刷新后可以看到页面,虚拟机浏览器看到虚拟机本地服务
二、实现在win浏览器中访问虚拟机的IP地址
1.在win中无法访问,因为虚拟机中有防火墙
2.清除防火墙,再次刷新
[root@localhost centos]# systemctl stop firewalld
3.在win浏览器中实现访问
三、在虚拟机中写网页在win浏览器可以访问
1.创建一个html文档
[root@localhost centos]# cd /var/www/html
[root@localhost html]# ls
[root@localhost html]# vi hello.html
2.简单的html语言
s 进入编辑状态,esc退出,:wq保存并退出
<html>
<body>
helloworld!
</body>
</html>
3.在win浏览器中输入网址
成功!!