1

質問1:

apacheds 2.0 組み込み LDAP サーバーを使用しています。サービスの起動時に問題が発生しています。何が間違っている可能性がありますか?

エラーメッセージ:

09:40:43.657 [main] ERROR o.a.d.a.l.m.entry.DefaultAttribute - ERR_04487_ATTRIBUTE_IS_SINGLE_VALUED The attribute 'dc' is single valued, we cant add no more values into it
09:40:43.658 [main] WARN  o.a.d.s.c.n.NormalizationInterceptor - The Rdn 'dc=example' is not present in the entry
Exception in thread "main" org.apache.directory.api.ldap.model.exception.LdapException: ERR_04269 OBJECT_CLASS for OID ou does not exist!
    at org.apache.directory.api.ldap.model.schema.registries.DefaultSchemaObjectRegistry.lookup(DefaultSchemaObjectRegistry.java:176)
    at org.apache.directory.api.ldap.schemamanager.impl.DefaultSchemaManager.lookupObjectClassRegistry(DefaultSchemaManager.java:1656)

Java コード:

Partition examplePartition = addPartition("example", "dc=example,dc=com");

// Index some attributes on the apache partition
addIndex(examplePartition, "objectClass", "ou", "uid");

    // And start the service
service.startup();

// Inject the context entry for dc=foo,dc=com partition if it does not already exist
try {
  service.getAdminSession().lookup(examplePartition.getSuffixDn());
}
catch (LdapException lnnfe) {
  Dn dn = new Dn("dc=example,dc=com");
  Entry entry = service.newEntry(dn);
  entry("objectClass", "top", "domain", "extensibleObject", "ou", "o", "mail");
  entry("dc", "example", "com");
  // entry("ou", "people");
  // entry("o", "exampleinc");
  service.getAdminSession().add(entry);
}

質問 2: サービスが起動したら、ldif ファイルをインポートしたいと思います。私のファイルは正しいですか?OU と O をファイルで設定する必要がありますか、それともサービス コードで設定する必要がありますか? 例はありますか?

ldif ファイル:

dn: ou=people,dc=example,dc=com
ou: people
objectclass: top
objectclass: organizationalUnit

dn: o=exampleinc,dc=example,dc=com
o: exampleinc
objectclass: top
objectclass: organization

dn: cn=some guy,ou=people,o=exampleinc,dc=example,dc=com
objectClass: top
objectClass: person
objectClass: organizationalPerson
objectClass: inetOrgPerson
CN: some guy
sn: some_guy
givenName: someguy
name: some guy
uid: some_guy
mail: some_guy@example.com
4

3 に答える 3

0

あなたの問題はこの行だと思います: entry("dc", "example", "com");

エラーが示すように、多値ではありません。

構文についての手がかりはありませんが、次のようになると思います。 entry("dc", "dc=example,dc=com");

またはそうでなければ

entry("dc", "example.com");

于 2013-10-28T19:26:24.470 に答える
0

コンポーネントごとに別々の entry() 呼び出しが必要だと思います:

entry("dc", "example");
entry("dc", "com");
于 2014-01-06T06:27:32.260 に答える