How to create an new administrator with ldif files

I need another administrator as orcladmin for create an new tree in OID 11g which groups and right must this administrator have?

Although you can create a superuser account that is able to manage entries, it won't be able to do so using ODSM until 11g Patchset 4.
What this means is that you may use ldapbind/ldapmodify/ldapadd/ldapdelete commands with this new user to do the same operations that you would normally only do using the superuser, but that until a future patchset (currently slated for 11g patchset 4), this user will not be able to login to ODSM.
Attempts to login to ODSM as this new user will fail with:
Error:
ODSM allows only super user to connect to OID.
Connected user is not a super user.
Identify the groups that the superuser is in, as follows:
ldapsearch -p <OID_port> -h <OID_host> -D "cn=orcladmin" -w <pwd> -b "" -s sub "uniquemember=cn=orcladmin" dn
Create a new user entry, to be used as the second superuser.
Add this user as a uniquemember to all the same groups returned in. This can either be done manually, or via the ldapmodify/ldapadd command with an LDIF file with the following syntax:
newadmin.ldif
dn: cn=odisgroup,cn=odi,cn=oracle internet directory
changetype: modify
add: uniquemember
uniquemember: cn=myadmin,cn=users,dc=myorg,dc=com
dn: cn=Provisioning Admins,cn=changelog subscriber,cn=oracle internet directory
changetype: modify
add: uniquemember
uniquemember: cn=myadmin,cn=users,dc=myorg,dc=com
ldapadd -p <OID_port> -h <OID_host> -D "cn=orcladmin" -w <pwd> -f newadmin.ldif
Thanks,
ABP

Similar Messages

  • How to create full new user with all privileges

    how to create full new user with all privileges?
    and how to delete existing users?
    Thanks in advance..

    Common solution is probably to use sudo for privilege elevation, wiki should help

  • How to create the new row with existing values

    Hi all,
    first of all i create a row,
    i opened that in edit mode,
    suppose i want to edit any one of the value in that recordd,
    that time compulsory create a new row with those valuess.
    how can i create a new row with those valuess.

    Hi Anusha,
    This code correct for your requirement, only thing is you are not able to modify it as per your requirement.
    What you have to do is:
    1. Copy queried row into into new row, change primary key values(but don't commit your changes here).
    2. Now you have two rows in your VO(OLD as well as New)
    3. Make any changes if you want using User Interface.
    4. At the save button first compare OLD and NEW row, if any value is differing then commit the chnages(it will insert new row in corresponding database table), if no changes are there I mean to say OLD value and NEW rows are same then rollback(it will remove copied row from VO and no row will be inserted in database.)
    While comparing rows please note that Primary keys will not be same so don't compare Primary keys while comparing rows.
    I hope it will help you.
    Regards,
    Reetesh Sharma

  • How to create a new session in JSP file

    Usually a child IE window uses same session with parent window. Dose someone know how to create a new session when creating a new IE window by clicking a URL in parent window? The web page is writen by jsp file.

    I am not sure of your question. Are you wanting to have 2 Session objects (one for the parent window and another for the child)?
    A session is usually created once per client and is stored on the server the session id is carried around in a cookie or a URL rewrite so that everytime the user submits a page you will be able to store/access information.
    // this will create a new session object if one doesn't already exist.
    HttpServletRequest.getSession( true );
    Hope this helps

  • Creating a new database with exporrt file

    Hi there,
    I am to create a new database with an export file.
    I have the export file (exp) and the new environment set up (Oracle10g on UNIX)
    Can someone gimme some guide lines and what I might probably face and new to correct.
    Regards.

    Well I don't think that it would be possible to show you a full db import/export here. All you need to do s a full database import from the source database to the target database.
    And I have to rrename
    the db to some other name.
    Use the DBNEWID utility to do it.
    http://download.oracle.com/docs/cd/B19306_01/server.102/b14215/dbnewid.htm#i1004664
    HTH
    Aman....

  • How to create a new folder with a different name everyday

    Hello everybody,
    I have another question if you don't mind. But first thank you again to V.K and red menace for helping me with the my previous post.
    This is actually the same project, I just keep on seeing new obstacles when I'm almost done.
    Below is my workflow. My workflow is exporting a quicktime movie to a folder in our server.
    What I need to do at the end is to move the exported file into a folder but a folder needs to be created and it has to change at about midnight everyday.
    For example today the file will go to Server>Client folder>File folder named 09-04-2008
    Then the next day, I need to put the new exported files to Server>Client folder>File folder named 09-05-2008.
    First, how can I create a sequential named folders and second how can I tell Automator to put the files in the right folders. This process is a 24 hour process.
    Thanks for you future help.
    Helmut
    1) Get Specified Finder Items (Pointing to File Folder)
    2) Get Folder Contents (tried checked and uncheck on Repeat for each subfolder
    3) Get Specified movie ( I guess Filter finder items and choose .mov will work too)
    4) Quicktime Export (exporting it to the Exported Folder)
    5) Get Specified Finder Items (Pointing to File folder to get to the original file)
    6) Get Folder Contents
    7) Filter Finder Items (choose .mov)
    8) Move Finder Items ( pointing to Archive Folder to move the original file)
    9) Get Specified Finder Items (Pointing to Exported Folder)
    10) Get Folder Contents
    11) Filter Finder Items (.mov)
    12) Move Finder Items (Pointing to Server Folder)

    It doesn't look like there is an easy way to do this. The sort and filter actions don't let you use variables, and I haven't found any actions that will alter a list. Making a text file with the name of the newest folder seems kind of clunky, but it is an option.
    What I was thinking about was an action that would take the first item in a list - then you could get your backup folders, sort by creation date, and just take the top one in the list (the newest one). Hmmm - this should be fairly straight-forward, so maybe I'll write an action
    In the mean time, give the Run AppleScript action in the following workflow a try.
    Tested workflow:
    1) Ask for Finder Items (Type: Folders)
    2) Get Folder Contents
    3) Sort Finder Items (by creation date in ascending order)
    4) Run AppleScript (the following script)
    <pre style="
    font-family: Monaco, 'Courier New', Courier, monospace;
    font-size: 10px;
    margin: 0px;
    padding: 5px;
    border: 1px solid #000000;
    width: 720px;
    color: #000000;
    background-color: #FFDDFF;
    overflow: auto;"
    title="this text can be pasted into an Automator 'Run AppleScript' action">
    on run {input, parameters}
    return the first item in the input list
    input: a list of anything
    output: the first item, or {} if none or error
    set output to {}
    try
    set the end of the output to the first item of the input
    end try
    return output
    end run</pre>
    5) View Results
    The above workflow should return the newest item in the selected folder.

  • How to create a new Activity with report

    I would want to know how I do to create a link in a report that connects me to the page of the Client to add a new record of activity if i want.
    Substantially this link allows me to create a new activity in an agency that I directly select from the report.
    Thank Vale.

    Hi
    You should use the observer user for performing read-only operations.
    This is one of the users that is created when you installed AccAD.
    Here is the section that mentions it from our administration guide:
    You are asked to provide passwords for the root, admin, and observer
    users. Make note of these passwords since you will be required to provide them later.
    When the installation is complete, log out root and log on again as admin.
    Important
    Perform any additional operations using the secured admin account. You can use the observer account to access the AccAD Administrator web UI in read-only mode only; this user cannot log on to the machine.
    Best,
    Zeev

  • How to create a new track with existing changes in the production

    Hi
    I need to create a new track for the ESS package with the existing changes that we already made to the ESS package. We already have a development track and the customisation to the ESS package has been already done in that track. Now my requirement is to create a new track ( DEV, CONS, TEST and PROD) with DEV having all the existing changes we made. In short how do I import the SCA's from development track PROD to the new track DEV. We are on NW2004 SPS20.
    points rewarded for helpful answers
    Thanks
    Sheril

    Param
    Have you done the import in DEV and CONS  and then Assembled .. ?
    If yes then go to /usr/sap/jtrans/CMS/archives/.......... -> check for the track name and then the last .SCA file in it . Copy that SCA file in the /usr/sap/jtrans/CMS/inbox  and go to the new track and configure the checkin to inbox ... You should see the SCA in there ... check those in and you are ready to have those SCA in your Production track ..
    If no then you need to know the NWDS functions .. I shall send you the details to bring the incomplete changes (not assembled) to new track .. let me know if the first one worked ..
    Thanks
    Rahul

  • How to create a new index with already indexed folder

    Hi
    I have a requirement to create a new index.
    I can able to create index. But,When i am specifying the data source, i am trying to include a data source which was already indexed in another index.
    The system giving error that "The folder is already indexed and its available in another index".
    How should i specify same folder in different indexes?

    Hi Patricio,
    Thanks for your reply.
    Our requirement is
    From your example, lets take
    index1 containts a data sources \folder1.
    and i have a requirement to create another index called index2 with data sources
    1) \folder1
    2) \testfolder\testfolder1.
    From help.sap.com i understand that there is no way to specify the same folder in different indexes.
    I am looking for, Is there any solution to meet my requirement
    Thanks

  • How to create a new document with a given theme, instead of choosing it every time.

    Hi,
    for work I only use a custom made keynote theme.
    I've already deleted all the default themes, and the only one that is listed in the app is the one I actually use.
    However every time I create a new document I have to chose its theme (that's normal having plenty of themes, but in my case is just a waste of time).
    I was wondering if there's a way to tell keynote to start a new document with a given theme, in order to avoid to chose it every time.
    Thank you for reading and for the help you will give.
    Giacomo

    Keynote > Preferences > General tab
    select “Use theme,” and then click Choose to select a theme.

  • How to create a new IView with a new User assigned to it?

    Hi All,
    I have a Web Dynpro application and I want that to use in Portal.
    I am creating a IView..and  a Role and assigning  it to a created User.
    But when I am logging in with the new User I am getting an error. The Error is some Desktop.
    Can any provide me the steps for the creation of the same.
    Regards
    DK

    Hi,
    Here is the step-by-step procedure to create a web dynpro iView in portal:
    1. Logon to portal.
    2. Content Administration->Portal Content.
    3. Right Click on the folder 'Portal Content'.
    4. Select 'iView' ->'New'
    5. In the Template Selection, select 'SAP Web Dynpro iView' and click 'Next'
    6. In the 2nd step, Give iView Name and iView ID and a prefix. Next.
    7. Select application variant, say, 'Java' in the 3rd step. Next.
    8. In the 4th step, select the System (Your WAS System), give the project name of your webdynpro, like, local/ABC_Project in the WebDynproNameSpace. In the Application Name, enter the application name of your Web Dynpro Application, say ABC_App. Next.
    9. Finish.
    10. In the left panel, now you will see an iView has been created.
    11. Create necessary role/workset and assign this iView for an user.
    Regards,
    Vijayakhanna Raman

  • How to create a new service with HD TS and MHP in IRT MHP-RI?

    In IRT Reference Implementation, if I have a ts in harddisk and a xlet, and I want to bind them together. Can anyone tell me how to achieve this goal?
    I know I should use AIT generator but I don't know where to put the resulted .ait file. The TS is an AV file with fixed NID, ONID, and TSID.

    Hi Marcos,
    thank you so much!!!
    After changing the cardinality the return type of the operation "findByName" switches to "java.util.List". Everything is working now!
    The code now looks like this:
    @com.sap.caf.dt.CAFOperation(name="findByName")
         public java.util.List<com.sap.demo.carpool.modeled.Test> findByName(java.lang.String name) throws com.sap.caf.rt.exception.CAFServiceException {
              java.util.List<com.sap.demo.carpool.modeled.Test> out = this.gettestService().findByName(QueryFilterFactory.createFilter(name));
              return out;
    Thank you so much! I'm so happy .... This problem frustrated me ....
    Thank you ....

  • How do I create a new administrator account?

    I want to create a new administrator account and then move everythng (files, etc.) over to the new account. Then I would delete the old account.
    How do I do that? I am running 10.7.5 on a Macbook Pro.
    Thanks,
    Catherine

    Open System Preferences / Users & Groups with your current admin account.
    Click the Lock icon (lower left) to unlock Users & Groups.
    Click the "+" sign to add a new user. Select Administrator from the dropdown user type.
    Enter the new user's name and password.
    You will have to give yourself access to the folders of the new User, otherwise you can't copy files to them. You may also have to change permissions on each file in your folders so your new user has Read/Write access.

  • I forgot my digital signature password. How do I create a new one with the same email.

    I can not remember my digital signature password. I've attempted to create a new one with the same email address. The message I receive is that i already have a digital signature with that email. I would like to use the same email address.

    You probably mean that you forgot your digital certificate password and I presume that this is a self-signed certificate that you yourself created, not a certificate that you received from a Certificate Authority (CA). If this is true then you can create a new self-signed digital certificate (Digital ID in Acrobat-speak) the same way you created the first one: In Acrobat XI it is Edit->Preferences->Signatures->Identities&Trusted Certificates->More. Then click on "Add ID" button and follow the prompts. You can create as many self-signed certificates with the same credentials (name, email, etc.) as you wish. You'd have to figure out how to distinguish them, though.

  • How can i create a new user with only read rights ?

    How can i create a new user with only read rights ?

    You are asking about a Database User I hope.
    You can look into the Oracle 8i Documentation and find various privillages listed.
    In particular, you may find:
    Chapter 27 Privileges, Roles, and Security Policies
    an intresting chapter.
    You may want to do this with the various tools included with 8i - including the
    Oracle DBA Studio - expand the Security node and you can create USERS and ROLES.
    Or use SQL*Plus. To create a
    user / password named John / Smith, you would login to SQL*Plus as System/manager (or other) and type in:
    Create user John identified by Smith;
    Grant CONNECT to John;
    Grant SELECT ANY TABLE to John;
    commit;
    There is much more you can do
    depending on your needs.
    Please read the documentation.
    -John
    null

Maybe you are looking for

  • Perform Payroll Posting using Internal Order

    Hi All, I would like to know what configuration that must be done to ensure that during payroll posting budget checking is performed using internal order. I already searched in all available resources but found nothing. I read SAP Note 648594 but I s

  • Display Link in New Region on Same Page

    Hi, I am trying to figure out how to make a page link within a region post to a different region on the same page or at least in a new window instead of the same window. Thanks In advance, Emily

  • Re: Premiere Pro CS6 (6.0.5) HDV Capture Crash Bug

    Application Manager says I have the latest updates of everything as of today (3/18/14)... and it is still crashing. Using iMovie capture as a workaround. Pretty lame.

  • Identity Button not working

    Some encrypted websites like newegg needs to refreshed in order to correctly display the Identity Button. Sometimes its just the globe, then i refresh and its green. Happens a lot more now that im using FF 22. I was just buying some games on steam an

  • Salience Engine and Sentiment Analysis

    Hi , Can anyone tell me how can i add my own sentiments keywords and tell which word should be goes into positive or which goes into negative ?? Can i create my own language in the lexalytics tool and access them into the keywords as the data into th