Restrict access to Kafka metadata in Zookeeper

Learn how to restrict access to Kafka metadata in Zookeeper.

Locking down znodes in Zookeeper can be used to protect Kafka metadata against unauthorized access. Direct manipulation of metadata in Zookeeper is not only dangerous for the health of the cluster, but can also serve as an entry point for malicious users to gain elevated access who can then alter the owner or renewer of delegation tokens. Access to Kafka metadata in Zookeeper is restricted by default. Follow these steps if you have previously unlocked access, but want to re-enable access restrictions.

A secure Kafka cluster with Kerberos authentication enabled is required.

  1. Enable the use of secure ACLs:
    This can be achieved by setting the zookeeper.set.acl configuration parameter to true.
    1. In Cloudera Manager select the Kafka service.
    2. Select Configuration.
    3. Find the Enable Zookeeper ACL property.
    4. Set the property to true by checking the checkbox next to the name of the role group.
  2. Perform a Rolling Restart:
    1. Return to the Home page by clicking the Cloudera Manager logo.
    2. Check the Restart roles with stale configurations only checkbox and click Rolling restart.
    3. Click Close when the restart has finished.
  3. Pass the JAAS configuration file location as a JVM parameter through a command line interface.
    You can do this by setting the value of the KAFKA_OPTS environment variable to -Djava.security.auth.login.config=[PATH_TO_JAAS.CONF].
    export KAFKA_OPTS="-Djava.security.auth.login.config=[PATH_TO_JAAS.CONF]"

    Replace [PATH_TO_JAAS.CONF] with the path to your JAAS configuration file.

  4. Run the zookeeper-security-migration tool with the zookeeper.acl option set to secure.
    zookeeper-security-migration --zookeeper.connect [HOSTNAME]:[PORT]/[ZOOKEEPER_KAFKA_CHROOT] --zookeeper.acl secure

    Replace [ZOOKEEPER_KAFKA_CHROOT] with the value of the zookeeper.chroot property. To view the value of the property, in Cloudera Manager go to Kafka > Configuration and search for zookeeper.chroot.

    The tool traverses the corresponding sub-trees changing the ACLs of the znodes.

  5. Reset the ACLs on the root node to allow full access:

    Resetting the ACLS on the root node is required because the zookeeper-security-migration tool also changes the ACLs on the root znode. This leads to the failure of the Zookeeper canary tests, which subsequently makes the service display as unhealthy in Cloudera Manager.

    1. Change the JVMFLAGS environment variable to -Djava.security.auth.login.config=[PATH_TO_JAAS.CONF].
      export JVMFLAGS="-Djava.security.auth.login.config=[PATH_TO_JAAS.CONF]"
    2. Start the zookeeper client.
      zookeeper-client -server $(hostname -f):2181
    3. Enter the following to reset the ACLs of the root node.
      setAcl / world:anyone:crdwa
Kafka metadata in Zookeeper is restricted via ACLS. Administrative operations, for example topic creation, deletion, any configuration changes and so on, can only be performed by authorized users.