记录openldap配置过程中的问题
ldap_modify: Other (e.g., implementation specific) error (80)
可能是由于配置文件中的某些段的顺序问题导致,按如下顺序重新编辑:
dn: cn=config
changetype: modify
replace: olcTLSCertificateKeyFile
olcTLSCertificateKeyFile: /etc/openldap/certs/your_key
dn: cn=config
changetype: modify
replace: olcTLSCertificateFile
olcTLSCertificateFile: /etc/openldap/certs/your_certificate
再次运行下面命令:
ldapmodify -Y EXTERNAL -H ldapi:/// -f your_file.ldif
问题解决