Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
2answers
740 views

LDIF Parser (C#)

I am looking for an LDIF parser for C#. I am trying to parse an LDIF file so that I can check objects don't exist before adding them. Adding them when the already exist using ntdsSchemaAdd) causes an ...
2
votes
1answer
368 views

How to validate an LDIF?

How to validate an LDIF? Similar to XML, XMLSchema and Schematron are there any libraries to validate an LDIF with an LDAP schema? Thanks, Chenz
2
votes
2answers
1k views

How to use LDAP credentials offline?

I would like to use an LDAP server (probably Apache directory) to manage logins and credentials for an application. From time to time the application needs to work offline (on a laptop) without a ...
1
vote
1answer
264 views

Active Directory to LDIF OpenLDAP

How would I create an LDAP that mimics the structure of a typical Active Directory? I need the following values to be included in each user: This isn't the right syntax but I want to add a user with ...
1
vote
1answer
247 views

Generate objectSID for LDIFDE import

i'm writing an AD sync tool, which takes an LDIF file exported from an AD A, applies some replaceing and skip rules and creates another LDIF file that can then be applied to an AD B. During the ...
1
vote
2answers
195 views

How to update ldap with ldif backups?

I have an openldap ldif backup file daily that I want to replicate in other server. I add the data with slapadd -v -l file.ldif but Can I update the changes that have occurred in my other ldap ...
1
vote
2answers
1k views

Importing a schema LDIF and content LDIF on every startup of ApacheDS?

I want my embedded ApacheDS to start up with a fresh schema/content when I run my tests. I tried to import a LDIF with this lines: LdifFileLoader ldifLoader = new ...
1
vote
6answers
307 views

Are most LDAP administrators creating LDIFs by hand?

Are there tools that make the job easier? If command-line only tools exist, then can anyone speculate if there is a market for a GUI tool? For example, you can create a relational database by modeling ...
0
votes
2answers
39 views

unwrap ldifde output file

I'm exporting a schema using ldifde but the output file wraps long lines so it's hard to manually edit with thousand's lines. I have to edit the file because I must replace a string there, for ...
0
votes
1answer
59 views

How to verify if an object does exist in a directory (LDAP or AD) using jndi?

Currently we are doing something like: Attributes attributes = directoryConnection.find(filter, false); if (attributes == null) { // then the object does not exist } i think this is not ...
0
votes
1answer
106 views

Can't get ApacheDS to load the example data file

In ApacheDS, I'm trying to load the sample LDAP data provided in ldif format and with instructions here. I followed the same pattern I used to load the context record by specifying an ldif file in ...
0
votes
1answer
65 views

Display Attributes in User Properties in Active Directory

Is it possible to display the hidden attribute, EmployeeID or EmployeeNumber under the General Tab in a user's Active Directory Account? If so, how.....
0
votes
1answer
268 views

How do I delete one attribute in LDAP with LDIF?

How do I delete one attribute in LDAP with LDIF? I an trying to delete "uniqueMember: cn=jsmith,ou=users,dc=s2rsolutions,dc=com" can someone please show me the ldif to do it dn: ...
0
votes
1answer
340 views

I want a shell script that reads a specific attribute value from an ldapsearch result

I am trying to write a script that finds the checks homefolder quotas, and sends emails to users who are exceeding a certain percentage of their quota, we have 389 ldap server, I can search the ldap ...