메인 콘텐츠로 건너뛰기

Active Directory

Active Directory Syncer enables automatic user synchronization from Microsoft Active Directory to Casdoor. The syncer connects to Active Directory via LDAP/LDAPS protocol to retrieve user information and keep your user directory synchronized.

Prerequisites

To use the Active Directory syncer, you need:

  • An Active Directory domain controller accessible via network
  • A service account with read permissions to the user directory
  • The Base DN (search base) for your user directory
  • Network connectivity on LDAP port 389 (or LDAPS port 636 for secure connection)

Configuration

To create an Active Directory syncer in Casdoor:

  1. Navigate to the Syncers tab
  2. Click Add to create a new syncer
  3. Fill in the following required fields:
FieldDescriptionExample
OrganizationThe Casdoor organization where users will be importedmy-org
NameA unique identifier for this syncerad-syncer
TypeSelect "Active Directory"Active Directory
ServerHostname or IP address of your AD domain controllerdc.example.com
LDAP PortLDAP port (389 for LDAP, 636 for LDAPS)389
Bind DNDistinguished name of the service accountCN=Service Account,CN=Users,DC=example,DC=com
PasswordPassword for the service accountyour-password
Base DNSearch base for usersDC=example,DC=com

Other database-related fields (Database type, Database, Table) are not used for Active Directory syncer and can be left empty.

For production environments, it's recommended to use LDAPS (port 636) for secure communication with Active Directory.

Field Mappings

The syncer automatically maps Active Directory user attributes to Casdoor user fields:

Active Directory FieldCasdoor FieldDescription
objectGUIDIdUser's unique identifier (GUID)
sAMAccountNameNameUsername (login name)
displayNameDisplayNameDisplay name
givenNameFirstNameFirst name
snLastNameLast name
mailEmailEmail address
mobilePhoneMobile phone number
titleTitleJob title
departmentAffiliationDepartment
userAccountControlIsForbiddenAccount status
정보

The userAccountControl attribute is used to determine account status. Bit 2 of this value indicates if the account is disabled. Disabled accounts in Active Directory will be marked as forbidden in Casdoor.

Running the Syncer

After configuration:

  1. Click Test Connection to verify connectivity and credentials
  2. Enable the syncer by toggling Is enabled
  3. Click Sync to trigger an immediate synchronization
  4. The syncer will automatically fetch all user accounts from the specified Base DN

The syncer uses the LDAP filter (&(objectClass=user)(objectCategory=person)) to retrieve only user accounts, excluding computer accounts and other AD objects.

Troubleshooting

If the syncer fails to connect or retrieve users, check the following:

  • Verify network connectivity to the AD domain controller on the LDAP port
  • Ensure the Bind DN and password are correct
  • Confirm the service account has read permissions on the Base DN
  • Check that the Base DN is correctly formatted (e.g., DC=example,DC=com)
  • Verify firewall rules allow LDAP traffic from Casdoor to the domain controller