当前位置:操作系统 > Unix/Linux >>

LinuxOpenLDAP服务器

概述

  注意事项

  软件包的来源

  安装软件包需要注意的问题

  编译

  编译和优化

  清除不必要的文件

  配置

  配置“/etc/ldap/slapd.conf”文件

  配置“/etc/rc.d/init.d/ldap”脚本文件

  更多的资料

  保证OpenLDAP的安全

  使得重要的配置文件不可改变

  OpenLDAP的创建和维护工具

  离线创建数据库

  IDIF输入文件(用文本表示的输入文件)

  为LDAP创建数据库

  ldapmodify

  OpenLDAP的用户工具

  搜索LDAP的数据项

  安装到系统中的文件

  概述

  LDAP(Lightweight Directory Access Protocol)是用来访问信息服务的标准协议。这个协议是用在Internet传输协议上,如:TCP,能够访问单独的目录服务或X.500目录。

  注意事项

  下面所有的命令都是Unix兼容的命令。

  源路径都为“/var/tmp”(当然在实际情况中也可以用其它路径)。

  安装在RedHat Linux 6.1下测试通过。

  要用“root”用户进行安装。

  OpenLDAP的版本号是1_2_8。

  软件包的来源

  OpenLDAP的主页:http://www.openldap.org/。

  下载:openldap-1_2_8.tgz。

  安装软件包需要注意的问题

  最好在编译前和编译后都做一张系统中所有文件的列表,然后用“diff”命令去比较它们,找出其中的差别并知道到底把软件安装在哪里。只要简单地在编译之前运行一下命令“find /* >ldap1”,在编译和安装完软件之后运行命令“find /* > ldap2”,最后用命令“diff ldap1 ldap2 > ldap”找出变化。

  编译

  把软件包(tar.gz)解压缩:

  [root@deep]# cp openldap-version.tgz /var/tmp

  [root@deep]# cd /var/tmp/

  [root@deep]# tar xzpf openldap-version.tgz

  编译和优化

  转到OpenLDAP的新目录下。

  编辑“string.h”文件(vi +52 include/ac/string.h),删掉这些几行:

  #else

  /* some systems have strdup(), but fail to declare it */

  extern char *(strdup)();

  上面的这几行对Linux系统是没有用的必须删掉。

  下面设置编译器的编译参数:

  CC="egcs"

  CFLAGS="-O9 -funroll-loops -ffast-math -malign-double -mcpu=pentiumpro -march=pentiumpro -fomit-frame-

  pointer -fno-exceptions"

  ./configure

  --prefix=/usr

  --libexecdir=/usr/sbin

  --localstatedir=/var/run

  --sysconfdir=/etc

  --enable-shared

  --with-gnu-ld

  这些编译参数告诉编译器如何编译OpenLDAP:

  l 编译共享库

  l 假定C编译器使用GNU ld

  开始编译:

  [root@deep]# make depend

  [root@deep]# make

  [root@deep]# cd tests/

  [root@deep]# make

  [root@deep]# cd ..

  [root@deep]# make install

  “make depend”命令编译必要的相关文件,“make”把源文件编译成可执行的二进制文件。“make install”把二进制文件和相关的配置文件安装到相应的目录中去。在“test”目录下的“make”命令在安装LDAP服务器之前进行一些必要的测试保证软件安装完成后能正常运行。如何测试失败在继续安装之前先要解决这些问题。

  [root@deep]# install -d -m 700 /var/ldap

  [root@deep]# echo localhost > /etc/openldap/ldapserver

  [root@deep]# strip /usr/lib/liblber.so.1.0.0

  [root@deep]# strip /usr/lib/libldap.so.1.0.0

  [root@deep]# strip /usr/lib/libldap.a

  [root@deep]# strip /usr/lib/liblber.a

  [root@deep]# strip /usr/sbin/in.xfingerd

  [root@deep]# strip /usr/sbin/go500

  [root@deep]# strip /usr/sbin/go500gw

  [root@deep]# strip /usr/sbin/mail500

  [root@deep]# strip /usr/sbin/rp500

  [root@deep]# strip /usr/sbin/fax500

  [root@deep]# strip /usr/sbin/rcpt500

  [root@deep]# strip /usr/sbin/slapd

  [root@deep]# strip /usr/sbin/ldif2ldbm

  [root@deep]# strip /usr/sbin/ldif2index

  [root@deep]# strip /usr/sbin/ldif2id2entry

  [root@deep]# strip /usr/sbin/ldif2id2children

  [root@deep]# strip /usr/sbin/ldbmcat

  [root@deep]# strip /usr/sbin/ldif

  [root@deep]# strip /usr/sbin/centipede

  [root@deep]# strip /usr/sbin/ldbmtest

  [root@deep]# strip /usr/sbin/slurpd

  [root@deep]# strip /usr/bin/ud

  [root@deep]# strip /usr/bin/ldapadd

  [root@deep]# strip /usr/bin/ldapsearch

  [root@deep]# strip /usr/bin/ldapmodify

  [root@deep]# strip /usr/bin/ldapmodrdn

  [root@deep]# strip /usr/bin/ldappasswd

  [root@deep]# strip /usr/bin/ldapdelete

  上面的“install”命令在“/var”目录下创建一个名为“ldap”的新目录并且把它的属性设成只能被超级用户“root”读、写和执行。

  “strip”命令清除目标文件中所有的符号信息,这样可执行文件就会更小,能够提高一点程序的性能。

  清除不必要的文件

  用下面的命令删除不必要的文件:

  [root@deep]# cd /var/tmp

  [root@deep]# rm -rf ldap openldap-version.tgz

  “rm”命令删除所有编译和安装OpenLDAP所需要的源程序,并且把“/var/tmp”目录下的OpenLDAP软件的压缩包删除掉。

  配置

  可以到这去下载“floppy.tgz”文件:http://pages.infinit.net/lotus1/doc/opti/floppy.tgz。把“floppy.tgz”文件解开之后,可以在相应的目录下发现我们在这本书中介绍的所有软件的配置文件。这样就没有必要手工重新生成这些文件,或者用拷贝粘贴的方法把它们粘贴到配置文件中去。不管是打算自己动手生成配置文件还是拷贝现成的,你都要学会自己修改配置文件并且把配置文件拷贝到正确的目录下。下面将具体说明。

  为了运行OpenLDAP,必须创建或者把下面的文件拷贝到相应的目录下:

  l 把“slapd.conf”文件拷贝到“/etc/openldap”目录下

  l 把“ldap”文件拷贝到“/etc/rc.d/init.d”目录下

  可以把“floppy.tgz”解压之后,找到上面列出来的文件,并拷贝到“/etc/ssh”目录下,或者用拷贝粘贴的方法从本书中直接粘贴出。

  配置“/etc/ldap/slapd.conf”文件

  “/etc/openldap/slapd.conf”文件是LDAP服务器最重要的配置文件,配置权限、口令、数据库类型和数据库位置等等。

  编辑“slap.conf”文件(vi /etc/openldap/slapd.conf)加入:

  #

  # See slapd.conf(5) for details on configuration options.

  # This file should NOT be world readable.

  #

  include /etc/openldap/slapd.at.conf

  include /etc/openldap/slapd.oc.conf

  schemacheck off

  #referral ldap://ldap.itd.umich.edu

  pidfile /var/run/slapd.pid

  argsfile /var/run/slapd.args

  #######################################################################

  # ldbm database definitions

  #######################################################################

  database ldbm

  suffix "o=openarch, c=com"

  directory /var/ldap

  rootdn "cn=admin, o=openarch, c=com"

  rootpw secret

  # cleartext passwords, especially for the rootdn, should

  # be avoid. See slapd.conf(5) for details.

  # ldbm indexed attribute definitions

  index cn,sn,uid

  index objectclass pres,eq

  index default none

  # ldbm access control definitions

  defaultaccess read

  access to attr=userpassword

  by self write

  by dn="cn=admin, o=openarch, c=com" write

  by * compare

  下面解释一下上面配置文件中的一些设置:

  suffix “o=openarch, c=com”

  suffix(后缀)设置想要创建的子树的根的DN(dist
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,