How to change path in oratab for ASM ?

RAC 11g @Linux RedHat.
In /etc/oratab I have a path to grid home with trailing '/' char. I want to remove it. I stopped cluster, changed /etc/oratab, started cluster but ASM agent overwrote the /etc/oratab. How to change it permanently ? How to persuade ASM agent the correct path ?
Thanks in advance.

I have 2 separate inventory.xml files. One for database home and one for grid. The line form grid inventory.xml:
<HOME NAME="oraGrid11gR2_20121015" LOC="/optware/grid/11.2.0.3" TYPE="O" IDX="1" CRS="true">
while in /etc/oratab is
"/optware/grid/11.2.0.3/"
And ps -ef | grep d.bin shows:
root     30218     1  0 Feb15 ?        00:01:31 /optware/grid/11.2.0.3/bin/ohasd.bin reboot
oracle   30674     1  0 Feb15 ?        00:00:01 /optware/grid/11.2.0.3/bin/mdnsd.bin
nobody   30736     1  0 Jan17 ?        01:54:40 /opt/gmond/bin/gmond -c /opt/gmond/etc/gmond.conf
oracle   31108     1  0 Feb15 ?        00:00:30 /optware/grid/11.2.0.3/bin/gpnpd.bin
oracle   31152     1  0 Feb15 ?        00:01:48 /optware/grid/11.2.0.3/bin/gipcd.bin
root     31188     1  0 Feb15 ?        00:09:14 /optware/grid/11.2.0.3/bin/osysmond.bin
oracle   31370     1  0 Feb15 ?        00:02:28 /optware/grid/11.2.0.3//bin/ocssd.bin <- double '/'
root     31558     1  0 Feb15 ?        00:00:21 /optware/grid/11.2.0.3/bin/octssd.bin reboot
oracle   31584     1  0 Feb15 ?        00:00:18 /optware/grid/11.2.0.3/bin/evmd.bin
root     32638     1  0 Feb15 ?        00:01:29 /optware/grid/11.2.0.3/bin/crsd.bin reboot

Similar Messages

  • How to change "No Password required" for Guest to "Yes"account under Somarsoft Dumpsec

    Check Content:
    Verify all accounts require passwords.
    Run the DUMPSEC utility.
    Select "Dump Users as Table" from the "Report" menu.
    Select the following fields, and click "Add" for each entry:
    UserName
    SID
    PswdRequired
    AcctDisabled
    Groups
    If any accounts have "No" in the "PswdRequired" column, this is a finding.
    Some built-in or application-generated accounts (e.g., Guest, IWAM_, IUSR, etc.) may not have this flag set, even though there are passwords present.  It can be set by entering the following on a command line: "Net user <account_name> /passwordreq:yes".

    Hi Malik,
    How to change "No Password required" for Guest to "Yes"account under Somarsoft Dumpsec
    Please contact SystemTools Technical support to get more efficient support regarding this matter:
    http://www.systemtools.com/support.htm
    http://www.systemtools.com/toolboard/
    Best Regards,
    Amy
    Please remember to mark the replies as answers if they help and un-mark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact [email protected]

  • How to change the sysadmin password for maintenance wizard if you have forg

    How to change the sysadmin password for maintenance wizard if you have forgotten the password and can't log in.

    Log into SQL*Plus as the $EOFUSER and do:
    update eof_user set password = 'passwd_you_want' where user_id = 0;
    commit;
    -Vikki
    Product and Development Manager for Maintenance Wizard

  • How to change the Display Pattern for Decimal Fields dynamically

    hi all,
    Can any one help me how to change the display pattern for decimal fields dynamically???
    Currently I am using z,zzz,zzz,zz9.999 Display pattern for Quantity Field. If the value is blank it is displaying as 0.000 on the Screen. But I don't want this to be printed.
    Please help me how to solve this ASAP.
    Thanks,
    Prabhu

    Hi,
    Alternatively you can handle it in the context.
    In the context area, click on the quantity. In the bottom, click on the conditions tab, and put a condition
    <quan field> NE initial.
    So the field will not be printed if there is no value.
    Regards,
    Vidya Chowdhary A.

  • How to change the package name for a msg class

    Can anybody tell me how to change the package name for a message class.
    and how will it effect in the rerport?
    thanks in advance
    kp

    >>and how will it effect in the report?
    You wouldn't see any direct effect on the Report.. But if you transport the report to QA & leave the Message class in Dev, it might result in syntax issues & you will not be able to execute the report. Just ensure that both of them get transported to QA & you will be fine.
    ~Suresh

  • How To Change Root Folder Reference for href - anythingslider links?

    How To Change Root Folder reference for href - anythingslider links?
    My root folder in Web Apps>Carousel in admin is set at /carousel/ (http://bestinscotland04.businesscatalyst.com/carousel/slide-2 - as an example) but I want it to link to a specific page at the root level (specifically /scottish-menswear/mens-highland-kilt-outfit).
    I can't find the controls, css, or html file to enable my picture to link to this product page.
    I'm sorry for the amateur question - I've never had formal training and it's always a reverse-engineering situation with me.
    Thank you.

    One way to address this is to use the Virtual Web Host feature.
    I've uploaded a simple application note to help guide you through the steps.
    An alternative would be to create an html at /Web/ which forwards to /Web/Joomla.  Not a great solution, I know.
    I'm sure there is a way to change the setting in a linux configuration file, but I don't know which file that is in.  Maybe some other linux savy community members could help out with that?

  • How to change RSAPublicKeySpec to Key for encrypt?

    I have RSAPublicKeySpec and I want to encrypt message with this key.
    How to change RSAPublicKeySpec to Key for encrypt message?

    I try to do this
    try {
    kf = KeyFactory.getInstance("RSA");
    pk = kf.generatePublic(pubCard);
    catch (NoSuchAlgorithmException ex4) { System.out.println("1");
    catch (InvalidKeySpecException ex4) { System.out.println("2");
    try {
    Cipher cipher = Cipher.getInstance("RSA");
    try {
    cipher.init(Cipher.ENCRYPT_MODE, pk);
    catch (InvalidKeyException ex2) { System.out.println("a");
    try {
    ticket = cipher.doFinal(mes.getBytes());
    catch (IllegalStateException ex3) {System.out.println("b");
    catch (IllegalBlockSizeException ex3) {System.out.println("c");
    catch (BadPaddingException ex3) {System.out.println("e");
    catch (NoSuchAlgorithmException ex1) {System.out.println("f");
    catch (NoSuchPaddingException ex1) {System.out.println("g");
    It cougth exception that "NoSuchAlgorithmException"
    What wrong with line
    Cipher cipher = Cipher.getInstance("RSA");
    please tell me

  • How to change the menu text for menu exit in Version 3.1i

    Hi,
    I am working on an enhancment in CJ02 transaction in 3.1i version. I have implimented menu exit for it , but I am unable to change the menu text for it.Please let me know how to change the menu text for that menu.
    Thanks
    Suman

    Hi Shree,
    Thanks for the response. Please find the Enhancement name here "CNEX0006".
    Thanks
    Suman

  • How to change the Safety Intervals for standard Content datasources

    Go to RSA2->give your datasource name ->setting up GEN delta
    It shows you whts the safety interval setting.
    <b>
    How to change the Safety Intervals for standard Content datasources since when I go to RSA2 edit and change options are always greyed out. let me know if there is any other transaction code or table to do this.</b>
    Thanks
    Soniya Kapoor

    Hi Soniya,
    1) try  RSA6.....also  RSA8 for additional info.
    2) useful link:
        http://help.sap.com/saphelp_nw04/helpdata/en/d0/4cc138944cfa06e10000000a11405a/content.htm
    Good luck, BB

  • How to change the account setting for App Store

    My last question wasn't so clear, so I would like to post again. I want to know how to change the account setting for App Store. I have changed in the Settings but it doesn't reflect in App Store.
    Thanks,

    once you sign out just click sign in and put the new email address in the "Username" field and your correct password then click OK
    it will look like it is doing nothing but give it time and it will sign you in with the new username.
    is it possible you have multiple itunes accounts?
    when you changed your itunes account from your me.com to your gmail.com address did you change it within the itunes Edit Account Info ('Store' menu then select 'View My Account', then sign in , select edit account info) or did you just create another itunes account?
    be well

  • How to change the browser used for Google search from context menu of selected text?

    How to change the browser used for Google search from context menu of selected text?
    It uses Safari. But I want to use Chrome (it's my default browser).

    How to change the browser used for Google search from context menu of selected text?
    It uses Safari. But I want to use Chrome (it's my default browser).

  • HT1689 How to change credit card account for purchasing

    How to change credit card account for purchasing

    On your computer's iTunes you should be able to edit your payment info by going into the Store > View Account menu option and logging into your account, and on your account's details page there should be a payment details link.  If you are doing it on an iOS device (iPad, iPhone or iPod Touch) then tap on your id in Settings > iTunes & App Store (Settings > Store on iOS 5 and below) and tap on 'View Apple ID' on the popup and log into your account  - that should also give you a payment details link on your account's page.
    Changing payment info : http://support.apple.com/kb/HT1918

  • PURCHASING-How to change the next approver for the Purchase Requistion(PR)-

    Hi All,
    Could you please let me know how to change the next approver for the Purchase Requistion(PR) from User "X" to "Y", as Y was manager of "X" and 'X' left the organization. how can i acheive this? can you please let me know the process ?
    Thanks,

    Hi,
    You have not mentioned the version you are using (11i or R12).. Are you using iProcurement... ? Are you using positional or Employee-Supervisor hierarchy..?
    Your question : How to change the next approver for the Purchase Requistion(PR) from User "X" to "Y", as Y was manager of "X" and 'X' left the organization.
    Ans: You can achieve this through below workarounds
    - Through *"Mass Update of Requisitions" functionality* (Conc. request) you can update the Approver name from User "X" to "Y" for existing PRs.
    - Replacing the Supervisor name of the requestor/requisitioner in the HR record (assignment) from User "X" to "Y"..
    Hope it helps.
    Kind Regards,
    S.P DASH

  • How to change path for Ev4Excel.xla

    Dear All,
    I'm trying to execute predefined BPF - custom menu (ProcessFunctions.xls). Whenever if click e.g. on Back, forward, open a file following similar message is being prompted:
    Macro 'E:\Program Files\BPC\Ev4Excel.xla'!'EvMacroCall "OPENFILE","REPORTS\WIZARD\HotAnalysis\A01 Account Trend.xls","","","","","" can not be executed. Macro may not stated in this workbook or all macros can be deactivated.
    Ev4Excel.xla is resided under path E\PC_MS.
    How can I change path for macro call?
    Or any other idea?
    Regards,
    Ender

    i don't understand why do you have to change the path for Ev4Excel.xla?
    Basically this the addin of BPC into excel. I mean it is the BPC excel client.
    You are choosing the path when you are performing the installation of SAP BPC.
    So Idon't understand why do you want to change the path?
    If you want to do this you have to reinstall the BPC client and you have to choose the path wanted.
    You error is not related to the path it is more related to rights.
    I think you have to provide more details about the steps done and in what condition you observer this error.
    Regards
    Sorin Radulescu

  • How to change path of Users Terminal Services Profile for multiple AD users on server 2003?

    Hello experts. I am working on a file server migration. All data has been migrated, I am currently working on redirecting users to the new file server. I
    am able to select multiple users at once in ADUC -> right-click -> properties -> profile and here I can change the home folder and roaming profile path for each all users to point towards the new file server. 
    The issue I have run in to is that we have roaming profiles for terminal services users. So, there are hundreds of users that have their terminal services profile
    configured in AD -> Right-click user (one at a time) -> properties -> terminal services profile. Here, the profile path is configured for each user as \\OLDserver\Profiles\%username%
    and I need to change it to \\NEWserver\profiles\%username%. 
    I know that you can configure this path via group policy, I set up a GPO; Computer / Administrative Templates / Windows Components / Terminal Services / “Set Path
    for TS Roaming Profiles” as \\NEWserver\profiles and applied this GPO to an OU containing the TS servers.
    The problem is, the GPO is not working... When I log in to the TS and add a document to My Documents, it is still saving under \\OLDserver\profiles\Username.
    So, the settings in AD are trumping the GPO I believe. What is the best way to accomplish my goal? Thanks in advance!

    > to change it to \\NEWserver\profiles\%username%.
    That is "profile" in opposite to...
    > add a document to My Documents, it is still saving under
    > \\OLDserver\profiles\Username.
    ...this one which is Folder Redirection and has NOTHING to do with
    server based profiles.
    > So, the settings in AD are trumping the GPO I believe.
    No, it isn't. When you do not enable FR and you access "Documents", you
    will never see an UNC path but the local c:\users\xyz\documents folder.
    Martin
    Mal ein
    GUTES Buch über GPOs lesen?
    NO THEY ARE NOT EVIL, if you know what you are doing:
    Good or bad GPOs?
    And if IT bothers me - coke bottle design refreshment :))

Maybe you are looking for