Sync usage with man page.
[netbsd-mini2440.git] / external / bsd / openldap / dist / doc / guide / admin / appendix-common-errors.sdf
blob7baf90348f4c6a6af2d5b2c16f1eebe5a5e9be52
1 # $OpenLDAP: pkg/openldap-guide/admin/appendix-common-errors.sdf,v 1.4.2.3 2008/02/11 23:26:39 kurt Exp $
2 # Copyright 2007-2008 The OpenLDAP Foundation, All Rights Reserved.
3 # COPYING RESTRICTIONS APPLY, see COPYRIGHT.
5 H1: Common errors encountered when using OpenLDAP Software
7 The following sections attempt to summarize the most common causes of LDAP errors 
8 when using OpenLDAP
10 H2: Common causes of LDAP errors
12 H3: ldap_*: Can't contact LDAP server
14 The {[B:Can't contact LDAP server}} error is usually returned when the LDAP 
15 server cannot be contacted. This may occur for many reasons:
17 * the LDAP server is not running; this can be checked by running, for example,
19 >      telnet <host> <port>
21 replacing {{<host>}} and {{<port>}} with the hostname and the port the server 
22 is supposed to listen on.
23 * the client has not been instructed to contact a running server; with OpenLDAP 
24 command-line tools this is accomplished by providing the -H switch, whose 
25 argument is a valid LDAP url corresponding to the interface the server is 
26 supposed to be listening on.
28 H3: ldap_*: No such object
30 The {{B:no such object}} error is generally returned when the target DN of the 
31 operation cannot be located. This section details reasons common to all 
32 operations. You should also look for answers specific to the operation 
33 (as indicated in the error message).
35 The most common reason for this error is non-existence of the named object. First, 
36 check for typos.
38 Also note that, by default, a new directory server holds no objects 
39 (except for a few system entries). So, if you are setting up a new directory 
40 server and get this message, it may simply be that you have yet to add the 
41 object you are trying to locate.
43 The error commonly occurs because a DN was not specified and a default was not 
44 properly configured.
46 If you have a suffix specified in slapd.conf eg.
48 >      suffix "dc=example,dc=com"
50 You should use
52 >      ldapsearch -b 'dc=example,dc=com' '(cn=jane*)'
54 to tell it where to start the search.
56 The {{F:-b}} should be specified for all LDAP commands unless you have an 
57 {{ldap.conf}}(5) default configured.
59 See {{ldapsearch}}(1), {{ldapmodify}}(1) 
61 Also, {{slapadd}}(8) and its ancillary programs are very strict about the 
62 syntax of the LDIF file. 
64 Some liberties in the LDIF file may result in an apparently successful creation 
65 of the database, but accessing some parts of it may be difficult.
67 One known common error in database creation is putting a blank line before the 
68 first entry in the LDIF file. {{B:There must be no leading blank lines in the 
69 LDIF file.}}
71 It is generally recommended that {{ldapadd}}(1) be used instead of {{slapadd}}(8) 
72 when adding new entries your directory. {{slapadd}}(8) should be used to bulk 
73 load entries known to be valid.
75 Another cause of this message is a referral 
76 ({SECT:Constructing a Distributed Directory Service}}) entry to an unpopulated 
77 directory. 
79 Either remove the referral, or add a single record with the referral base DN 
80 to the empty directory.
82 This error may also occur when slapd is unable to access the contents of its 
83 database because of file permission problems. For instance, on a Red Hat Linux 
84 system, slapd runs as user 'ldap'. When slapadd is run as root to create a 
85 database from scratch, the contents of {{F:/var/lib/ldap}} are created with 
86 user and group root and with permission 600, making the contents inaccessible 
87 to the slapd server.
89 H3: ldap_*: Can't chase referral
91 This is caused by the line
93 >      referral        ldap://root.openldap.org
95 In {{F:slapd.conf}}, it was provided as an example for how to use referrals 
96 in the original file. However if your machine is not permanently connected to 
97 the Internet, it will fail to find the server, and hence produce an error message.
99 To resolve, just place a # in front of line and restart slapd or point it to 
100 an available ldap server.
102 See also: {{ldapadd}}(1), {{ldapmodify}}(1) and {{slapd.conf}}(5)
104 H3: ldap_*: server is unwilling to perform
106 slapd will return an unwilling to perform error if the backend holding the 
107 target entry does not support the given operation.
109 The password backend is only willing to perform searches. It will return an 
110 unwilling to perform error for all other operations.
112 The shell backend is configurable and may support a limited subset of operations.
113 Check for other errors indicating a shortage of resources required by the 
114 directory server. i.e. you may have a full disk etc
116 H3: ldap_*: Insufficient access
118 This error occurs when server denies the operation due to insufficient access. 
119 This is usually caused by binding to a DN with insufficient privileges 
120 (or binding anonymously) to perform the operation. 
122 You can bind as the rootdn/rootpw specified in {{slapd.conf}}(5) to gain full 
123 access. Otherwise, you must bind to an entry which has been granted the 
124 appropriate rights through access controls.
127 H3: ldap_*: Invalid DN syntax
129 The target (or other) DN of the operation is invalid. This implies that either 
130 the string representation of the DN is not in the required form, one of the 
131 types in the attribute value assertions is not defined, or one of the values 
132 in the attribute value assertions does not conform to the appropriate syntax.
134 H3: ldap_*: Referral hop limit exceeded
136 This error generally occurs when the client chases a referral which refers 
137 itself back to a server it already contacted. The server responds as it did 
138 before and the client loops. This loop is detected when the hop limit is exceeded.
140 This is most often caused through misconfiguration of the server's default 
141 referral. The default referral should not be itself:
143 That is, on {{F:ldap://myldap/}} the default referral should not be {{F:ldap://myldap/}}
144  (or any hostname/ip which is equivalent to myldap).
146 H3: ldap_*: operations error
148 In some versions of {{slapd}}(8), {{operationsError}} was returned instead of other.
150 H3: ldap_*: other error
152 The other result code indicates an internal error has occurred. 
153 While the additional information provided with the result code might provide 
154 some hint as to the problem, often one will need to consult the server's log files.
156 H3: ldap_add/modify: Invalid syntax
158 This error is reported when a value of an attribute does not conform to syntax 
159 restrictions. Additional information is commonly provided stating which value 
160 of which attribute was found to be invalid. Double check this value and other 
161 values (the server will only report the first error it finds).
163 Common causes include:
165 * extraneous white space (especially trailing white space)
166 * improperly encoded characters (LDAPv3 uses UTF-8 encoded Unicode)
167 * empty values (few syntaxes allow empty values)
170 For certain syntax, like OBJECT IDENTIFIER (OID), this error can indicate that 
171 the OID descriptor (a "short name") provided is unrecognized. For instance, 
172 this error is returned if the {{objectClass}} value provided is unrecognized.
174 H3: ldap_add/modify: Object class violation
176 This error is returned with the entry to be added or the entry as modified 
177 violates the object class schema rules. Normally additional information is 
178 returned the error detailing the violation. Some of these are detailed below.
180 Violations related to the entry's attributes:
182 >      Attribute not allowed
184 A provided attribute is not allowed by the entry's object class(es). 
186 >      Missing required attribute
188 An attribute required by the entry's object class(es) was not provided. 
190 Violations related to the entry's class(es):
192 >      Entry has no objectClass attribute
194 The entry did not state which object classes it belonged to. 
196 >      Unrecognized objectClass
198 One (or more) of the listed objectClass values is not recognized. 
200 >      No structural object class provided
202 None of the listed objectClass values is structural. 
204 >      Invalid structural object class chain
206 Two or more structural objectClass values are not in same structural object 
207 class chain. 
209 >      Structural object class modification
211 Modify operation attempts to change the structural class of the entry. 
213 >      Instanstantiation of abstract objectClass.
215 An abstract class is not subordinate to any listed structural or auxiliary class. 
217 >      Invalid structural object class
219 Other structural object class problem. 
221 >      No structuralObjectClass operational attribute
223 This is commonly returned when a shadow server is provided an entry which does 
224 not contain the structuralObjectClass operational attribute. 
227 Note that the above error messages as well as the above answer assumes basic 
228 knowledge of LDAP/X.500 schema.
230 H3: ldap_add: No such object
232 The "ldap_add: No such object" error is commonly returned if parent of the 
233 entry being added does not exist. Add the parent entry first...
235 For example, if you are adding "cn=bob,dc=domain,dc=com" and you get:
237 >      ldap_add: No such object
239 The entry "dc=domain,dc=com" likely doesn't exist. You can use ldapsearch to 
240 see if does exist:
242 >      ldapsearch -b 'dc=domain,dc=com' -s base '(objectclass=*)'
244 If it doesn't, add it. See {{SECT:A Quick-Start Guide}} for assistance.
246 Note: if the entry being added is the same as database suffix, it's parent 
247 isn't required. i.e.: if your suffix is "dc=domain,dc=com", "dc=com" doesn't 
248 need to exist to add "dc=domain,dc=com".
250 This error will also occur if you try to add any entry that the server is not 
251 configured to hold.
253 For example, if your database suffix is "dc=domain,dc=com" and you attempt to 
254 add "dc=domain2,dc=com", "dc=com", "dc=domain,dc=org", "o=domain,c=us", or an 
255 other DN in the "dc=domain,dc=com" subtree, the server will return a
256  "No such object" (or referral) error.
258 {{slapd}}(8) will generally return "no global superior knowledge" as additional 
259 information indicating its return noSuchObject instead of a referral as the 
260 server is not configured with knowledge of a global superior server.
263 H3: ldap add: invalid structural object class chain
265 This particular error refers to the rule about STRUCTURAL objectclasses, which 
266 states that an object is of one STRUCTURAL class, the structural class of the 
267 object. The object is said to belong to this class, zero or more auxiliaries
268  classes, and their super classes. 
270 While all of these classes are commonly listed in the objectClass attribute of 
271 the entry, one of these classes is the structural object class of the entry. 
272 Thus, it is OK for an objectClass attribute 
273 to contain inetOrgPerson, organizationalPerson, and person because they inherit
274  one from another to form a single super class chain. That is, inetOrgPerson SUPs 
275 organizationPerson SUPs person. On the other hand, it is invalid for both inetOrgPerson 
276 and account to be listed in objectClass as inetOrgPerson and account are not 
277 part of the same super class chain (unless some other class is also listed 
278 with is a subclass of both).
280 To resolve this problem, one must determine which class will better serve 
281 structural object class for the entry, adding this class to the objectClass 
282 attribute (if not already present), and remove any other structural class from 
283 the entry's objectClass attribute which is not a super class of the structural 
284 object class.
286 Which object class is better depends on the particulars of the situation. 
287 One generally should consult the documentation for the applications one is 
288 using for help in making the determination.
290 H3: ldap_add: no structuralObjectClass operational attribute
292 ldapadd(1) may error:
294 >      adding new entry "uid=XXX,ou=People,o=campus,c=ru"
295 >        ldap_add: Internal (implementation specific) error (80)
296 >           additional info: no structuralObjectClass operational attribute
298 when slapd(8) cannot determine, based upon the contents of the objectClass 
299 attribute, what the structural class of the object should be.
302 H3: ldap_add/modify/rename: Naming violation
304 OpenLDAP's slapd checks for naming attributes and distinguished values consistency, 
305 according to RFC 4512.
307 Naming attributes are those attributeTypes that appear in an entry's RDN;
308  distinguished values are the values of the naming attributes that appear in 
309 an entry's RDN, e.g, in
311 >      cn=Someone+mail=someone@example.com,dc=example,dc=com
313 the naming attributes are cn and mail, and the distinguished values are 
314 Someone and someone@example.com.
316 OpenLDAP's slapd checks for consistency when:
318 * adding an entry
319 * modifying an entry, if the values of the naming attributes are changed
320 * renaming an entry, if the RDN of the entry changes
322 Possible causes of error are:
324 * the naming attributes are not present in the entry; for example:
326 >                dn: dc=example,dc=com
327 >                objectClass: organization
328 >                o: Example
329 >                # note: "dc: example" is missing
331 * the naming attributes are present in the entry, but in the attributeType 
332 definition they are marked as:
333 - collective
334 - operational
335 - obsolete
337 * the naming attributes are present in the entry, but the distinguished values 
338 are not; for example:
340 >                dn: dc=example,dc=com
341 >                objectClass: domain
342 >                dc: foobar
343 >                # note: "dc" is present, but the value is not "example"
345 * the naming attributes are present in the entry, with the distinguished values, but the naming attributes:
346 - do not have an equality field, so equality cannot be asserted
347 - the matching rule is not supported (yet)
348 - the matching rule is not appropriate
350 * the given distinguished values do not comply with their syntax
352 * other errors occurred during the validation/normalization/match process; 
353 this is a catchall: look at previous logs for details in case none of the above 
354 apply to your case.
356 In any case, make sure that the attributeType definition for the naming attributes 
357 contains an appropriate EQUALITY field; or that of the superior, if they are 
358 defined based on a superior attributeType (look at the SUP field). See RFC 4512 for details.
361 H3: ldap_add/delete/modify/rename: no global superior knowledge
363 If the target entry name places is not within any of the databases the server 
364 is configured to hold and the server has no knowledge of a global superior, 
365 the server will indicate it is unwilling to perform the operation and provide 
366 the text "no global superior knowledge" as additional text.
368 Likely the entry name is incorrect, or the server is not properly configured 
369 to hold the named entry, or, in distributed directory environments, a default 
370 referral was not configured.
373 H3: ldap_bind: Insufficient access
375 Current versions of slapd(8) requires that clients have authentication 
376 permission to attribute types used for authentication purposes before accessing 
377 them to perform the bind operation. As all bind operations are done anonymously 
378 (regardless of previous bind success), the auth access must be granted to anonymous.
380 In the example ACL below grants the following access:
382 * to anonymous users:
383 - permission to authenticate using values of userPassword
384 * to authenticated users:
385 - permission to update (but not read) their userPassword
386 - permission to read any object excepting values of userPassword 
388 All other access is denied.
390 >        access to attr=userPassword
391 >          by self =w
392 >          by anonymous auth
394 >        access *
395 >          by self write
396 >          by users read
399 H3: ldap_bind: Invalid credentials
401 The error usually occurs when the credentials (password) provided does not 
402 match the userPassword held in entry you are binding to.
404 The error can also occur when the bind DN specified is not known to the server.
406 Check both! In addition to the cases mentioned above you should check if the 
407 server denied access to userPassword on selected parts of the directory. In 
408 fact, slapd always returns "Invalid credentials" in case of failed bind, 
409 regardless of the failure reason, since other return codes could reveal the 
410 validity of the user's name.
412 To debug access rules defined in slapd.conf, add "ACL" to log level.
414 H3: ldap_bind: Protocol error
416 There error is generally occurs when the LDAP version requested by the 
417 client is not supported by the server.
419 The OpenLDAP Software 2.x server, by default, only accepts version 3 LDAP Bind 
420 requests but can be configured to accept a version 2 LDAP Bind request. 
422 Note: The 2.x server expects LDAPv3 [RFC4510] to be used when the client 
423 requests version 3 and expects a limited LDAPv3 variant (basically, LDAPv3 
424 syntax and semantics in an LDAPv2 PDUs) to be used when version 2 is expected. 
426 This variant is also sometimes referred to as LDAPv2+, but differs from the U-Mich 
427 LDAP variant in a number of ways.
429 H3: ldap_modify: cannot modify object class
431 This message is commonly returned when attempting to modify the objectClass 
432 attribute in a manner inconsistent with the LDAP/X.500 information model. In 
433 particular, it commonly occurs when one tries to change the structure of the 
434 object from one class to another, for instance, trying to change an 'apple' 
435 into a 'pear' or a 'fruit' into a 'pear'. 
437 Such changes are disallowed by the slapd(8) in accordance with LDAP and X.500 restrictions.
440 H3: ldap_sasl_interactive_bind_s: ...
442 If you intended to bind using a DN and password and get an error from 
443 ldap_sasl_interactive_bind_s, you likely forgot to provide a '-x' option to 
444 the command. By default, SASL authentication is used. '-x' is necessary to 
445 select "simple" authentication.
448 H3: ldap_sasl_interactive_bind_s: No such Object
450 This indicates that LDAP SASL authentication function could not read the 
451 Root DSE.
452 The error will occur when the server doesn't provide a root DSE. This may be 
453 due to access controls.
456 H3: ldap_sasl_interactive_bind_s: No such attribute
458 This indicates that LDAP SASL authentication function could read the Root 
459 DSE but it contained no supportedSASLMechanism attribute.
461 The supportedSASLmechanism attribute lists mechanisms currently available. 
462 The list may be empty because none of the supported mechanisms are currently 
463 available. For example, EXTERNAL is listed only if the client has established 
464 its identity by authenticating at a lower level (e.g. TLS).
466 Note: the attribute may not be visible due to access controls
468 Note: SASL bind is the default for all OpenLDAP tools, e.g. ldapsearch(1), ldapmodify(1). To force use of "simple" bind, use the "-x" option. Use of "simple" bind is not recommended unless one has adequate confidentiality protection in place (e.g. TLS/SSL, IPSEC).
470 H3: ldap_sasl_interactive_bind_s: Unknown authentication method
472 This indicates that none of the SASL authentication supported by the server 
473 are supported by the client, or that they are too weak or otherwise inappropriate 
474 for use by the client. Note that the default security options disallows the use 
475 of certain mechanisms such as ANONYMOUS and PLAIN (without TLS).
477 Note: SASL bind is the default for all OpenLDAP tools. To force use of "simple" bind, use the "-x" option. Use of "simple" bind is not recommended unless one has adequate confidentiality protection in place (e.g. TLS/SSL, IPSEC).
479 H3: ldap_sasl_interactive_bind_s: Local error (82)
481 Apparently not having forward and reverse DNS entries for the LDAP server can result in this error.
484 H3: ldap_search: Partial results and referral received
486 This error is returned with the server responses to an LDAPv2 search query 
487 with both results (zero or more matched entries) and references (referrals to other servers).
488 See also: ldapsearch(1).
490 If the updatedn on the replica does not exist, a referral will be returned. 
491 It may do this as well if the ACL needs tweaking.
493 H3: ldap_start_tls: Operations error
495 ldapsearch(1) and other tools will return
497 >        ldap_start_tls: Operations error (1)
498 >              additional info: TLS already started
500 When the user (though command line options and/or ldap.conf(5)) has requested 
501 TLS (SSL) be started twice. For instance, when specifying both "-H ldaps://server.do.main" and "-ZZ".
503 H2: Other Errors
505 H3: ber_get_next on fd X failed errno=34 (Numerical result out of range)
507 This slapd error generally indicates that the client sent a message that 
508 exceeded an administrative limit. See sockbuf_max_incoming and sockbuf_max_incoming_auth 
509 configuration directives in slapd.conf(5).
511 H3: ber_get_next on fd X failed errno=11 (Resource temporarily unavailable)
513 This message is not indicative of abnormal behavior or error. It simply means 
514 that expected data is not yet available from the resource, in this context, a 
515 network socket. slapd(8) will process the data once it does becomes available.
517 H3: daemon: socket() failed errno=97 (Address family not supported)
519 This message indicates that the operating system does not support one of the 
520 (protocol) address families which slapd(8) was configured to support. Most 
521 commonly, this occurs when slapd(8) was configured to support IPv6 yet the 
522 operating system kernel wasn't. In such cases, the message can be ignored.
524 H3: GSSAPI: gss_acquire_cred: Miscellaneous failure; Permission denied;
526 This message means that slapd is not running as root and, thus, it cannot get 
527 its Kerberos 5 key from the keytab, usually file /etc/krb5.keytab.
529 A keytab file is used to store keys that are to be used by services or daemons 
530 that are started at boot time. It is very important that these secrets are kept 
531 beyond reach of intruders.
533 That's why the default keytab file is owned by root and protected from being 
534 read by others. Do not mess with these permissions, build a different keytab 
535 file for slapd instead.
537 To do this, start kadmin, and enter the following commands:
539 >     addprinc -randkey ldap/ldap.example.com@EXAMPLE.COM
540 >     ktadd -k /etc/openldap/ldap.keytab ldap/ldap.example.com@EXAMPLE.COM 
542 Then, on the shell, do:
544 >     chown ldap.ldap /etc/openldap/ldap.keytab
545 >     chmod 600 /etc/openldap/ldap.keytab 
547 Now you have to tell slapd (well, actually tell the gssapi library in Kerberos 5 
548 that is invoked by Cyrus SASL) where to find the new keytab. You do this by 
549 setting the environment variable KRB5_KTNAME like this:
551 >     export KRB5_KTNAME="FILE:/etc/openldap/ldap.keytab"
553 Set that environment variable on the slapd start script (Red Hat users might 
554 find /etc/sysconfig/ldap a perfect place).
556 This only works if you are using MIT kerberos. It doesn't work with Heimdal, 
557 for instance.
560 In Heimdal there is a function gsskrb5_register_acceptor_identity() that sets 
561 the path of the keytab file you want to use. In Cyrus SASL 2 you can add
563 >    keytab: /path/to/file
565 to your application's SASL config file to use this feature. This only works with Heimdal.
568 H3: access from unknown denied
570 This related to TCP wrappers. See hosts_access(5) for more information.
571 in the log file: "access from unknown denied" This related to TCP wrappers. 
572 See hosts_access(5) for more information.
573 for example: add the line "slapd: .hosts.you.want.to.allow" in /etc/hosts.allow 
574 to get rid of the error.
576 H3: ldap_read: want=# error=Resource temporarily unavailable
578 This message occurs normally. It means that pending data is not yet available 
579 from the resource, a network socket. slapd(8) will process the data once it 
580 becomes available.
582 H3: `make test' fails
584 Some times, `make test' fails at the very first test with an obscure message like
586 >    make test
587 >    make[1]: Entering directory `/ldap_files/openldap-2.4.6/tests'
588 >    make[2]: Entering directory `/ldap_files/openldap-2.4.6/tests'
589 >    Initiating LDAP tests for BDB...
590 >    Cleaning up test run directory leftover from previous run.
591 >     Running ./scripts/all...
592 >    >>>>> Executing all LDAP tests for bdb
593 >    >>>>> Starting test000-rootdse ...
594 >    running defines.sh
595 >    Starting slapd on TCP/IP port 9011...
596 >    Using ldapsearch to retrieve the root DSE...
597 >    Waiting 5 seconds for slapd to start...
598 >    ./scripts/test000-rootdse: line 40: 10607 Segmentation fault $SLAPD -f $CONF1 -h $URI1 -d $LVL $TIMING >$LOG1 2>&1
599 >    Waiting 5 seconds for slapd to start...
600 >    Waiting 5 seconds for slapd to start...
601 >    Waiting 5 seconds for slapd to start...
602 >    Waiting 5 seconds for slapd to start...
603 >    Waiting 5 seconds for slapd to start...
604 >    ./scripts/test000-rootdse: kill: (10607) - No such pid
605 >    ldap_sasl_bind_s: Can't contact LDAP server (-1)
606 >    >>>>> Test failed
607 >    >>>>> ./scripts/test000-rootdse failed (exit 1)
608 >    make[2]: *** [bdb-yes] Error 1
609 >    make[2]: Leaving directory `/ldap_files/openldap-2.4.6/tests'
610 >    make[1]: *** [test] Error 2
611 >    make[1]: Leaving directory `/ldap_files/openldap-2.4.6/tests'
612 >    make: *** [test] Error 2
614 or so. Usually, the five lines
616     Waiting 5 seconds for slapd to start...
618 indicate that slapd didn't start at all.
620 In tests/testrun/slapd.1.log there is a full log of what slapd wrote while 
621 trying to start. The log level can be increased by setting the environment 
622 variable SLAPD_DEBUG to the corresponding value; see loglevel in slapd.conf(5) 
623 for the meaning of log levels.
625 A typical reason for this behavior is a runtime link problem, i.e. slapd cannot 
626 find some dynamic libraries it was linked against. Try running ldd(1) on slapd 
627 (for those architectures that support runtime linking).
629 There might well be other reasons; the contents of the log file should help 
630 clarifying them.
632 Tests that fire up multiple instances of slapd typically log to tests/testrun/slapd.<n>.log, 
633 with a distinct <n> for each instance of slapd; list tests/testrun/ for possible 
634 values of <n>.
636 H3: ldap_*: Internal (implementation specific) error (80) - additional info: entry index delete failed
638 This seems to be related with wrong ownership of the BDB's dir (/var/lib/ldap) 
639 and files.
641 >    chmod -R openldap:openldap /var/lib/ldap 
643 fixes it in Debian
646 H3: ldap_sasl_interactive_bind_s: Can't contact LDAP server (-1)
648 Using SASL, when a client contacts LDAP server, the slapd service dies 
649 immediately and client gets an error :
651 >     SASL/GSSAPI authentication started ldap_sasl_interactive_bind_s: Can't contact LDAP server (-1)
653 Then check the slapd service, it stopped.
655 This may come from incompatible of using different versions of BerkeleyDB for 
656 installing of SASL and installing of OpenLDAP. The problem arises in case of 
657 using multiple version of BerkeleyDB. Solution: - Check which version of 
658 BerkeleyDB when install Cyrus SASL. 
660 Reinstall OpenLDAP with the version of BerkeleyDB above.