Just talked to adobrin, we found a bug in zmldappasswd (my bug, of course
)
Here's the fix:
At the bottom of the file, there's this command:
ldappasswd -c -w ${ldap_root_password} -D ${zimbra_ldap_userdn} \
-x -s ${zimbra_ldap_password} ${zimbra_ldap_userdn} > /dev/null 2>&1
That should change to:
ldappasswd -w ${ldap_root_password} -D ${zimbra_ldap_userdn} \
-H ${ldap_master_url} \
-x -s ${zimbra_ldap_password} ${zimbra_ldap_userdn} > /dev/null 2>&1
NOTE - 2 changes in there, add the "-H ${ldap_master_url}" and REMOVE the "-c"