Table: LinuxNotes
User: dreamable
Created at: 2023-06-28 07:41:42 UTC
Updated at: 2023-06-28 07:41:42 UTC
Reference:(Table ID 28, Record ID 12)

标题 :
如何自动重启nginx
笔记 :

服务器nginx偶尔会被杀死,可能是系统资源不够了。

sudo systemctl edit nginx then paste in:

[Service]
Restart=always

check if it works

sudo systemctl status nginx
sudo pkill -f nginx
sudo systemctl status nginx
Tag: