I need to run a piece of java code on a linux server everyday at a specific time.
For now I am testing it on a Ubuntu desktop by running it from the terminal and its functioning properly and as required. For scheduling, I have used the library from here.
On the actual server, what would be the correct way to run this as a process ?
I mean, on my desktop, i run the code from terminal specifying a time close to current one, test it for the first time and then stop it (^Z).
On the server would it be a right way to just push it to the background ? I am sure there must be a better way of achieving this.
Thanks