Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

why there are two process when i run python manage.py runserver

Tags:

wenzhixue      80384   0.4  1.1  2464788  22584 s001  S+   10:37AM   0:01.06 /usr/bin/python manage.py runserver 0.0.0.0:8000
wenzhixue      80383   0.0  0.8  2451208  17300 s001  S+   10:37AM   0:00.62 python manage.py runserver 0.0.0.0:8000

Every time when I run python manage.py runserver, it brings up two process. why?

like image 234
Wen Avatar asked May 14 '13 14:05

Wen


People also ask

Why does Python manage py Runserver not work?

The site could be temporarily unavailable or too busy. Try again in a few moments. If you are unable to load any pages, check your computer's network connection. If your computer or network is protected by a firewall or proxy, make sure that Firefox is permitted to access the Web.

What does manage py Runserver do?

1) python manage.py runserver This command you'll probably run the most of all commands. It means to run a emulated server on your local computer. So, after running it, you can go to localhost:8000 or 127.0. 0.1:8000.


1 Answers

Maybe because of the autoreload option

Try to run it with --noreload

django-admin.py runserver --noreload
like image 87
nacholibre Avatar answered Sep 19 '22 13:09

nacholibre