当使用python manage.py runserver的时候出现127.0.0.1:8080 服务器拒绝访问,这时候是我们修改了host文件里面的内容:
还是不好截图....:
打开终端:
$ sudo gedit /etc/hosts
打开文件:
127.0.0.1 localhost
127.0.0.1 Inspiron-5421
# The following lines are desirable for IPv6 capable hosts
::1 ip6-localhost ip6-loopback
fe00::0 ip6-localnet
ff00::0 ip6-mcastprefix
ff02::1 ip6-allnodes
ff02::2 ip6-allrouters```
这里我们只需要把:`127.0.0.1 Inspiron-5421` 给删除掉就行了.当然前提是要备份一份hosts文件, 避免找不到一开始的文件了.