yahoo / CMAK

CMAK is a tool for managing Apache Kafka clusters
Apache License 2.0
11.81k stars 2.5k forks source link

LDAPS failing due to certs #699

Open Prinzka opened 4 years ago

Prinzka commented 4 years ago

The system has the correct root CA installed, but kafka-manager does not appear to use this for LDAPS. What option needs to be set in application.conf to point it to the root CA?

bseenu commented 4 years ago

@Prinzka Just double check if your root cert has been imported to cacerts to the active jdk

 %  ~  echo $JAVA_HOME                                                                                                                                                                                              
/Library/Java/JavaVirtualMachines/jdk1.8.0_231.jdk/Contents/Home
 %  ~  cd /Library/Java/JavaVirtualMachines/jdk1.8.0_231.jdk/Contents/Home/jre/lib/security/                                                                                                                        
 %  /Library/Java/JavaVirtualMachines/jdk1.8.0_231.jdk/Contents/Home/jre/lib/security  keytool 
 -list -keystore cacerts

If you have not imported the cert there, import it using keytool

-srini