Hello All
Just installed LDAP server (OpenLDAP) on Ubuntu with following base root dn
settings:
cn=admin,dc=nodomian
Added few organisation units to it using command line utility 'ldapadd' and
few using ldap browser - 'phpldapadmin'
Then I felt like playing with Perl to connect to LDAP server a
un, Sep 20, 2009 at 10:38 PM, Parag Kalra wrote:
> Hello All
>
> Just installed LDAP server (OpenLDAP) on Ubuntu with following base root dn
> settings:
> cn=admin,dc=nodomian
>
> Added few organisation units to it using command line utility 'ldapadd' and
> few us
Hi Friends,
I guess we all know that using ldif files we can add or modify the directory
contents using OpenLDAP command line applications as shown below:
E.G: ldapadd -v -x -D "cn=admin,dc=nodomain" -H ldap://192.168.1.31:389 *-f
add_org.ldif* -W
Now "Net::LDAP' provides "add" method which takes
pt can read the file, split each line in variables, delete
> the ldap entry, add the ldap entry as per above...
>
> Good luck,
> Ernest
> - Message d'origine -
> De: Parag Kalra
> Date: Sun, 4 Oct 2009 18:21:51 +0530
> Sujet: Using LDIF file with Net::LDAP
> À: p
Was away from scene for a while...
BTW thanks Graham...I have been able to successfully import entire data from
LDIF file using Net::LDAP::LDIF module...
Thanks once again...
Cheers,
Parag
On Mon, Oct 5, 2009 at 6:01 PM, Graham Barr wrote:
>
> On Oct 4, 2009, at 7:51 AM, Parag Kalra