linux-admin.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* openldap
@ 2003-08-07 16:54 - Luis -
  2003-08-07 19:39 ` openldap Jeff Largent
  0 siblings, 1 reply; 3+ messages in thread
From: - Luis - @ 2003-08-07 16:54 UTC (permalink / raw)
  To: linux

hi, im trying to install openldap 2.0.9 in a RH9 box, but when i make
configure --enable-shell i got the following error.

checking for pthread.h... yes
checking POSIX thread version... final
checking for LinuxThreads pthread.h... yes
checking for GNU Pth pthread.h... no
checking for sched.h... yes
checking for pthread_create in default libraries... no
checking for pthread link with -kthread... no
checking for pthread link with -pthread... no
checking for pthread link with -pthreads... no
checking for pthread link with -mthreads... no
checking for pthread link with -thread... no
checking for pthread link with -lpthread -lmach -lexc -lc_r... no
checking for pthread link with -lpthread -lmach -lexc... no
checking for pthread link with -lpthread -Wl,-woff,85... no
checking for pthread link with -lpthread... no
checking for pthread link with -lc_r... no
checking for pthread link with -threads... no
checking for pthread link with -lpthreads -lmach -lexc -lc_r... no
checking for pthread link with -lpthreads -lmach -lexc... no
checking for pthread link with -lpthreads -lexc... no
checking for pthread link with -lpthreads... no
configure: error: could not link with POSIX Threads

i also try with a newer version of openldap 2.1.22 but with this one i
got the following, 

checking for db.h... yes
checking for Berkeley DB link (default)... no
checking for Berkeley DB link (-ldb41)... no
checking for Berkeley DB link (-ldb-41)... no
checking for Berkeley DB link (-ldb-4.1)... no
checking for Berkeley DB link (-ldb-4-1)... no
checking for Berkeley DB link (-ldb-4)... no
checking for Berkeley DB link (-ldb4)... no
checking for Berkeley DB link (-ldb)... yes
checking for Berkeley DB thread support... yes
checking Berkeley DB version for BDB backend... no
configure: error: BDB: BerkeleyDB version incompatible

i need back shell support because im going to use it for a netmeeting
server.

Can anybody give a light here please.

-- 
- -- 
Luis Valencia
- ------------------------
With a PC, I always felt limited
by the software available.
On Unix, I am limited only by my knowledge.
- --Peter J. Schoenster



^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: openldap
  2003-08-07 16:54 openldap - Luis -
@ 2003-08-07 19:39 ` Jeff Largent
  0 siblings, 0 replies; 3+ messages in thread
From: Jeff Largent @ 2003-08-07 19:39 UTC (permalink / raw)
  To: - Luis -; +Cc: linux

db4 is the default for Redhat 9, openldap is looking for db3.

You should be able to install the db3 packages on you rh9 box.
db3-3.3.11-6
db3-devel-3.3.11-6
db3-utils-3.3.11-6


- Luis - wrote:
> hi, im trying to install openldap 2.0.9 in a RH9 box, but when i make
> configure --enable-shell i got the following error.
> 
> checking for pthread.h... yes
> checking POSIX thread version... final
> checking for LinuxThreads pthread.h... yes
> checking for GNU Pth pthread.h... no
> checking for sched.h... yes
> checking for pthread_create in default libraries... no
> checking for pthread link with -kthread... no
> checking for pthread link with -pthread... no
> checking for pthread link with -pthreads... no
> checking for pthread link with -mthreads... no
> checking for pthread link with -thread... no
> checking for pthread link with -lpthread -lmach -lexc -lc_r... no
> checking for pthread link with -lpthread -lmach -lexc... no
> checking for pthread link with -lpthread -Wl,-woff,85... no
> checking for pthread link with -lpthread... no
> checking for pthread link with -lc_r... no
> checking for pthread link with -threads... no
> checking for pthread link with -lpthreads -lmach -lexc -lc_r... no
> checking for pthread link with -lpthreads -lmach -lexc... no
> checking for pthread link with -lpthreads -lexc... no
> checking for pthread link with -lpthreads... no
> configure: error: could not link with POSIX Threads
> 
> i also try with a newer version of openldap 2.1.22 but with this one i
> got the following, 
> 
> checking for db.h... yes
> checking for Berkeley DB link (default)... no
> checking for Berkeley DB link (-ldb41)... no
> checking for Berkeley DB link (-ldb-41)... no
> checking for Berkeley DB link (-ldb-4.1)... no
> checking for Berkeley DB link (-ldb-4-1)... no
> checking for Berkeley DB link (-ldb-4)... no
> checking for Berkeley DB link (-ldb4)... no
> checking for Berkeley DB link (-ldb)... yes
> checking for Berkeley DB thread support... yes
> checking Berkeley DB version for BDB backend... no
> configure: error: BDB: BerkeleyDB version incompatible
> 
> i need back shell support because im going to use it for a netmeeting
> server.
> 
> Can anybody give a light here please.
> 

-- 
Jeff Largent                   ImageLinks, Inc.
Sr System Admin                Melbourne, Fl 32935
(321) 253-0011                 fax: (321) 253-5559


^ permalink raw reply	[flat|nested] 3+ messages in thread

* RE: openldap
       [not found] <B6DFCBE338DE6741A24ECEA890730A19642BAE@exchtwo>
@ 2003-08-08 15:07 ` - Luis -
  0 siblings, 0 replies; 3+ messages in thread
From: - Luis - @ 2003-08-08 15:07 UTC (permalink / raw)
  To: linux

thanks Jesse, that did the trick, but now i got the next error when i
try to start the ldap service, as i said before im trying to set up a
netmeeting server, so the error is in the netmeeting schema file, im not
familiarize with ldap, so i got no idea what this error can be.  Sorry
for bothering so much, but i really apreciate your help.

[ndk-1.2]$ sudo /usr/local/libexec/slapd -f
/usr/local/etc/openldap/slapd.conf -u nobody
/usr/local/etc/openldap/schema/netmeeting.schema: line 29: AttributeType
inappropriate matching rule: "caseIgnoreMatch"

Le jeu 07/08/2003 à 10:56, Jesse Driskill a écrit :
> Use this. You may have to modify the CPPFLAGS and LDFLAGS statements to
> better suit your machine, but these normally work for me. You do have
> Berkeley db installed, right? 
> 
> env CPPFLAGS="-I/usr/local/BerkeleyDB.4.1/include"
> LDFLAGS="-L/usr/local/BerkeleyDB.4.1/lib" ./configure
> 
> 
> --jesse
> 
> 
> -----Original Message-----
> From: - Luis - [mailto:unix@amigo.net.gt] 
> Sent: Thursday, August 07, 2003 9:54 AM
> To: linux
> Subject: openldap
> 
> 
> hi, im trying to install openldap 2.0.9 in a RH9 box, but when i make
> configure --enable-shell i got the following error.
> 
> checking for pthread.h... yes
> checking POSIX thread version... final
> checking for LinuxThreads pthread.h... yes
> checking for GNU Pth pthread.h... no
> checking for sched.h... yes
> checking for pthread_create in default libraries... no
> checking for pthread link with -kthread... no
> checking for pthread link with -pthread... no
> checking for pthread link with -pthreads... no
> checking for pthread link with -mthreads... no
> checking for pthread link with -thread... no
> checking for pthread link with -lpthread -lmach -lexc -lc_r... no
> checking for pthread link with -lpthread -lmach -lexc... no checking for
> pthread link with -lpthread -Wl,-woff,85... no checking for pthread link
> with -lpthread... no checking for pthread link with -lc_r... no checking
> for pthread link with -threads... no checking for pthread link with
> -lpthreads -lmach -lexc -lc_r... no checking for pthread link with
> -lpthreads -lmach -lexc... no checking for pthread link with -lpthreads
> -lexc... no checking for pthread link with -lpthreads... no
> configure: error: could not link with POSIX Threads
> 
> i also try with a newer version of openldap 2.1.22 but with this one i
> got the following, 
> 
> checking for db.h... yes
> checking for Berkeley DB link (default)... no
> checking for Berkeley DB link (-ldb41)... no
> checking for Berkeley DB link (-ldb-41)... no
> checking for Berkeley DB link (-ldb-4.1)... no
> checking for Berkeley DB link (-ldb-4-1)... no
> checking for Berkeley DB link (-ldb-4)... no
> checking for Berkeley DB link (-ldb4)... no
> checking for Berkeley DB link (-ldb)... yes
> checking for Berkeley DB thread support... yes
> checking Berkeley DB version for BDB backend... no
> configure: error: BDB: BerkeleyDB version incompatible
> 
> i need back shell support because im going to use it for a netmeeting
> server.
> 
> Can anybody give a light here please.
> 
> -- 
> - -- 
> Luis Valencia
> - ------------------------
> With a PC, I always felt limited
> by the software available.
> On Unix, I am limited only by my knowledge.
> - --Peter J. Schoenster
> 
> 
> -
> To unsubscribe from this list: send the line "unsubscribe linux-admin"
> in the body of a message to majordomo@vger.kernel.org More majordomo
> info at  http://vger.kernel.org/majordomo-info.html
-- 
- -- 
Luis Valencia
- ------------------------
With a PC, I always felt limited
by the software available.
On Unix, I am limited only by my knowledge.
- --Peter J. Schoenster


-
To unsubscribe from this list: send the line "unsubscribe linux-admin" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2003-08-08 15:07 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2003-08-07 16:54 openldap - Luis -
2003-08-07 19:39 ` openldap Jeff Largent
     [not found] <B6DFCBE338DE6741A24ECEA890730A19642BAE@exchtwo>
2003-08-08 15:07 ` openldap - Luis -

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).