質問

In SSH if I run:

$ node server

My web app works fine until I close the SSH session. What is the command or configuration needed so that it runs all the time without an active SSH session?

役に立ちましたか?

解決

you can run it like:

nohup node server

Or you can install forever.

npm -g install forever
forever start server

他のヒント

If you have multiple nodejs, you can use pm2 to manage them.

Or, use screen or tmux to keep the nodejs running while detach the session.

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top