Hi,
I'm newbie of Oracle directory server. When trying to import the ldif file to the oracle directory server 11.1.1.7.0 using the command:
$ dsconf create-suffix -h localhost -p 4000 dc=hyperion,dc=com
$ dsconf import -h localhost -p 4000 <path>/10000users.ldif dc=hyperion,dc=com
It generate messages as:
New data will overide existing data of the suffix"dc=hyperion, dc=com"
Initialization will have to be performed on replicated suffixes
And lots of warning as:
skipping entry "uid=user0000,ou=People,dc=hyperion, dc=com" which has no parent, ending at line xxx of file '10000users.ldif'
The 1000users.ldif is as:
dn: uid=user0000, ou=People, dc=hyperion, dc=com
uid: user0000
objectClass: top
objectClass: person
objectClass: organizationalPerson
objectClass: inetorgperson
cn: User 0000
userPassword: password
givenName: User
sn: 0000
dn: uid=user0001, ou=People, dc=hyperion, dc=com
uid: user0001
objectClass: top
objectClass: person
objectClass: organizationalPerson
objectClass: inetorgperson
cn: User 0001
userPassword: password
givenName: User
sn: 0001
...
dn: uid=user9999, ou=People, dc=hyperion, dc=com
uid: user9999
objectClass: top
objectClass: person
objectClass: organizationalPerson
objectClass: inetorgperson
cn: User 9999
userPassword: password
givenName: User
sn: 9999
Did I miss any steps or the LDIF file I got has some missings?
Thanks!