Scale up as you grow — whether you're running one virtual machine or ten thousand.

From GPU-powered inference and Kubernetes to managed databases and storage, get everything you need to build, scale, and deploy intelligent applications.

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!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
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.