1

I am using Ngrok (https://ngrok.com/) application on my Godaddy Linux server to create a local-tunnel to my host.

However, I access the server through SSH and run the application but when I exit from the SSH connection the application stops running, so is there way to keep Ngrok application running (as a service maybe) on a Linux server?

NOTE: I don't have root access on Godaddy server, so the whatever the solution should be able to proceed as a non root user

DeadManSpirit
  • 2,036
  • 2
  • 20
  • 27

1 Answers1

0

You need to use GNU screen. screen

When you install screen and open it run your commands inside then exit it. There are a lot of infos about that in google so check it there

and then you are able to exit with CTRL + A then CTRL + D

hope it helped you

MASSKA
  • 11
  • 2
  • `screen` is one of many tools to solve this. A more detailed answer how to use `screen` would be helpful – Klaus Dec 26 '20 at 14:02
  • When you install screen and open it run your commands inside then exit it. There are a lot of infos about that in google – MASSKA Aug 15 '22 at 11:26