Difference between revisions of "Debian LDAP Server Installation"
From Supercomputación y Cálculo Científico UIS
(Created page with "= Debian LDAP Server Installation = 1) Instalar los paquetes apt-get install slapd ldap-utils 2) Configurar LDAP Ingrese la contraseña del administrador...") |
|||
Line 1: | Line 1: | ||
= Debian LDAP Server Installation = | = Debian LDAP Server Installation = | ||
− | 1) | + | 1) Install the following packages |
apt-get install slapd ldap-utils | apt-get install slapd ldap-utils | ||
− | 2) | + | 2) Configure LDAP. Debian installation scripts show a window where you can configure some parameters |
− | + | Set the LDAP administrator password | |
− | + | Retype the password | |
+ | |||
+ | |||
NOTA: Se crea una cuenta "admin" con el dn diguiendo el dominio DNS de la máquina | NOTA: Se crea una cuenta "admin" con el dn diguiendo el dominio DNS de la máquina |
Revision as of 20:54, 25 August 2014
Debian LDAP Server Installation
1) Install the following packages
apt-get install slapd ldap-utils
2) Configure LDAP. Debian installation scripts show a window where you can configure some parameters
Set the LDAP administrator password
Retype the password
NOTA: Se crea una cuenta "admin" con el dn diguiendo el dominio DNS de la máquina
3) Puede chequear la configuración con el comando
slapcat
4) Agregar un nuevo directorio.
4.1) Edite un archivo base.ldif y agregue las siguientes líneas
# create new # change to your own suffix for the field 'dc=server,dc=world' dn: ou=people,dc=uis,dc=edu,dc=co objectClass: organizationalUnit ou: people
dn: ou=groups,dc=uis,dc=edu,dc=co objectClass: organizationalUnit ou: groups
4.2) Agregue con el comando
ldapadd -x -D cn=admin,dc=uis,dc=edu,dc=co -W -f base.ldif