open ldap编译安装

一般需求的c等系统环境就不写了

前几天看到朋友弄这个老弄不好,然后就研究了一下,现在弄好了发出来,免得忘掉。

关于openldap的原理就不写了,有朋友想研究就google一下吧。

讲一下我的环境:

centos 5.8 basic安装

首先得到openldap的包:

在linux上用wget下载即可:

wget http://www.openldap.org/software/download/OpenLDAP/openldap-release/openldap-2.4.9.tgz

因为是basic安装,系统本身自带有openldap的包


[root@localhost ~]# rpm -qa | grep ldap

openldap-2.3.43-25.el5_8.1

mozldap-6.0.5-2.el5

python-ldap-2.2.0-2.1

nss_ldap-253-51.el5_9.1

[root@localhost ~]#

为了防止出现问题,这个时候可以选择卸载掉openldap,当然这里不卸载openldap也是可以的。另外,注意一下因为系统版本的python版本的不同,对openldap包的依赖也不同。卸载前先确认一下。

[root@localhost ~]# rpm -e --nodeps openldap-2.3.43-25.el5_8.1

然后,去oracle官网得到Berkeley DB的包,关于这个包的版本我查看了一下openldap的README文件,得到需要的软件包:

Base system (libraries and tools):

Standard C compiler (required)

Cyrus SASL 2.1.21+ (recommended)

OpenSSL 0.9.7+ (recommended)

POSIX REGEX software (required)


SLAPD:

BDB and HDB backends require Oracle Berkeley DB 4.2, 4.4,

4.5, or 4.6. It is highly recommended to apply the patches

from Oracle for a given release.

从这里可以看出,需要的Berkeley DB的版本为 4.2,4.4,4.5,4.6、同时需求的Cycus SASK的包的版本为2.1.21 openssl最低版本位0.9.7,这些因为basic安装系统已经自带了,我就不再重新下载软件包编译安装了。

Berkeley DB的下载地址:http://www.oracle.com/technetwork/cn/products/berkeleydb/downloads/index-086374-zhs.html


源码包都下好了,准备工作完成后,开始进行编译。

首先编译安装Berkeley DB:

tar xf db-4.5.20.tar.gz (原谅偶没有直接让tar知道解压方式的举动)

cd db-4.5.20

这里你直接使用dis/configure会有一个提示:

configure: error: Berkeley DB should not be built in the top-level or "dist" directories. Change directory to the build_unix directory and run ../dist/configure from there.

这个意思是让你去unix目录进行编译,当查看这个包的内容时会发现他提供了几种系统安装时候需要的文件,我使用的是的centos系统即Linux/Unix系统所以要先切换到build_unix目录然后进行configure生成makefile文件

cd build_unix

../dist/configure

make && make install

安装完成会看到这样一段提示:

If you ever happen to want to link against installed libraries

in a given directory, LIBDIR, you must either use libtool, and

specify the full pathname of the library, or use the `-LLIBDIR'

flag during linking and do at least one of the following:

- add LIBDIR to the `LD_LIBRARY_PATH' environment variable

during execution

- add LIBDIR to the `LD_RUN_PATH' environment variable

during linking

- use the `-Wl,--rpath -Wl,LIBDIR' linker flag

- have your system administrator add LIBDIR to `/etc/ld.so.conf'

大概意思是让你指定环境变量,即指定LD_LIBRARY_PATH和LD_LIBRARY_PATH

这里我们export一下即可,

[root@master build_unix]# export LD_LIBRARY_PATH="/usr/local/BerkeleyDB.4.5/lib/"

[root@master build_unix]# export LD_RUN_PATH="/usr/local/BerkeleyDB.4.5/lib/"

Important:这里声明环境变量有个用处,如果你不声明环境变量的话,使用命令测试启动时:

/usr/local/libexec/slapd

ldapsearch -x -b '' -s base '(objectclass=*)' namingContexts

会有报错:/usr/local/libexec/slapd: error while loading shared libraries: libdb-4.5.so: cannot open shared object file: Error 40

到这里Berkeley DB就安装完成了。

接下来编译openldap:

tar xf openldap-2.4.9.tgz 解压包

cd openldap-2.4.9

env CPPFLAGS="-I/usr/local/BerkeleyDB.4.5/include" LDFLAGS="-L/usr/local/lib -L/usr/local/BerkeleyDB.4.5/lib -R/usr/local/lib" LD_LIBRARY_PATH="/usr/local/BerkeleyDB.4.5/lib" ./configure --enable-crypt --with-pam 使用临时的环境变量来进行openldap的编译

./configure 生成makefile文件成功后会提示:Please run "make depend" to build dependencies

记住一定要makefile成功后才能继续下一步(这很重要)

这里让使用make depend构建依赖关系,我们按照提示来做。

make depends

make && make install

到这里openldap就安装完成了。

然后测试一下是否启动:

使用命令:

/usr/local/libexec/slapd

ldapsearch -x -b '' -s base '(objectclass=*)' namingContexts

结果为:

[root@master openldap-2.4.9]# /usr/local/libexec/slapd

[root@master openldap-2.4.9]# ldapsearch -x -b '' -s base '(objectclass=*)' namingContexts

# extended LDIF

#

# LDAPv3

# base <> with scope baseObject

# filter: (objectclass=*)

# requesting: namingContexts

#


#

dn:

namingContexts: dc=my-domain,dc=com


# search result

search: 2

result: 0 Success


# numResponses: 2

# numEntries: 1

这样openldap就算是启动了。

配置过程就不写了


编译过程中的错误的一些参考方法:

http://icephoenix.us/linuxunix/build-openldap-2-3-x-from-sources-on-ubuntu/

你可能感兴趣的:(linux,openLdap,ldap编译安装)