Which signal is missing from the following command that is commonly used to instruct a daemon to reinitialize itself, including reading configuration files?
killall -s _______ daemon
Answer: HUP 或 SIGHUP 或 1
題解
「killall」指令可以儘可能地停止某個已經正在執行中的指令(command)。killall可以發送數種不同的信號(signal),如下:
- SIGHUP(1)
- SIGINT(2)
- SIGKILL(9)
- SIGTERM(15)
- SIGSTOP(17,19,23)
SIGHUP信號常被用來作為重新初始化守護行程(daemon)的信號。可用「SIGHUP」、「HUP」或是「1」來表示。