Systemd

如何為特定的 systemd 單元超時?

  • September 11, 2019

有沒有辦法更改特定 systemd 單元的超時?我對預設的 90s 沒問題,除了 bind9;我們為數以萬計的區域提供服務,因此 bind9 需要幾分鐘才能啟動。

您可以在該部分中添加TimeoutStartSec條目。[Service]假設您的服務被呼叫bind9,執行

sudo systemctl edit bind9

並添加覆蓋:

[Service]
TimeoutStartSec=5min

引用自:https://unix.stackexchange.com/questions/541114