cancel
Showing results for 
Search instead for 
Did you mean: 

Alfresco Community 5.0c authentication via Windows Server 2012 Active Directory

hunter
Champ in-the-making
Champ in-the-making
Hi everybody.

I need help for Alfresco Community 5.0c on RedHat 6.6 authentication users with Windows Server 2012 Active Directory.

thanks.
1 REPLY 1

danieln
Champ in-the-making
Champ in-the-making
Hello HunteR,

my intsallation of Alfresco runs on a Windows Server, but i think it will work the same way on RedHat

here are the lines I added to "alfresco-global.properties":

authentication.chain=alfrescoNtlm1:alfrescoNtlm,ldap-ad1:ldap-ad

ldap.authentication.allowGuestLogin=false
ldap.authentication.userNameFormat=%s@[domainname] #this parameter allows you to log on with the simple user name (without @[domainname])
ldap.authentication.java.naming.provider.url=ldap://[hostname].[domainname]:389
ldap.authentication.defaultAdministratorUserNames=[ActiveDirectoryAdmin]
ldap.synchronization.java.naming.security.principal=[ActiveDirectoryAdmin]@[domainname]
ldap.synchronization.java.naming.security.credentials=[password]
ldap.synchronization.groupSearchBase=dc=[domainname],dc=[suffix]
ldap.synchronization.userSearchBase=cn=Alfresco Service,ou=Serviceuser,ou=Users,dc=[domainname],dc=[suffix]

if your domainname is "company.com" the groupSearchBase and userSearchbase parameter would be dc=company,dc=com
everywhere else I use [domainname] as "company.com"

with this configuration you are able to log on to Alfresco with your Active Directory credentials.
useraccounts will be created after first login.