Los siguientes pasos crean el problema:
Configure LD_LIBRARY_PATH para incluir las bibliotecas de apache:
export LD_LIBRARY_PATH=/path/to/apache-2.4/apache/lib:/lib64
Iniciar servidor apache
Realice una solicitud (como cliente) con autenticación kerberos que requiera ejecutar kinit
kinit -kt /path/to/kerberos.kt principal@REALM.COM
El error ocurre debido a:
kinit: relocation error: kinit: symbol krb5_get_init_creds_opt_set_pac_request, version krb5_3_MIT not defined in file libkrb5.so.3 with link time reference
Apache lib incluye bibliotecas kerberos que deben incluirse después de /lib64. Exporte /lib64 antes del directorio de la biblioteca de Apache. Consulte la solución
``` export LD_LIBRARY_PATH=/lib64:/path/to/apache-2.4/apache/lib ```