1

i'm using a java application on my terminal wich listen to a specific port for specific connections .

i'm using it in terminal like :

java -jar Server.jar

everything works perfectly except that when i disconnect from the ssh session ( using putty ) , the connection get lost and the server stops .

i want to let the connection or the server open even after ending the ssh session .

Huster
  • 111

1 Answers1

6

Answer is in top 1 related question

How to keep processes running after ending ssh session?

nohup java -jar Server.jar &

Tomas F.
  • 161