在创建了helloworld后 ,http://127.0.0.1:8000不能访问了
在创建了helloworld后 ,http://127.0.0.1:8000/helloworld可以访问 ,但为什么http://127.0.0.1:8000不能访问了 !
在创建了helloworld后 ,http://127.0.0.1:8000/helloworld可以访问 ,但为什么http://127.0.0.1:8000不能访问了 !
2015-10-20
ubuntu系统下,运行一个django项目,即输入python manage.py runserver后,可能出现
即端口号已经被占用,说明servr已经在运行了(也有可能在后台运行)
那么找到该进程,kill掉即可.
或者最简单的解决方法就是:
在终端输入
sudo fuser -k 8000/tcp
这样和端口8000相关的进程就都关了。
Internal Server Error: /
Traceback (most recent call last):
File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/django/core/handlers/exception.py", line 41, in inner
response = get_response(request)
File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/django/core/handlers/base.py", line 187, in _get_response
response = self.process_exception_by_middleware(e, request)
File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/django/core/handlers/base.py", line 185, in _get_response
response = wrapped_callback(request, *callback_args, **callback_kwargs)
File "/Users/tederen/PycharmProjects/the_first_django/mysite/blog/views.py", line 6, in hello
return HttpRequest("<html>hello world</html>")
TypeError: __init__() takes exactly 1 argument (2 given)
[27/Apr/2017 07:02:37] "GET / HTTP/1.1" 500 60519
为什么一直报500 访问不了 = =
举报