LinuxQuestions.org
Help answer threads with 0 replies.
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 06-01-2009, 06:09 PM   #1
slast
LQ Newbie
 
Registered: Jun 2009
Posts: 14

Rep: Reputation: 0
OpenLDAP2.4.16 incompatible with Berkeley DB 4.7.25


I have installed Berkeley DB version 4.7.25 on a server and am now trying to configure OpenLDAP 2.4.16 but I get the following error:

checking db.h usability... yes
checking db.h presence... yes
checking for db.h... yes
checking for Berkeley DB major version in db.h... 4
checking for Berkeley DB minor version in db.h... 3
checking if Berkeley DB version supported by BDB/HDB backends... no
configure: error: BerkeleyDB version incompatible with BDB/HDB backends

Essentially this is what I did.

Berkeley DB Setup:
1) untar the load.
2) cd /<DB release>/build_unix
3) ../dist/configure
4) make
5) make install

OpenLDAP Setup:
1) unpackage the load
2) cd /openldap
3) ./configure
and also tried
4) ./configure --enable-debug --with-tls=openssl --enable-monitor
and also tried
5) LDFLAGS="-L/usr/local/lib -L/usr/local/BerkeleyDB/lib -L/usr/local/ssl/lib -R/usr/local/lib -R/usr/local/BerkeleyDB/lib -R/usr/local/ssl/lib" CPPFLAGS="-I/usr/local/include -I/usr/local/BerkeleyDB/include -I/usr/local/ssl/include" ./configure

Can someone please point me in the right direction. I have tried some workarounds I have seen online for similar issues but they don't work.

Thanks,
slast
 
Old 06-01-2009, 07:14 PM   #2
slast
LQ Newbie
 
Registered: Jun 2009
Posts: 14

Original Poster
Rep: Reputation: 0
I have gotten a little further with the following command:

After issuing the following command, I now get the following error.

LDFLAGS=-L/usr/local/BerkeleyDB.4.7/lib CPPFLAGS=-I/usr/local/BerkeleyDB.4.7/include ./configure

checking for Berkeley DB major version in db.h... 4
checking for Berkeley DB minor version in db.h... 7
checking if Berkeley DB version supported by BDB/HDB backends... yes
checking for Berkeley DB link (-ldb-4.7)... yes
checking for Berkeley DB library and header version match... no
configure: error: Berkeley DB version mismatch

Any suggestions?

Thanks,
slast
 
Old 06-01-2009, 08:51 PM   #3
Tinkster
Moderator
 
Registered: Apr 2002
Location: earth
Distribution: slackware by choice, others too :} ... android.
Posts: 23,067
Blog Entries: 11

Rep: Reputation: 927Reputation: 927Reputation: 927Reputation: 927Reputation: 927Reputation: 927Reputation: 927Reputation: 927
Which Linux version are you doing this on, are there pre-installed berkeley DB
still around? I had no issues compiling both BDB and OpenLDAP versions you
were using here ....


Cheers,
Tink
 
Old 06-02-2009, 02:39 AM   #4
bathory
LQ Guru
 
Registered: Jun 2004
Location: Piraeus
Distribution: Slackware
Posts: 13,073

Rep: Reputation: 1971Reputation: 1971Reputation: 1971Reputation: 1971Reputation: 1971Reputation: 1971Reputation: 1971Reputation: 1971Reputation: 1971Reputation: 1971Reputation: 1971
@slast

Been there done that!!! You can bypass the problem you have by using:
Code:
export LD_LIBRARY_PATH=/usr/local/BerkeleyDB/lib:$LD_LIBRARY_PATH
prior running ./configure.
You'll come across another error during make, that you can also bypass by adding "-D_GNU_SOURCE" in CPPFLAGS:
Code:
LDFLAGS=-L/usr/local/BerkeleyDB.4.7/lib CPPFLAGS="-D_GNU_SOURCE -I/usr/local/BerkeleyDB.4.7/include" ./configure
Finally it will compile, but it won't work, because ldapsearch, ldapadd and other utilities will hang, without any apparent error in the logs.
I had to go back and use db-4.4 in order for openldap 2.4.16 to work.

Hope that helps.

Last edited by bathory; 06-04-2009 at 04:34 PM.
 
Old 06-02-2009, 07:40 AM   #5
slast
LQ Newbie
 
Registered: Jun 2009
Posts: 14

Original Poster
Rep: Reputation: 0
I am running Fedora Core 6 on the server that I have installed the Berkeley DB and OpenLDAP.
 
Old 06-02-2009, 07:48 AM   #6
bathory
LQ Guru
 
Registered: Jun 2004
Location: Piraeus
Distribution: Slackware
Posts: 13,073

Rep: Reputation: 1971Reputation: 1971Reputation: 1971Reputation: 1971Reputation: 1971Reputation: 1971Reputation: 1971Reputation: 1971Reputation: 1971Reputation: 1971Reputation: 1971
Does slapd works?
Because as I told you I've managed also to install both of them on Slackware 12.2 (if that matters), but once I ran a ldapsearch, it hangs at the 1st "ou=..." and if I stop it, then slapd becomes irresponsible and I have to kill it.
 
Old 06-02-2009, 07:53 AM   #7
slast
LQ Newbie
 
Registered: Jun 2009
Posts: 14

Original Poster
Rep: Reputation: 0
Bathory,

I have tried the commands you listed, and am still seeing the following:

checking for db.h... yes
checking for Berkeley DB major version in db.h... 4
checking for Berkeley DB minor version in db.h... 3
checking if Berkeley DB version supported by BDB/HDB backends... no
configure: error: BerkeleyDB version incompatible with BDB/HDB backends


Here are the exact commands I used.

export LD_LIBRARY_PATH=/usr/local/BerkeleyDB/lib:$LD_LIBRARY_PATH

LDFAGS=-L/usr/local/BerkeleyDB.4.7/lib CPPFLAGS="-D_GNU_SOURCE -I/usr/local/Berkeley.4.7/include" ./configure

Any other suggestions?
 
Old 06-02-2009, 08:13 AM   #8
bathory
LQ Guru
 
Registered: Jun 2004
Location: Piraeus
Distribution: Slackware
Posts: 13,073

Rep: Reputation: 1971Reputation: 1971Reputation: 1971Reputation: 1971Reputation: 1971Reputation: 1971Reputation: 1971Reputation: 1971Reputation: 1971Reputation: 1971Reputation: 1971
Quote:
checking for db.h... yes
checking for Berkeley DB major version in db.h... 4
checking for Berkeley DB minor version in db.h... 3
It still finds your previous version before the new one. Run "make distclean" prior running ./configure to clean any cached files. As a temporary workaround you can also (re)move the symlink /usr/include/db.h

***EDIT***
In you case, it should be: export LD_LIBRARY_PATH=/usr/loca/BerkeleyDB.4.7/lib:$LD_LIBRARY_PATH

Last edited by bathory; 06-02-2009 at 09:28 AM. Reason: typo
 
Old 06-04-2009, 02:43 PM   #9
slast
LQ Newbie
 
Registered: Jun 2009
Posts: 14

Original Poster
Rep: Reputation: 0
So I've managed to get to the point of trying the ldapadd and ldapsearch commands.

Bathory, is the error below consistent with the problems you were having?

ldapadd -H ldaps://47.135.41.16 -x -D "cn=admin,dc=cablab,dc=com" -W -f cablab.ldif
Enter LDAP Password:
ldap_sasl_bind(SIMPLE): Can't contact LDAP server (-1)
 
Old 06-04-2009, 04:34 PM   #10
bathory
LQ Guru
 
Registered: Jun 2004
Location: Piraeus
Distribution: Slackware
Posts: 13,073

Rep: Reputation: 1971Reputation: 1971Reputation: 1971Reputation: 1971Reputation: 1971Reputation: 1971Reputation: 1971Reputation: 1971Reputation: 1971Reputation: 1971Reputation: 1971
Quote:
ldapadd -H ldaps://47.135.41.16 -x -D "cn=admin,dc=cablab,dc=com" -W -f cablab.ldif
Enter LDAP Password:
ldap_sasl_bind(SIMPLE): Can't contact LDAP server (-1)
Your problem now is that you cannot connect to the server. Are you sure it's running and it's listening on port 636?
The problem I'm facing with db-4.7.x, is that after server starting, the 1st command I issue (ldapsearch, ldapadd, whatever) hangs and I have to kill it. After that the server becomes irresponsible and I also have to kill slapd.
This does not happen with db-4.6.x and previous versions.
 
Old 06-05-2009, 01:09 PM   #11
slast
LQ Newbie
 
Registered: Jun 2009
Posts: 14

Original Poster
Rep: Reputation: 0
Bathory, here is a detailed error message:

[root@pcard0bu slapd.d]# ldapadd -H ldaps://47.135.41.16 -x -D "cn=admin,dc=cablab,dc=com" -W -f cablab.ldif -d8
Enter LDAP Password:
TLS certificate verification: Error, self signed certificate in certificate chain
TLS: can't connect: error:14090086:SSL routines:SSL3_GET_SERVER_CERTIFICATE:certificate verify failed.
ldap_sasl_bind(SIMPLE): Can't contact LDAP server (-1)

Problem is I have created certificates that I believe should work.

Found this command on another website. Does it mean anything?

[root@pcard0bu slapd.d]# /usr/local/libexec/slapd -u ldap -d 256
@(#) $OpenLDAP: slapd 2.4.16 (Jun 3 2009 14:20:51) $
root@pcard0bu:/usr/local/etc/openldap/openldap-2.4.16/servers/slapd
No passwd entry for user ldap
 
Old 06-05-2009, 03:28 PM   #12
bathory
LQ Guru
 
Registered: Jun 2004
Location: Piraeus
Distribution: Slackware
Posts: 13,073

Rep: Reputation: 1971Reputation: 1971Reputation: 1971Reputation: 1971Reputation: 1971Reputation: 1971Reputation: 1971Reputation: 1971Reputation: 1971Reputation: 1971Reputation: 1971
Even though I haven't ever setup a secure openldap server, I think that your problem is that you cannot resolve the ip supplied in the URI, with the servername you used when you issued the ssl certificate.
Edit /etc/hosts to add an entry for the ip/hostname and try again, maybe increasing the debug level and using the -ZZ (or -Z if that fails) option:
Code:
ldapadd -H ldaps://47.135.41.16 -x -D "cn=admin,dc=cablab,dc=com" -W -f cablab.ldif -d127 -ZZ
You can read this about configuring ldap with tls/ssl.
Quote:
Found this command on another website. Does it mean anything?

[root@pcard0bu slapd.d]# /usr/local/libexec/slapd -u ldap -d 256
@(#) $OpenLDAP: slapd 2.4.16 (Jun 3 2009 14:20:51) $
root@pcard0bu:/usr/local/etc/openldap/openldap-2.4.16/servers/slapd
No passwd entry for user ldap
Quoting from slapd manpage:
Quote:
-u user
slapd will run slapd with the specified user name or id, and that
user's supplementary group access list as set with initgroups(3).
The group ID is also changed to this user's gid, unless the -g option
is used to override. Note when used with -r, slapd will use the user
database in the change root environment.

Note that on some systems, running as a non-privileged user will
prevent passwd back-ends from accessing the encrypted passwords. Note
also that any shell back-ends will run as the specified non-privileged
user
So I don't think it's useful for your case.

Regards
 
Old 12-07-2009, 12:02 PM   #13
mishikal
LQ Newbie
 
Registered: Dec 2009
Posts: 2

Rep: Reputation: 0
Quote:
Originally Posted by bathory View Post
The problem I'm facing with db-4.7.x, is that after server starting, the 1st command I issue (ldapsearch, ldapadd, whatever) hangs and I have to kill it. After that the server becomes irresponsible and I also have to kill slapd.
This does not happen with db-4.6.x and previous versions.
That's because BDB 4.7 must be patched with all patches from Oracle before it is usable.
 
Old 12-07-2009, 12:30 PM   #14
bathory
LQ Guru
 
Registered: Jun 2004
Location: Piraeus
Distribution: Slackware
Posts: 13,073

Rep: Reputation: 1971Reputation: 1971Reputation: 1971Reputation: 1971Reputation: 1971Reputation: 1971Reputation: 1971Reputation: 1971Reputation: 1971Reputation: 1971Reputation: 1971
Quote:
Originally Posted by mishikal View Post
That's because BDB 4.7 must be patched with all patches from Oracle before it is usable.
FYI openldap works nicely with db-4.8.x

Regards
 
Old 12-08-2009, 04:04 PM   #15
mishikal
LQ Newbie
 
Registered: Dec 2009
Posts: 2

Rep: Reputation: 0
Quote:
Originally Posted by bathory View Post
FYI openldap works nicely with db-4.8.x

Regards
Yes, as a member of the OpenLDAP team, I'm quite aware of that. I just wanted to be sure if anyone else stumbled across this thread, they would understand that BDB 4.7 works just fine too, if the patches are applied. As noted in the README document shipped with OpenLDAP.



--Quanah
 
  


Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
freeRADIUS1.0.1-1 Auth against openLDAP2.0.27-17 ignores LDAP pswd Expire attribute tmolise Linux - Networking 0 09-06-2006 10:31 AM
how to get Berkeley DB Sailesh Linux - Software 1 08-01-2006 04:20 AM
Berkeley DB aesthete Linux - Software 1 02-12-2005 09:07 AM
berkeley problem hariiyer Linux - Software 2 12-22-2004 10:49 PM
Perl and Berkeley db zolley Linux - Newbie 0 06-07-2004 05:43 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 05:23 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration