I have application, which analyzing website by scheduler. Its a jar file, and works fine when I run it on my pc (I start it through console). I rent cloud server on Ubuntu 19.10 to deploy my app there. I use Putty to connect to server. I already figured how to install jdk on it:
root@5-63-152-221:~# java -version
openjdk version "11.0.5-ea" 2019-10-15
OpenJDK Runtime Environment (build 11.0.5-ea+10-post-Ubuntu-0ubuntu1)
OpenJDK 64-Bit Server VM (build 11.0.5-ea+10-post-Ubuntu-0ubuntu1, mixed mode, sharing)
And through wget (link) command downloaded my jar file from file hosting to server. In logs it says that file saved in "angF". After commnad ls:
root@5-63-152-221:~# ls
angF virt-sysprep-firstboot.log
How can I find my app on my server and run it? It's my first meeting with Ubuntu, and hope to get some useful advices.