2013-04-24 15 views
6

Ich versuche, eine Knotenanwendung als Dienst mit Supervisord auszuführen.supervisord laufender Knoten als Dienst

Wenn ich gehe zu/opt/uptime und laufen:

node app.js 

Meine Anwendung im Vordergrund beginnt. Sobald ich Strg + C drücke, stirbt es. Wie erwartet.

Ich habe Supervisor installiert und dies dem Config hinzugefügt:

[program:uptime] 
command=/usr/local/bin/node app.js 
directory=/opt/uptime/ 

ich Supervisor erfolgreich starten kann, aber wenn ich supervisorctl Status bekomme ich:

uptime   BACKOFF Exited too quickly (process log may have details) 

Hier werden die Protokolldateien sind:

/var/log/supervisor/supervisord.log

2013-04-25 09:37:10,854 CRIT Supervisor running as root (no user in config file) 
2013-04-25 09:37:10,866 INFO /var/tmp/supervisor.sock:Medusa (V1.1.1.1) started at Thu Apr 25 09:37:10 2013 
Hostname: <unix domain socket> 
Port:/var/tmp/supervisor.sock 
2013-04-25 09:37:10,914 CRIT Running without any HTTP authentication checking 
2013-04-25 09:37:10,915 INFO daemonizing the process 
2013-04-25 09:37:10,917 INFO supervisord started with pid 28099 
2013-04-25 09:37:10,918 INFO spawned: 'uptime' with pid 28101 
2013-04-25 09:37:11,015 INFO exited: uptime (exit status 1; not expected) 
2013-04-25 09:37:11,016 INFO received SIGCLD indicating a child quit 
2013-04-25 09:37:12,019 INFO spawned: 'uptime' with pid 28103 
2013-04-25 09:37:12,082 INFO exited: uptime (exit status 1; not expected) 
2013-04-25 09:37:12,082 INFO received SIGCLD indicating a child quit 
2013-04-25 09:37:14,086 INFO spawned: 'uptime' with pid 28105 
2013-04-25 09:37:14,153 INFO exited: uptime (exit status 1; not expected) 
2013-04-25 09:37:14,154 INFO received SIGCLD indicating a child quit 
2013-04-25 09:37:17,157 INFO spawned: 'uptime' with pid 28107 
2013-04-25 09:37:17,220 INFO exited: uptime (exit status 1; not expected) 
2013-04-25 09:37:17,220 INFO received SIGCLD indicating a child quit 
2013-04-25 09:37:18,221 INFO gave up: uptime entered FATAL state, too many start retries too quickly 
2013-04-25 09:37:20,372 INFO localhost:0 - - [25/Apr/2013:14:37:20 -0600] "POST /RPC2 HTTP/1.0" 200 254 
2013-04-25 09:37:20,374 INFO localhost:0 - - [25/Apr/2013:14:37:20 -0600] "POST /RPC2 HTTP/1.0" 200 1236 
+0

Und was sagt das Prozessprotokoll? – NilsH

+0

Ich habe die ursprüngliche Frage mit den Protokollen bearbeitet ... Sollte einfacher zu lesen sein. – ipengineer

+0

Haben Sie /var/log/supervisord/uptime-stderr-XXXX.log? Was sagt es? – spotirca

Antwort

1

Wenn ich richtig verstehe, sollte der Code wie folgt aussehen:

Wenn directory =/usr/local/bin /:

[program:uptime] 
directory = /usr/local/bin/ 
command = node app.js 

Wenn directory =/opt/uptime /:

[program:uptime] 
directory = /opt/uptime/ 
command = node app.js