Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I shut down a python simpleHTTPserver?

So I'm trying to learn d3, and the wiki suggested that

To view the examples locally, you must have a local web server. Any web server will work; for example you can run Python's built-in server:

python -m SimpleHTTPServer 8888 &

Great... only now I have a server running... but at some point I think I should probably shut that down again.

Is there a better way of shutting it down than using kill <pid>? That seems like kind of a big hammer for a little job.

(I'm running Mac OS 10.6.8 (Snow Leopard))

FWIW: ctrl+c gives about 10 lines of traceback, complaining about being interrupted.

kill -3 <pid> gives a Finder warning in a separate window 'Python quit unexpectedly'.

The default kill <pid> and kill -15 <pid> are relatively clean (and simple).

like image 879
Suz Avatar asked Sep 28 '12 20:09

Suz


People also ask

How do you shutdown a python server?

Just use ^C (control+c) to shut down python server.

What is python SimpleHTTPServer?

The SimpleHTTPServer module is a Python module that enables a developer to lay the foundation for developing a web server. However, as sysadmins, we can use the module to serve files from a directory. Usage. Python must be installed to use the SimpleHTTPServer module.


1 Answers

You are simply sending signals to the processes. kill is a command to send those signals.

The keyboard command Ctrl+C sends a SIGINT, kill -9 sends a SIGKILL, and kill -15 sends a SIGTERM.

What signal do you want to send to your server to end it?

like image 164
xbello Avatar answered Sep 21 '22 21:09

xbello