How do I shut down a python simpleHTTPserver?

2019-01-21 02:10发布

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).

8条回答
对你真心纯属浪费
2楼-- · 2019-01-21 02:26

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

The keyboard command Ctrl+C (+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?

查看更多
戒情不戒烟
3楼-- · 2019-01-21 02:28

Turns out there is a shutdown, but this must be initiated from another thread.

This solution worked for me: https://stackoverflow.com/a/22533929/573216

查看更多
beautiful°
4楼-- · 2019-01-21 02:29

Hitting ctrl + c once(wait for traceback), then hitting ctrl+c again did the trick for me :)

查看更多
Viruses.
5楼-- · 2019-01-21 02:31

When you run a program as a background process (by adding an & after it), e.g.:

python -m SimpleHTTPServer 8888 &

If the terminal window is still open you can do:

jobs

To get a list of all background jobs within the running shell's process.

It could look like this:

$ jobs
[1]+  Running                 python -m SimpleHTTPServer 8888 &

To kill a job, you can either do kill %1 to kill job "[1]", or do fg %1 to put the job in the foreground (fg) and then use ctrl-c to kill it. (Simply entering fg will put the last backgrounded process in the foreground).

With respect to SimpleHTTPServer it seems kill %1 is better than fg + ctrl-c. At least it doesn't protest with the kill command.

The above has been tested in Mac OS, but as far as I can remember it works just the same in Linux.

Update: For this to work, the web server must be started directly from the command line (verbatim the first code snippet). Using a script to start it will put the process out of reach of jobs.

查看更多
放我归山
6楼-- · 2019-01-21 02:34

It seems like overkill but you can use supervisor to start and stop your simpleHttpserver, and completely manage it as a service.

Or just run it in the foreground as suggested and kill it with control c

查看更多
神经病院院长
7楼-- · 2019-01-21 02:37

or you can just do kill %1, which will kill the first job put in background

查看更多
登录 后发表回答