Report this

What is the reason for this report?

How can I keep my server running when I power down the computer where I have set up the ssh session

Posted on February 8, 2016

I have never set up a server before but since Parse announced that they are closing down I thought I might give it a shot. I have followed along with this tutorial and have managed to migrate my Parse database across to digital ocean.

When I call npm run start everything works fine. I can query for data and create new objects all from my iOS app. But there is just one problem. How do I keep the server up and running even when the computer where the ssh session started has been powered down?

When I call npm run start this is what gets logged in terminal:

> parse-server-example@1.0.0 start /var/www/parse
> node index.js

[TypeError: Cannot read property 'Kerberos' of undefined]
DATABASE_URI not specified, falling back to localhost.
parse-server-example running on port 1337.

I know that this is probably a noob question and yes my knowledge is quite limited, so if you could help me then that would be great!

Thanks for your time!



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.

First, your link to the tutorial is broken. If you use this DO tutorial at Step 3, your output will look similar, except for the “type error”. If you want to keep testing in this mode while your console is disconnected, try

nohup npm start &

The nohup command will try to run the command without a tty (see man nohup). The output will usually be in a file named ‘nohup.out’ where you started the command.

To keep your node process running use forever

The developer cloud

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

Get started for free

Sign up and get $200 in credit for your first 60 days with DigitalOcean.*

*This promotional offer applies to new accounts only.