Configuring SSL encryption and authentication

Learn how to set up SSL encryption and authentication for SRM.

Configuring SSL encryption and authentication for SRM can be achieved by adding the appropriate configuration properties to your srm.properties configuration file.
  1. Specify the security protocols:
    security.protocol = SSL
  2. Specify truststore information:
    ssl.truststore.location = /var/private/ssl/kafka.client.truststore.jks
    ssl.truststore.password = test1234
    
  3. Specify keystore information:
    ssl.keystore.location = /var/private/ssl/kafka.client.keystore.jks
    ssl.keystore.password = test1234
    ssl.key.password = test1234