一尘不染

manage.py运行服务器

django

当我尝试检入机器B时,我正在从机器A运行python manage.py runserver。我键入的URL是http:// A:8000 / 我收到类似系统返回的错误:(111)连接被拒绝


阅读 329

收藏
2020-03-29

共1个答案

一尘不染

你可以通过以下方式为网络中的计算机运行它

./manage.py运行服务器0.0.0.0:8000

这样一来,你就可以从网络中的任何计算机访问服务器。只需在浏览器http://192.168.0.1:8000中的其他机器上键入192.168.0.1你服务器的IP地址…就可以开始使用…了。

或者在你的情况下:

  1. On machine A in command line ./manage.py runserver 0.0.0.0:8000
  2. Than try in machine B in browser type http://A:8000
  3. Make a sip of beer.
2020-03-29