By oflords
I know if I have two different consoles open I can easily run two instances of a node.js but is it possible to run two using one console? I use the default droplet console as I cannot have puTTY open 24/7 on my computer, and the "forever start --spinSleepTime 10000 " does not work for me. Please help!!!
Thanks alot!
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
Yes you can. The thing you need to note is that you can’t run two different node apps on same port.
Why this is not working for you I’m not sure, you can specify which file you want to start:
- forever start example.js --spinSleepTime 10000
Maybe specifying redundancy can help (how much times script can be run, there is example in docs):
- forever -m5 start server.js --spinSleepTime 10000
You can look at forever docs a their GitHub for more explanation.
If you really can’t make it work, try pm2. There is great DigitalOcean tutorial about using it.
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Full documentation for every DigitalOcean product.
The Wave has everything you need to know about building a business, from raising funding to marketing your product.
Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.
New accounts only. By submitting your email you agree to our Privacy Policy
Scale up as you grow — whether you're running one virtual machine or ten thousand.
Sign up and get $200 in credit for your first 60 days with DigitalOcean.*
*This promotional offer applies to new accounts only.