windows想要访问VMware中Ubuntu Server中Debug模式下的django服务,需要设置django允许非本机ip访问。
设置方法:
1.查看虚拟机ip(建议VMware中设置Ubuntu虚拟机网络为NAT模式):
root@ubuntu:~# ifconfig #我的IP为192.168.206.129
2.将启动django服务命令:
root@ubuntu:~# python manage.py runserver
改成:
root@ubuntu:~# python manage.py runserver 0.0.0.0:8000
3.在你的windows浏览器中输入Ubuntu服务器的IP+端口号(例如我的http://192.168.206.129:8000)即可访问。
注:最好将创建django项目是生成的settings.py文件中的ALLOWED_HOSTS = [ ] 改成 ALLOWED_HOSTS = ['*']
这个注意事项在django官网第一课的The development server下方的Changing the port中有提到。
简单介绍虚拟机的几种网络连接:
桥接模式:从外界来看,虚拟机(Ubuntu),宿主机(Windows),是两台电脑。
NAT模式:从外界来看,虚拟机(Ubuntu),宿主机(Windows),是同一台电脑。
仅主机模式:虚拟机(Ubuntu)只能与宿主机(Windows)通信,虚拟机无法访问外网。