Project

General

Profile

Actions

Kerberos LDAP

install

  1. Install packages
    apt-get install slapd ldap-utils libsasl2-modules-gssapi-mit
  2. Configure the administrator password for slapd (https://help.ubuntu.com/community/OpenLDAPServer)
    slappasswd
    1. Set password to: waynegretzky
    2. Take the output: {SSHA}7UP8FDS0CZ8H8Hj8XPEtYkoeg0Cgy9bh
  1. Create organizational units in initial file @tree.ldif
    dn: ou=users,dc=dev,dc=ru,dc=is
    objectClass: organizationalUnit
    ou:users
    
    dn: ou=groups,dc=dev,dc=ru,dc=is
    objectClass: organizationalUnit
    ou: groups
    
  2. Then add it to the ldap database
    ldapadd -x -D "cn=admin,dc=dev,dc=ru,dc=is" -W -f tree.ldif
  3. These directions are unfinished due to inconsistencies in the config files and Ubuntu 10.04. LDAP is not critical to AFS, so installation and instructions will be delayed for now --foley

Updated by Joseph Foley over 9 years ago · 1 revisions