0
我有通過express-generator生成的nodejs服務器。 現在我嘗試創建systemd服務來運行我的服務器。創建systemd nodejs express-generator
[Unit]
Description=Node.js Example Server
[Service]
ExecStart=/usr/bin/node /opt/nodeserver/server.js
Restart=always
StandardOutput=syslog
StandardError=syslog
SyslogIdentifier=nodejs-example
Environment=NODE_ENV=production PORT=1337
[Install]
WantedBy=multi-user.target
該服務無法運行,因爲我無法運行服務器與命令節點server.js。 我可以運行服務器的唯一方法是:npm server.js。 如何告訴服務器使用npm命令而不是節點運行服務器?
Did [我的回答](http://stackoverflow.com/questions/40861258/create-systemd-nodejs-express-generator/40863613#40863613)有幫助嗎?任何意見? – rsp