1.装完redhat linux9以后,可以查看cryus-sasl版本
rpm -qa|grep sasl
例如:cryus-sasl-2.1.10
2.从www.sleepycat.com下载BerkeleyDB数据库
#tar -zxvf db-4.3.28.tar.gz
#cd db-4.3.28/os
#../dist/configure
#make
#make install
3.从www.openldap.org下载openldap-2.1.28.tgz
#gunzip openldap-2.1.28.tgz
#tar -xvf openldap-2.1.28.tar
#cd openldap-2.1.28(查看README和INSTALL文件,可以获取一些帮助)
#env CPPFLAGS="-I/usr/local/BerkeleyDB.4.3/include" LDFLAGS="-L/usr/local/BerkeleyDB.4.3/lib" ./configure --prefix=/usr/local/openldap --enable-ldbm
#make depend
#make
#make test
#make install