簡體   English   中英

如何使用JNDI將OU添加到LDAP中

[英]How to add OU into LDAP using JNDI

我想從JNDI向LDAP添加一個新的OU 我的LDAP服務器是通過OpenDS設置的。

這是我的代碼:

public static void main(String args[])
{
    String INITCTX = "com.sun.jndi.ldap.LdapCtxFactory";
    String MY_HOST = "ldap://localhost:1389";
    String MGR_DN = "cn=Directory Manager";
    String MGR_PW = "password";
    String MY_SEARCHBASE = "dc=QuizPortal";

    try
    {
        Hashtable env = new Hashtable();

        env.put(Context.INITIAL_CONTEXT_FACTORY, INITCTX);

        env.put(Context.PROVIDER_URL, MY_HOST);

        env.put(Context.SECURITY_AUTHENTICATION, "simple");
        env.put(Context.SECURITY_PRINCIPAL, MGR_DN);
        env.put(Context.SECURITY_CREDENTIALS, MGR_PW);

        DirContext ctx = new InitialDirContext(env);

        Attributes attrs = new BasicAttributes(true); // case-ignore
        Attribute objclass = new BasicAttribute("objectclass");
        objclass.add("top");
        objclass.add("organizationalUnit");
        attrs.put(objclass);

        ctx.createSubcontext("ou=NewOu", attrs);
    }

    catch(Exception e)
    {
        e.printStackTrace();
        System.exit(1);
    }
}

這是錯誤消息:

javax.naming.NameNotFoundException: [LDAP: error code 32 - The provided entry ou=NewOu cannot be added because it does not have a parent and is not defined as one of the suffixes within the Directory Server]; remaining name 'ou=NewOu'
        at com.sun.jndi.ldap.LdapCtx.mapErrorCode(LdapCtx.java:3066)
        at com.sun.jndi.ldap.LdapCtx.processReturnCode(LdapCtx.java:2987)
        at com.sun.jndi.ldap.LdapCtx.processReturnCode(LdapCtx.java:2794)
        at com.sun.jndi.ldap.LdapCtx.c_createSubcontext(LdapCtx.java:788)
        at com.sun.jndi.toolkit.ctx.ComponentDirContext.p_createSubcontext(ComponentDirContext.java:319)
        at com.sun.jndi.toolkit.ctx.PartialCompositeDirContext.createSubcontext(PartialCompositeDirContext.java:248)
        at com.sun.jndi.toolkit.ctx.PartialCompositeDirContext.createSubcontext(PartialCompositeDirContext.java:236)
        at javax.naming.directory.InitialDirContext.createSubcontext(InitialDirContext.java:178)
        at JUNDIAdd2.main(JUNDIAdd2.java:43)

附加信息:我有o=IT, dc=QuizPortal ,我想在其中添加新的OU

誰能指導我解決這個錯誤?

嘗試:

ctx.bind("ou=NewOu,o=IT", null, attrs);

您可能需要先設置ou屬性:

attrs.put("ou", "NewOu");

你有沒有嘗試過:

ctx.createSubcontext("ou=NewOu,dc=QuizPortal,o=IT", attrs);

或這個:

ctx.createSubcontext("ou=NewOu,dc=QuizPortal", attrs);

希望這個能對您有所幫助

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM