tgone wrote:
> Hi,
>
> How do you shut down the Django server on port 8000? My SSH connection
> crashed before I could close the Django server and it's still running.
> I uninstalled my projects and I still get a Django 404 page! Any
> ideas?

You just have to kill the python process corresponding to your previous 
'runserver' command. Depending on your OS, you should use ps or the Task 
Manager 
to identify the right process.
On linux,
    netstat -anp --tcp | grep 8000
should give you the culprit.

HTH,
-- 
Kilian CAVALOTTI                      Administrateur réseaux et systèmes
Université P&M Curie - LIP6 (C870)
8, rue du Capitaine Scott                          Tel. : 01 44 27 88 54
75015 Paris - FRANCE                               Fax. : 01 44 27 70 00 



--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users
-~----------~----~----~----~------~----~------~--~---

Reply via email to