Ich wollte, dass Node.js automatisch startet, wenn Edison startet.
Erstellen Sie zunächst eine Einstellungsdatei
$ vi /etc/systemd/system/hoge.service
Inhalt der Einstellungsdatei
[Unit]
Description=Node.js Hoge-Server
[Service]
WorkingDirectory=/home/root/Documents/Project/hoge
Type=simple
ExecStart=/usr/bin/node app.js
Restart=always
RestartSec=10
StandardOutput=syslog
StandardError=syslog
SyslogIdentifier=node-server
[Install]
WantedBy=multi-user.target
$ systemctl start hoge.service
$ systemctl stop hoge.service
$ systemctl status hoge.service
Startet automatisch, wenn das Betriebssystem gestartet wird
$ systemctl enable hoge.service
Starten Sie nicht automatisch, wenn das Betriebssystem gestartet wird
$ systemctl disable hoge.service
http://enakai00.hatenablog.com/entry/20130917/1379374797
Recommended Posts