I recently enabled ldap synchronization in my Alfresco Community Edition instance (running 5.1).
I checked the logs and it appears that the sync is working fine. For my test, I setup an instance running OpenLDAP.
2016-10-20 20:22:39,925 INFO [security.sync.ChainingUserRegistrySynchronizer] [localhost-startStop-1] Synchronization,Category=directory,id1=ldap1,id2=6 User Creation and Association: Commencing batch of 0 entries
2016-10-20 20:22:39,925 INFO [security.sync.ChainingUserRegistrySynchronizer] [localhost-startStop-1] Synchronization,Category=directory,id1=ldap1,id2=6 User Creation and Association: Completed batch of 0 entries
2016-10-20 20:22:39,960 INFO [security.sync.ChainingUserRegistrySynchronizer] [localhost-startStop-1] Finished synchronizing users and groups with user registry 'ldap1'
It is showing zero above because an earlier run synced successfully. I was also able to verify this by checking the postgres database
COPY alf_authority (id, version, authority, crc) FROM stdin;
12 0 testuser1 1280826318
13 0 testuser2 2382010757
testuser1 and testuser2 are what I added on LDAP.
However, when I check the users added under admin tools (http://localhost:8080/share/page/console/admin-console/users
on my instance) I don't see these users
I've looked at many links and forums and this doesn't seem to be discussed. Is there anything I am missing?