Node.js
Uruchamianie node.js jako usługi
Szukaj…
Wprowadzenie
W przeciwieństwie do wielu serwerów WWW Node nie jest instalowany jako usługa od razu po wyjęciu z pudełka. Ale w produkcji lepiej jest uruchomić go jako demon zarządzany przez system init.
Node.js jako systemed dæmon
systemd to de facto system inicjujący w większości dystrybucji Linuksa. Po skonfigurowaniu węzła do działania z systememd można zarządzać nim za pomocą polecenia service
.
Przede wszystkim potrzebuje pliku konfiguracyjnego, stwórzmy go. W przypadku dystrybucji opartych na Debianie będzie to /etc/systemd/system/node.service
[Unit]
Description=My super nodejs app
[Service]
# set the working directory to have consistent relative paths
WorkingDirectory=/var/www/app
# start the server file (file is relative to WorkingDirectory here)
ExecStart=/usr/bin/node serverCluster.js
# if process crashes, always try to restart
Restart=always
# let 500ms between the crash and the restart
RestartSec=500ms
# send log tot syslog here (it doesn't compete with other log config in the app itself)
StandardOutput=syslog
StandardError=syslog
# nodejs process name in syslog
SyslogIdentifier=nodejs
# user and group starting the app
User=www-data
Group=www-data
# set the environement (dev, prod…)
Environment=NODE_ENV=production
[Install]
# start node at multi user system level (= sysVinit runlevel 3)
WantedBy=multi-user.target
Teraz można odpowiednio uruchamiać, zatrzymywać i ponownie uruchamiać aplikację za pomocą:
service node start
service node stop
service node restart
Aby powiedzieć systemd, aby automatycznie uruchamiał węzeł przy starcie, po prostu wpisz: systemctl enable node
.
To wszystko, węzeł działa teraz jako demon.