cat /lib/systemd/system/nginx.service
[Unit]
Description=nginx - high performance web server
Documentation=
http://nginx.org/en/docs/After=network-online.target remote-fs.target nss-lookup.target
Wants=network-online.target
[Service]
Type=forking
PIDFile=/var/run/nginx.pid
ExecStart=/usr/sbin/nginx -c /etc/nginx/nginx.conf
ExecReload=/bin/kill -s HUP $MAINPID
ExecStop=/bin/kill -s TERM $MAINPID
[Install]
WantedBy=multi-user.target
root@localhost:~# cat /etc/systemd/system/multi-user.target.wants/nginx.service
[Unit]
Description=nginx - high performance web server
Documentation=
http://nginx.org/en/docs/After=network-online.target remote-fs.target nss-lookup.target
Wants=network-online.target
请教大家,着否这里需要设置过才能关机?