Sto cercando di concedere all'eseguibile Java il diritto di aprire porte inferiori a 1024 su Linux. Ecco la configurazione
/home/test/java
contiene Oracle Server JRE 7.0.25- CentOS 6.4
Ecco cosa restituisce getcap
[test@centos6 java]$ pwd
/home/test/java
[test@centos6 java]$ getcap bin/java
bin/java = cap_net_bind_service+ep
[test@centos6 java]$ getcap jre/bin/java
jre/bin/java = cap_net_bind_service+ep
Il tentativo di eseguire java genera il seguente errore.
[test@centos6 java]$ bin/java
bin/java: error while loading shared libraries: libjli.so: cannot open shared object file: No such file or directory
[test@centos6 java]$ jre/bin/java
jre/bin/java: error while loading shared libraries: libjli.so: cannot open shared object file: No such file or directory
È possibile eseguire Java 7_u25 quando al binario sono stati dati privilegi elevati con setcap, in tal caso come?
JDK-6919633: Runtime non supporta POSIX capacità di file (Funzionalità del AKA Linux) dice che
Note: when using the setcap the libraries needed by the java launcher
should be present in /usr/lib or any other "trusted" location that the
runtime loader (rtld) uses to find shared libraries.
Come posso rendere attendibili le librerie condivise?