In my zoo.cfg file, I have enabled SSL both for quorum communication and
client connections:

    sslQuorum=true
    serverCnxnFactory=org.apache.zookeeper.server.NettyServerCnxnFactory
    ssl.quorum.keyStore.location=/path/to/keystore.jks
    ssl.quorum.keyStore.password=mypassword
    ssl.quorum.trustStore.location=/path/to/truststore.jks
    ssl.quorum.trustStore.password=mypassword

    ssl.keyStore.location=/path/to/keystore.jks
    ssl.keyStore.password=mypassword
    ssl.trustStore.location=/path/to/truststore.jks
    ssl.trustStore.password=mypassword

If I subsequently edit the contents of the keystore or the truststore
file, do I need to restart ZooKeeper for the change to take effect?

(Apache ZooKeeper version 3.6.3)

Reply via email to