Run "java -jar MyJar.jar" automatically on linux server, instead of on login and run from ssh

StackOverflow https://stackoverflow.com/questions/22250843

  •  11-06-2023
  •  | 
  •  

Frage

How can I run a Java .jar file, fx "java -jar MyJar.jar" automatically on a Linux server, instead every time I login and run it from ssh?

I am looking for some way to automatically execute that command, or something to that effect.

Also, how can I direct all output to some logfile? (I guess stdio in autostrt is unavailable.)

War es hilfreich?

Lösung 2

You can use the terminal hooks, like See this answers about the bashrc. When you make a login or open a new terminal on your server, the script will run and execute your script.

Andere Tipps

Since you reference "ssh", I'm gonna guess you are on *nix.

Have a look at cron

Redirecting output in *nix is easy, just use the ">" and "2>" redirections.

Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit StackOverflow
scroll top