Estou tentando conceder ao executável java o direito de abrir portas abaixo de 1024 no Linux. Aqui está a configuração
/home/test/java
contém o Oracle Server JRE 7.0.25- CentOS 6.4
Aqui está o que getcap retorna
[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
Tentar executar o java dá o seguinte erro.
[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
É possível executar o Java 7_u25 quando o binário recebeu privilégios elevados com o setcap; se sim, como?
JDK-6919633: O tempo de execução não suporta os recursos de arquivo POSIX (AKA Linux Capabilities) diz 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.
Como faço para confiar nas bibliotecas compartilhadas?