stop go
Contents
linux signal
an important event happen; send by kernel or other process(shell command);
the list of signal
1 up: hang up
2 int (ctrl + c)
3 quit (ctrl + )
9 kill: can’t be caught and ignreo
15 termination
graceful stop go
how:
- stop all open and idle resouce
- wait running work to finish
http server:
|
|
shutdown:
- closing all open listeners
- close all idle connections,
- wait indefinitely for connections to return to idle and then shut down, so you have to set canceled timeout
1. the conventional way to stop a program in linux
- press keyboard crtl +c(interrupt); crtl+(quit)
- send a signal kill -15 pid; kil -9 pid
2. how to gracefully stop a program
catch all possible signal, do some clean work before exiting
|
|