adding user programmatically

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Hi,

Am switching over from OpenLDAP to Fedora DS.

The Java code that was creating user entries in OpenLDAP isn't working with
Fedora DS and I thought perhaps the reason would be obvious to someone out there.

This is what was working with OpenLDAP:

            dirContext = new InitialDirContext(anonymousEnv);

            // need to be administrator to do this
            dirContext.addToEnvironment(Context.SECURITY_PRINCIPAL, ADMIN_DN);
            dirContext.addToEnvironment(Context.SECURITY_CREDENTIALS,ADMIN_PWD);

            // ref: RFC 2798
            // the inetOrgPerson represents people who are associated with an organization in some way.
            // mandatory attributes for inetOrgPerson are: cn, objectClass, sn

            Attribute ocAttr = new BasicAttribute("objectClass", "top");
            ocAttr.add("person");
            ocAttr.add("organizationalPerson");
            ocAttr.add("inetOrgPerson");

            // create the attribute set
            Attributes attrs = new BasicAttributes(true); // as LDAP attribute names are case-insensitive
            attrs.put(ocAttr);
            attrs.put("cn", username);
            attrs.put("sn", username); // not relevant but mandatory and can't put "" in there
            attrs.put("userPassword", password);
            attrs.put("uid", uid);

            // create entry in directory
            logger.debug("About to create subcontext: "+dn);
            accountContext = dirContext.createSubcontext(dn, attrs);

Error I'm getting with Fedora DS at the last line of that code is:

javax.naming.AuthenticationException: [LDAP: error code 49 - Invalid Credentials]


Have tried with ldapadd from the command line to create a user entry with all the same values and
that works ok, so I'm a bit puzzled why the code doesn't work here.

If anyone has any ideas, would appreciate them.

Thanks,
Derek

Please access the attached hyperlink for an important electronic communications disclaimer: http://www.lse.ac.uk/collections/secretariat/legal/disclaimer.htm




[Index of Archives]     [Fedora User Discussion]     [Older Fedora Users]     [Fedora Announce]     [Fedora Package Announce]     [EPEL Announce]     [Fedora News]     [Fedora Cloud]     [Fedora Advisory Board]     [Fedora Education]     [Fedora Security]     [Fedora Scitech]     [Fedora Robotics]     [Fedora Maintainers]     [Fedora Infrastructure]     [Fedora Websites]     [Anaconda Devel]     [Fedora Devel Java]     [Fedora Legacy]     [Fedora Desktop]     [Fedora Fonts]     [ATA RAID]     [Fedora Marketing]     [Fedora Management Tools]     [Fedora Mentors]     [Fedora Package Review]     [Fedora R Devel]     [Fedora PHP Devel]     [Kickstart]     [Fedora Music]     [Fedora Packaging]     [Centos]     [Fedora SELinux]     [Fedora Legal]     [Fedora Kernel]     [Fedora QA]     [Fedora Triage]     [Fedora OCaml]     [Coolkey]     [Virtualization Tools]     [ET Management Tools]     [Yum Users]     [Tux]     [Yosemite News]     [Yosemite Photos]     [Linux Apps]     [Maemo Users]     [Gnome Users]     [KDE Users]     [Fedora Tools]     [Fedora Art]     [Fedora Docs]     [Maemo Users]     [Asterisk PBX]     [Fedora Sparc]     [Fedora Universal Network Connector]     [Fedora ARM]

  Powered by Linux