DEV Community

Sathik
Sathik

Posted on

Background process in SSH

What is SSH ?

SSH, also known as Secure Shell or Secure Socket Shell. A secure way to access a computer over an unsecured network and also used for managing systems and appication remotely.

How to keep running ember server in ssh ?

Screen is one way to keep a process running even after closing SSH connection. Like most things in Linux there are more ways to keep a process running even after closing SSH connection.
For more

screen is the best solution for keep running the ember server in ssh, even after the ssh connection closed.

How to keep running node server in ssh ?

NPM (Node Package Manager) have bundles of packages to run server in background. pm2 (process manager) and forever are the stable packages to use for background process.

P.S: This is my first blog. Please correct me, if am wrong.

Top comments (0)