配置 – 将OpenLDAP从cn = config切换到slapd.conf

前端之家收集整理的这篇文章主要介绍了配置 – 将OpenLDAP从cn = config切换到slapd.conf前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在Debian 6(或ubuntu 12.04)上的新的OpenLDAP安装中,我想从现代的cn = config配置样式切换到传统的slapd.conf配置.我听说这是可能的,但到目前为止我还没有找到描述,操作方法或教程.

我怎么能这样做,或者我在哪里可以看到?

好的,发现自己.请注意我在全新安装时这样做,所以没有数据损坏.如果您在生产系统上执行此操作,请确保您可以回滚:)

所以,在debian 6上你可以这样做:

service slapd stop # stop the service
mv /etc/ldap/slapd.d /root # move the cn=config configuration
cp /usr/share/slapd/slapd.conf /etc/ldap/ # get new sample config
# make changes to sample config so that it can work
sed -i "s/@BACKEND@/hdb/" /etc/ldap/slapd.conf
sed -i "s/@SUFFIX@/dc=acme,dc=org/" /etc/ldap/slapd.conf
sed -i "s/# rootdn/rootdn/" /etc/ldap/slapd.conf
# manually execute "slappasswd" on the command line to generate a root pw
# then add the following line (without "#") after rootdn
# rootpw <crypted password>
sed -i "s/@ADMIN@/cn=admin,dc=acme,dc=org/" /etc/ldap/slapd.conf
mv /var/lib/ldap/* /root # remove old config database
service slapd start # start service again

进一步的配置可能是nessassary,但这为您提供了一个可以通过传统的slapd.conf配置的系统

原文链接:https://www.f2er.com/bash/385437.html

猜你在找的Bash相关文章