Projet

Général

Profil

LDAP » Historique » Version 5

Patrice Nadeau, 2014-10-24 12:35

1 5 Patrice Nadeau
h1. LDAP
2 1 Patrice Nadeau
3 5 Patrice Nadeau
> Problème : #26
4 4 Patrice Nadeau
5 1 Patrice Nadeau
---
6
7 5 Patrice Nadeau
h2. Installation
8 1 Patrice Nadeau
9
<pre><code class="bash">
10
zyper install openldap2
11
</code></pre>
12
13 3 Patrice Nadeau
Si le serveur doit être accessible à partir d'une autre machine, ouvrir l'application dans le pare-feu :
14 2 Patrice Nadeau
<pre><code class="bash">
15
yast firewall services add service=service:ldap zone=EXT
16
</code></pre>
17
18
Démarrage
19
<pre><code class="bash">
20
# Not working yet with systemd or I've not found the way ...
21
# systemctl enable ldap
22
chkconfig ldap on
23
systemctl start ldap
24
</code></pre>
25
26 5 Patrice Nadeau
h2. Configuration
27 4 Patrice Nadeau
28
La configuration peut être faite avec YaST.
29
Cette documentation explique la méthode longue (mais complète).
30
31
Créer un fichier org.ldif
32
<pre><code class="bash">
33
# The Organization
34
dn: dc=example,dc=com
35
objectClass: dcObject
36
objectClass: organization
37
o: Example dc: example
38
39
# The organizational user container (user)
40
dn: ou=users,dc=example,dc=com
41
objectClass: organizationalUnit
42
ou: users
43
</code></pre>