Hallo!
Dank der Tipps im Forum bin ich schon viel weitergekommen, vielen Dank!
Aber:
Ich kann meine .jar-Datei Hello.jar zwar local starten, nicht aber die identische Kopie auf dem remote server (... jdk ist eigentlich installiert ...)
Woran könnte das denn liegen?
Danke und LG!
Chris
Dank der Tipps im Forum bin ich schon viel weitergekommen, vielen Dank!
Aber:
Ich kann meine .jar-Datei Hello.jar zwar local starten, nicht aber die identische Kopie auf dem remote server (... jdk ist eigentlich installiert ...)
Woran könnte das denn liegen?
Danke und LG!
Chris
Code:
// command: execute .jar
(base) My-MacBook-Pro:experiments magister$ java -jar Hello.jar
// .jar execution on local machine:
Hello world!
How are you?
fine // user input
Ah, so you're "fine".
// switching to remote server
(base) My-MacBook-Pro: experiments magister$ SSH root@85.xxx.xx.xx6
root@85.xxx.xx.xx6's password:
Welcome to Ubuntu 18.04.5 LTS (GNU/Linux 4.15.0 x86_64)
* Documentation: https://help.ubuntu.com
* Management: https://landscape.canonical.com
* Support: https://ubuntu.com/advantage
Last login: Wed Feb 10 11:45:30 2021 from 80.140.124.21
This server is powered by Plesk.
Run the 'plesk login' command and log in by browsing either of the links received in the output.
Use the 'plesk' command to manage the server. Run 'plesk help' for more info.
// navigating to directory
root@h2923319:~# cd test_directory
root@h2923319:~/test_directory#
// showing data in the directory
root@h2923319:~/test_directory# ls -ltra
insgesamt 12
drwx------ 7 root root 4096 Feb 9 03:16 ..
-rw-r--r-- 1 root root 0 Feb 9 23:57 gradlew.bat
-rw-r--r-- 1 root root 0 Feb 9 23:57 gradleww.bat
drwxr-xr-x 2 root root 4096 Feb 10 11:45 .
-rw-r--r-- 1 root root 1102 Feb 10 11:45 Hello.jar
// trying to execute .jar on remote server ... failure!
root@h2923319:~/test_directory# java -jar Hello.jar
-bash: java: Befehl nicht gefunden