OpenLDAP 模式错误

OpenLDAP 模式错误

我想将一些模式导入 LDAP。但我收到此错误:

ldapadd: invalid format (line 21) entry: ""

这是包含架构的文件:

# ****-Schema-Datei.
#
# OID prefix: 1.3.6.1.4.1.29508
# Attributes: 1.3.6.1.4.1.29508.1.1
#
# Depends on: nis.schema, which depends on cosine.schema
attributetype: ( 1.3.6.1.4.1.29508.1.1.1 NAME 'domain'
        DESC 'A mail domain'
        EQUALITY caseIgnoreIA5Match
        SUBSTR caseIgnoreIA5SubstringsMatch
        SYNTAX 1.3.6.1.4.1.1466.115.121.1.26
        SINGLE-VALUE )

attributetype: ( 1.3.6.1.4.1.29508.1.1.2 NAME 'forward'
        DESC 'Forward to mail address'
        EQUALITY caseIgnoreIA5Match
        SUBSTR caseIgnoreIA5SubstringsMatch
        SYNTAX 1.3.6.1.4.1.1466.115.121.1.26{256} )

objectclass: ( 1.3.6.1.4.1.29508.1.2.1 NAME '****Domain' SUP top STRUCTURAL
        DESC 'Domain used for mail server'
        MUST ( domain )
        MAY ( description ) )

objectclass: ( 1.3.6.1.4.1.29508.1.2.2 NAME '****MailAccount' SUP top STRUCTURAL
        DESC 'Mail account object'
        MUST ( mail $ uidNumber $ gidNumber $ userPassword )
        MAY ( description ) )

objectclass: ( 1.3.6.1.4.1.29508.1.2.3 NAME '****MailAlias' SUP top STRUCTURAL
        DESC 'Mail aliasing forwarding entry'
        MUST ( mail $ forward )
        MAY ( description ) )

objectclass: ( 1.3.6.1.4.1.29508.1.2.4 NAME '****Account' SUP top AUXILIARY
        DESC 'User account'
        MUST ( homeDirectory )
        MAY ( uidNumber $ gidNumber $ uid $ cn $ description $ loginShell $ userPassword $ mail ) )

我刚刚将本网站上的我们组织的名称替换为****。

为什么我会收到这个错误?

感谢您的帮助。

制造

保罗

答案1

ldapadd加载 LDIF 文件,您正在尝试加载架构文件。如果可用,请加载架构的 LDIF 版本,或者按照此处的说明将架构文件转换为其 LDIF 等效版本https://www.lisenet.com/2015/convert-openldap-schema-to-ldif/创建一个最小的slapd.conf包括模式并将其转换为表单cn=config

相关内容