Projet

Général

Profil

LDAP » Historique » Version 16

Patrice Nadeau, 2016-06-24 16:16

1 5 Patrice Nadeau
h1. LDAP
2 1 Patrice Nadeau
3 5 Patrice Nadeau
> Problème : #26
4 4 Patrice Nadeau
5 6 Patrice Nadeau
{{lastupdated_at}} {{lastupdated_by}}
6
7 7 Patrice Nadeau
openSUSE Leap 42.1
8
9 1 Patrice Nadeau
---
10 6 Patrice Nadeau
11
{{toc}}
12 1 Patrice Nadeau
13 5 Patrice Nadeau
h2. Installation
14 1 Patrice Nadeau
15
<pre><code class="bash">
16 14 Patrice Nadeau
zyper install yast2-auth-server krb5-client krb5-server
17 15 Patrice Nadeau
# Kerberos support
18
zypper install krb5-plugin-kdb-ldap
19 1 Patrice Nadeau
</code></pre>
20
21 3 Patrice Nadeau
Si le serveur doit être accessible à partir d'une autre machine, ouvrir l'application dans le pare-feu :
22 2 Patrice Nadeau
<pre><code class="bash">
23 8 Patrice Nadeau
yast firewall services add service=service:openldap zone=EXT
24 2 Patrice Nadeau
</code></pre>
25
26
Démarrage
27
<pre><code class="bash">
28 7 Patrice Nadeau
systemctl enable slapd,service
29
systemctl start slapd.service
30 2 Patrice Nadeau
</code></pre>
31
32 5 Patrice Nadeau
h2. Configuration
33 4 Patrice Nadeau
34 10 Patrice Nadeau
h3. YaST
35
36
<pre><code class="bash">
37 16 Patrice Nadeau
yast auth-server
38 10 Patrice Nadeau
</code></pre>
39
40 11 Patrice Nadeau
# Authentication Settings
41 12 Patrice Nadeau
## Configure
42 10 Patrice Nadeau
43
h3. CLI
44 4 Patrice Nadeau
45
Créer un fichier org.ldif
46
<pre><code class="bash">
47
# The Organization
48
dn: dc=example,dc=com
49
objectClass: dcObject
50
objectClass: organization
51
o: Example dc: example
52
53
# The organizational user container (user)
54
dn: ou=users,dc=example,dc=com
55
objectClass: organizationalUnit
56
ou: users
57
</code></pre>