The documentation at http://kafka.apache.org/documentation/#security describes the process of enabling security in Kafka.
It describes the certificates to be in JKS format. Is it possible to use PEM formatted certificates with Kafka?
-Yash
The documentation at http://kafka.apache.org/documentation/#security describes the process of enabling security in Kafka.
It describes the certificates to be in JKS format. Is it possible to use PEM formatted certificates with Kafka?
-Yash
No you cannot directly use PEM certificates with Kafka.
This is not a Kafka restriction, it's just that all of the "mainstream" JVMs (HotSpot, OpenJDK, J9) use JKS.
See Import .key and .pem file to jks file and use in Java/Spring for the required steps to import a PEM file into a JKS store.