Lesson 8

Date: 3/12/2009
Lightweight Directory Access Protocol (LDAP)
Linux for Engineering and IT applications


OpenLDAP installation

  • OpenLDAP can be downloaded from http://www.openldap.org, compiled and installed on major Unix systems
  • Linux Server Installation (Ubuntu packages):
    slapd
    ldap-utils
    migrationtools
    libldap2
    
    apt-get install slapd 
    apt-get install ldap-utils
    apt-get install migrationtools 
    apt-get install libldap2
    

  • Linux Client Installation (Ubuntu packages):
    ldap-utils
    libldap2
    libpam-ldap
    libnss-ldap
    
    apt-get install ldap-utils
    apt-get install libpam-ldap
    apt-get install libnss-ldap
    apt-get install libldap2
    



  • Take me to the Course Website