Jeff : Thanks for reply.
Ravi Hingarajiya On Sun, Sep 28, 2008 at 2:41 PM, Jeff Anderson <[EMAIL PROTECTED]>wrote: > Hingarajiya,Ravi wrote: > > Hi Alessandro, > > > > Thanks for your reply.I know kill command. > > > > But we are developing IDE for Django. So We want to know that how > > to stop internal server using any command (example : /etc/init.d/httpd > > stop in apache web server ). > /etc/init.d/httpd stop is just a wrapper script that uses the kill > command. You need to do the same thing to kill any process. ctrl+c sends > signal 2 to the running process. kill <pid> is exactly what you need to > use. > > Jeff Anderson > > --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---

