How do I shut down a python simpleHTTPserver?

前端 未结 8 1282
太阳男子
太阳男子 2020-12-12 12:29

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;

8条回答
  •  死守一世寂寞
    2020-12-12 13:14

    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?

提交回复
热议问题