Skip to content

A Django management command for synchronizing users and groups from an authoritative LDAP server

License

Notifications You must be signed in to change notification settings

alexsilva/django-ldap-sync

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

django-ldap-sync

django-ldap-sync provides a Django management command that synchronizes LDAP users and groups from an authoritative server. It performs a one-way synchronization that creates and/or updates the local Django users and groups.

This synchronization is performed each time the management command is run and can be fired manually on demand, via an automatic cron script or as a periodic Celery task.

Quickstart

  1. Install the application:

    pip install django-ldap-sync
    
  2. Append it to the installed apps:

    INSTALLED_APPS = (
        # ...
        'ldap_sync',
    )
    
  3. Configure the required settings.

  4. Run the synchronization management command:

    manage.py syncldap
    

For more information on installation and configuration, see the included documentation or read the documentation online at django-ldap-sync.readthedocs.org.

About

A Django management command for synchronizing users and groups from an authoritative LDAP server

Resources

License

Stars

Watchers

Forks

Packages

No packages published