
Ich kann nicht herausfinden, warum Start-Stop-Daemon das folgende Skript nicht ausführt. Was mache ich falsch? Start-Stop-Daemon meldet, dass es den Knoten startet, wenn das Flag --test verwendet wird, aber wenn ich es tatsächlich ausführe, wird der Prozess nicht gestartet.
root@server:~# cat /var/www/a/app.js
var http = require("http")
var fs = require("fs")
fs.writeFileSync("app.pid", process.pid)
http.createServer(function(req, res)
{
res.writeHead(200, {"Content-Type": "text/plain"})
res.end("Test")
}).listen(3000)
console.log("App A is running, PID", process.pid)
root@server:~# node /var/www/a/app.js
App A is running, PID 18517
^Z
[1]+ Stopped node /var/www/a/app.js
root@server:~# pidof node
18517
root@server:~# kill -9 `pidof node`
root@server:~# fg
-su: fg: job has terminated
[1]+ Killed node /var/www/a/app.js
root@server:~# rm /var/www/a/app.pid
root@server:~# start-stop-daemon --start --pidfile /var/www/a/app.pid --chdir /var/www/a --chuid www-data:www-data --background --exec /opt/iojs/bin/node app.js --test
Would start /opt/iojs/bin/node app.js (as user www-data[33], and group www-data[33]).
root@server:~# start-stop-daemon --start --pidfile /var/www/a/app.pid --chdir /var/www/a --chuid www-data:www-data --background --exec /opt/iojs/bin/node app.js
root@server:~# pidof node
root@server:~# start-stop-daemon --start --pidfile /var/www/a/app.pid --chdir /var/www/a --chuid www-data:www-data --background --exec app.js --test
Would start app.js (as user www-data[33], and group www-data[33]).
Antwort1
start
Der Befehl start-stop-daemon verwendet --exec
, um die auszuführende Binärdatei zu bestimmen (in Ihrem Fall /opt/iojs/bin/node
). Um Argumente für diesen Befehl anzugeben, sollten Sie hinzufügen --
(in Ihrem Fall àpp.js
) :
Sie sollten es also so nennen:
start-stop-daemon --start --pidfile /var/www/a/app.pid --chdir /var/www/a --chuid www-data:www-data --background --exec /opt/iojs/bin/node -- app.js
Ich hoffe, das wird Ihr Problem lösen