== Installation ==
1
| yum install openldap-servers openldap-clients |
== Configuration ==
Edit your ldap.conf file and enter the IP address or domain name of your server:
1
2
3
| vi /etc/openldap/ldap.confURI ldap://88.88.88.75BASE dc=my-domain,dc=com |
Copy the sample files from /usr/share/openldap to /etc/openldap and var/lib/ldap
1
2
| cp /usr/share/openldap-servers/slapd.conf.obsolete /etc/openldap/slapd.confcp /usr/share/openldap-servers/DB_CONFIG.example /var/lib/ldap/DB_CONFIG |
Setup a new LDAP Admin password:
1
2
3
4
| slappasswdNew password:Re-enter new password:{SSHA}xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx |
Copy the encrypted password from STDOUT as it will need to be put in to configuration.
=== /etc/openldap/slapd.conf ===
Search and replace the “dc=my-domain” with “dc=my-domain”
replace the rootpw password with above encrypted password so it looks like
replace the rootpw password with above encrypted password so it looks like
1
| rootpw {SSHA}xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx |
Here is the config file in use
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
| ## See slapd.conf(5) for details on configuration options.# This file should NOT be world readable.#include /etc/openldap/schema/corba.schemainclude /etc/openldap/schema/core.schemainclude /etc/openldap/schema/cosine.schemainclude /etc/openldap/schema/duaconf.schemainclude /etc/openldap/schema/dyngroup.schemainclude /etc/openldap/schema/inetorgperson.schemainclude /etc/openldap/schema/java.schemainclude /etc/openldap/schema/misc.schemainclude /etc/openldap/schema/nis.schemainclude /etc/openldap/schema/openldap.schemainclude /etc/openldap/schema/ppolicy.schemainclude /etc/openldap/schema/collective.schema# Allow LDAPv2 client connections. This is NOT the default.allow bind_v2# Do not enable referrals until AFTER you have a working directory# service AND an understanding of referrals.#referral ldap://root.openldap.orgpidfile /var/run/openldap/slapd.pidargsfile /var/run/openldap/slapd.argsloglevel -1# Load dynamic backend modules# - modulepath is architecture dependent value (32/64-bit system)# - back_sql.la overlay requires openldap-server-sql package# - dyngroup.la and dynlist.la cannot be used at the same time# modulepath /usr/lib/openldapmodulepath /usr/lib64/openldap# moduleload accesslog.la# moduleload auditlog.la# moduleload back_sql.la# moduleload chain.la# moduleload collect.la# moduleload constraint.la# moduleload dds.la# moduleload deref.la# moduleload dyngroup.la# moduleload dynlist.lamoduleload memberof.la# moduleload pbind.la# moduleload pcache.la# moduleload ppolicy.la# moduleload refint.la# moduleload retcode.la# moduleload rwm.la# moduleload seqmod.la# moduleload smbk5pwd.la# moduleload sssvlv.la# moduleload syncprov.la# moduleload translucent.la# moduleload unique.la# moduleload valsort.la# The next three lines allow use of TLS for encrypting connections using a# dummy test certificate which you can generate by running# /usr/libexec/openldap/generate-server-cert.sh. Your client software may balk# at self-signed certificates, however.TLSCACertificatePath /etc/openldap/certs#TLSCertificateFile "\"OpenLDAP Server\""#TLSCertificateKeyFile /etc/openldap/certs/passwordTLSCertificateFile /etc/pki/tls/certs/slapd.pemTLSCertificateKeyFile /etc/pki/tls/certs/slapd.pem# Sample security restrictions# Require integrity protection (prevent hijacking)# Require 112-bit (3DES or better) encryption for updates# Require 63-bit encryption for simple bind# security ssf=1 update_ssf=112 simple_bind=64# Sample access control policy:# Root DSE: allow anyone to read it# Subschema (sub)entry DSE: allow anyone to read it# Other DSEs:# Allow self write access# Allow authenticated users read access# Allow anonymous users to authenticate# Directives needed to implement policy:# access to dn.base="" by * read# access to dn.base="cn=Subschema" by * read# access to *# by self write# by users read# by anonymous auth## if no access controls are present, the default policy# allows anyone and everyone to read anything but restricts# updates to rootdn. (e.g., "access to * by * read")## rootdn can always read and write EVERYTHING!# enable on-the-fly configuration (cn=config)database configrootdn "cn=admin,cn=config"rootpw {SSHA}xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxaccess to * by dn.exact="gidNumber=0+uidNumber=0,cn=peercred,cn=external,cn=auth" manage by * none# enable server status monitoring (cn=monitor)database monitoraccess to * by dn.exact="gidNumber=0+uidNumber=0,cn=peercred,cn=external,cn=auth" read by dn.exact="cn=Manager,dc=my-domain,dc=com" read by * none######################################################################## database definitions#######################################################################database bdbsuffix "dc=my-domain,dc=com"rootdn "cn=Manager,dc=my-domain,dc=com"# Cleartext passwords, especially for the rootdn, should# be avoided. See slappasswd(8) and slapd.conf(5) for details.# Use of strong authentication encouraged.# secret# {crypt}ijFYNcSNctBYgrootpw {SSHA}xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxaccess to dn.subtree="dc=my-domain,dc=com" by self write by set="[cn=Administrators,ou=groups,dc=my-domain,dc=com]/member* & user" write by set="[cn=Operators,ou=groups,dc=my-domain,dc=com]/member* & user" read by * breakaccess to attrs=userPassword by anonymous auth by self =rwdx by set="user & [cn=Administrators,ou=groups,dc=my-domain,dc=com]/member*" manage by dn.children="ou=Special Accounts,dc=my-domain,dc=com" auth#access to attrs=uid,userPassword,mail# by self write# by set="[cn=Administrators,ou=group,dc=my-domain,dc=com]/member* & user" manage# by set="[cn=Operators,ou=group,dc=my-domain,dc=com]/member* & user" read# by * none#access to *# by set="user & [cn=Administrators,ou=groups,dc=my-domain,dc=com]/member*" manage# by * break#access to dn.children="ou=people,dc=my-domain,dc=com"# attrs=givenName,sn,displayName,cn,telephoneNumber,fax,postalAddress,homePhone,homePostalAddress,mobile,pager,postalCode,postOfficeBox,preferredLanguage,streetAddress,l,st# by self write# by * break#access to dn.children="ou=people,dc=my-domain,dc=com"# attrs=uid,uidNumber,gidNumber,mail,telephoneNumber,mobile,departmentNumber,manager,title,initials,givenName,sn,displayName,cn,fax,organizationName,organizationalUnitName,pager,postalAddress,l,st,c# by * read# The database directory MUST exist prior to running slapd AND# should only be accessible by the slapd and slap tools.# Mode 700 recommended.directory /var/lib/ldap# Indices to maintain for this databaseindex objectClass eq,presindex ou,cn,mail,surname,givenname eq,pres,subindex uidNumber,gidNumber,loginShell eq,presindex uid,memberUid eq,pres,subindex nisMapName,nisMapEntry eq,pres,suboverlay memberofcachesize 10000checkpoint 1024 15# Replicas of this database#replogfile /var/lib/ldap/openldap-master-replog#replica host=ldap-1.example.com:389 starttls=critical# bindmethod=sasl saslmech=GSSAPI# authcId=host/ldap-master.example.com@EXAMPLE.COM |
create a new file root.ldif with following content
1
2
3
4
5
6
7
8
9
10
11
12
13
| dn: dc=my-domain,dc=comobjectClass: dcObjectobjectClass: organizationdc: my-domaino: my-domaindn: ou=groups,dc=my-domain,dc=comou: groupsobjectClass: organizationalUnitdn: ou=people,dc=my-domain,dc=comou: peopleobjectClass: organizationalUnit |
Remove everything in slapd.d dir and tell the slapd for root.ldif file
1
2
3
| rm -rf /etc/openldap/slapd.d/*slapadd -n 2 -l /root/root.ldifslaptest -f /etc/openldap/slapd.conf -F /etc/openldap/slapd.d |
Set the appropriate permissions:
1
2
| chown -R ldap:ldap /var/lib/ldapchown -R ldap:ldap /etc/openldap/slapd.d |
Make sure the service is active on the runlevel 3:
1
2
| chkconfig --level 235 slapd onservice slapd start |
== LDAPS ==
1
2
3
4
5
6
| cd /etc/pki/tls/certsrm slapd.pemmake slapd.pemchmod 640 slapd.pemchown :ldap slapd.pemln -s /etc/pki/tls/certs/slapd.pem /etc/openldap/cacerts/slapd.pem |
1
2
| vi /etc/sysconfig/ldapSLAPD_LDAPS=yes |
1
2
3
4
| vi /etc/openldap/slapd.confTLSCACertificateFile /etc/pki/tls/certs/ca-bundle.crtTLSCertificateFile /etc/pki/tls/certs/slapd.pemTLSCertificateKeyFile /etc/pki/tls/certs/slapd.pem |
1
2
3
| vi /etc/openldap/ldap.confTLS_CACERTDIR /etc/openldap/cacertsTLS_REQCERT never |
== Test ==
Test if everything is up and working fine:
1
2
3
4
5
6
7
| rm -rf /etc/openldap/slapd.d/*slaptest -f /etc/openldap/slapd.conf -F /etc/openldap/slapd.dchown -R ldap:ldap /etc/openldap/slapd.dservice slapd restartldapsearch -x -ZZ -h localhost #(TLS)ldapsearch -x -H ldaps://localhost #(SSL) |
Thanks to:
אין תגובות:
הוסף רשומת תגובה