I've just setup a Linux CentOS server to run a Meteor application.
The first problem I come across now is starting the meteor process as a Daemon, so it's running in background and I can exit my SSH session.. When starting with meteor --production
I can't.
When using Ruby on Rails I could just start with rails s -d -p 80
and exit.
I found out that an app called screen and echo "meteor --production" | at
are options, but I do not have the at
command installed, and installing an app just for running it in background seems like a weird choice.
Do I really need to install screen
or at
? Are there any other options?