共计 1203 个字符,预计需要花费 4 分钟才能阅读完成。
迁移 LDAP,系统是 CentOS,拷贝 /var/lib/ldap/ 的数据到目标机器之后启动 openldap,发现错误:
[root@localhost lib]# /etc/init.d/slapd start
正在检查 slapd 的配置文件:[失败]
/etc/openldap/slapd.conf: line 110: invalid path: Permission denied
slaptest: bad configuration file!
权限设置各种设置,最后发现是 selinux 的问题。郁闷
不重启关闭 selinux:setenforce 0
永久关闭:
vim /etc/openldap/slapd.conf
设置
SELINUX=disabled
然后启动 ldap 就没有报错了。
走的弯路:
删除 openldap 导致 yum 出现问题
There was a problem importing one of the Python modules
required to run yum. The error leading to this problem was:
libldap-2.4.so.2: cannot open shared object file: No such file or directory
Please install a package which provides this module, or
verify that the module is installed correctly.
It’s possible that the above module doesn’t match the
current version of Python, which is:
2.6.5 (r265:79063, Jun 25 2011, 08:36:25)
[GCC 4.4.4 20100726 (Red Hat 4.4.4-13)]
If you cannot solve this problem yourself, please go to
原因是删除了
rpm -ef openldap-2.4.23-34.el6_5.1.x86_64 –nodeps
所以最后找到 openldap-2.4.23-34.el6_5.1.x86_64.rpm 这个 rpm 包安装解决 yum 出现的问题
OpenLDAP 的详细介绍:请点这里
OpenLDAP 的下载地址:请点这里
相关阅读:
Liferay Portal 配置使用 Oracle 和 OpenLDAP http://www.linuxidc.com/Linux/2012-07/66928.htm
Axigen+OpenLDAP+BerkeleyDB+ejabberd 多域 +JWchat 详细配置 http://www.linuxidc.com/Linux/2012-06/61598.htm
CentOS 部署 OpenLDAP 认证 http://www.linuxidc.com/Linux/2012-04/57932.htm