Estoy tratando de otorgar al ejecutable de Java el derecho de abrir puertos por debajo de 1024 en Linux. Aquí está la configuración
/home/test/java
contiene el servidor Oracle JRE 7.0.25- CentOS 6.4
Esto es lo que devuelve 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
Intentar ejecutar java da el siguiente error.
[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
¿Es posible ejecutar Java 7_u25 cuando el binario ha recibido privilegios elevados con setcap, si es así, cómo?
JDK-6919633: Runtime no es compatible con las capacidades de archivo POSIX (AKA Linux Capabilities) dice que
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.
¿Cómo hago que las bibliotecas compartidas sean confiables?