[Question] Connect with TLS #683
-
Hi, we are working with Amazon MSK as our Kafka Cluster and running |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
I don't have any amazon account to test but looking here, it seems that there is some sample in Create a client.properties file and put the following in it , must be like that I think : akhq:
connections:
ssl-dev:
properties:
security.protocol=SSL
ssl.truststore.location=/tmp/kafka.client.truststore.jks
ssl.keystore.location=/tmp/kafka.client.keystore.jks
ssl.keystore.password=<password that you used for the keystore when running the jar file>
ssl.key.password=<password that you used for the keystore when running the jar file>
ssl.truststore.password=<truststore password, default = changeit> Just keep in mind you need to pass the same properties as a Java client |
Beta Was this translation helpful? Give feedback.
I don't have any amazon account to test but looking here, it seems that there is some sample in Create a client.properties file and put the following in it , must be like that I think :
Just keep in mind you need…