We configured Zeppelin LDAP sync using LdapRealm class
ldapRealm=org.apache.zeppelin.realm.LdapRealm
ldapRealm.contextFactory.systemUsername=ldapmanager@example.com
ldapRealm.contextFactory.systemPassword=mypassword
and the password in shiro=ini is now in plain text. How can we hide it? With ActiveDirectoryRealm we can use jceks
activeDirectoryRealm.hadoopSecurityCredentialPath=jceks://file/etc/zeppelin/conf/zeppelin.jceks
however, ldapRealm doesn't have that field and doesn't appear to support jceks. In the source code of LdapRealm the default password is given as
ldapRealm.contextFactory.systemPassword = S{ALIAS=ldcSystemPassword}
How to create that alias?
Tnx!