Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm trying to start two forever instances but it doesn't work

#Start node@4040 node@5050 con forever

description "node@4040 node@5050"

start on (local-filesystems and net-device-up IFACE=eth0)
stop on shutdown


script
    cd /var/node/
    exec forever start -l /var/node/logs/for5050.log -o /var/node/logs/out5050.log -e /var/node/logs/err5050.log app.js 5050
    exec forever start -l /var/node/logs/for4040.log -o /var/node/logs/out4040.log -e /var/node/logs/err4040.log app.js 4040
end script

What's the problem? Thank you.

share|improve this question

3 Answers

up vote 1 down vote accepted

Each process exec must be in its own conf file. So in your case, you need to create 2 upstart conf files for each of your nodejs programs. The same conf file cannot run multiple exec commands.

share|improve this answer
Since forever runs as a daemon I believe you will also need to add: expect fork See upstart.ubuntu.com/cookbook/#exec for the reason. – Technosophos Mar 6 at 20:37

Try giving them different names, e.g app1.js and app2.js

share|improve this answer
It doesn't work – Mario Dec 17 '12 at 2:15
But they work individually? – Hector Correa Dec 17 '12 at 3:50
Yes, but when I reboot the computer and the two instances are supposed to start, just one starts – Mario Dec 17 '12 at 13:27

With this I managed to get running the first forever instance but not the second one. I got it with two upstart scripts but now I want to know if is it possible to do what I wanted. Thank you.

#Start node@4040 node@5050 con forever

description "node@4040 node@5050"

start on (local-filesystems and net-device-up IFACE=eth0)
stop on shutdown


script
    exec sudo -u forever start -l /var/node/logs/for5050.log -o /var/node/logs/out5050.log -e /var/node/logs/err5050.log app.js 5050
    exec sudo -u forever start -l /var/node/logs/for4040.log -o /var/node/logs/out4040.log -e /var/node/logs/err4040.log app.js 4040
end script
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.