How To Find Oracle Home Directory Path...

Hello,
I am working on deployment of java web service on Oracle Application Server(LINUX) 10g, EBS - R12.
I am working on other system and i want to deploy web service remotely on application server.
And i am not getting the oracle home directory path. I want to find the home directory path remotely.
so suggest me how to find out path of that.
or weather i have to install jdevloper on server system and than i have to deploy it,
or any other alternative way is available.
Reply as soon as possible......

Thanks for your reply.
It's precisely the registry key which got tampered, and there's no ORACLE_HOME environmental variable(Or that too is tampered)
Now,how to set it to one of the Oracle home directories?
Regards,
Bhagat
!!!!!!!!!!!!!!!!!!!!

Similar Messages

  • Help please..how to specify Oracle Home directory for create AS connection

    I have linux based application server 10g having IP 121.100.115.2 and name as10g.ourdomain.com (/home/oracle/OraHome_2 is AS directory)
    I have developed a simple jsp page using JDeveloper10g. In order to deploy this project, I am trying to create Application Server Connection using wizard.
    step1:
    connection name: as10g
    connection type:oracle application server 10g
    step2:
    user name: ias_admin
    password: mypassord
    step3:
    enterprise manager OC4J host name: 121.100.115.2
    enterprise manager OC4J http port: 1156
    Remote Server's Oracle home directory: /oracle/OraHome_2
    step4
    RMI Server URL: ormi://121.100.115.2:23791
    RMI username: admin
    RMI password: {blank}
    step5
    When I click on test button I get this error:
    Test failed (-2). Invalid Oracle Home directory

    When you create the stand alone, in options you can actually set the temp directory and default directory. You can change it there OR in goto options and check for libraries/directories. You can change it there too.
    Kudos always welcome for helpful posts

  • How to Find Oracle Home Name

    Hi All,
    I am trying to find what is the name provided for ORACLE HOME NAME for SSO Midtier.
    The install log files are not available. Now when i try to patch the SSO it is prompting for the Oracle home name and path, for which I donot know the value for Oracle Home Name.
    Is there any file apart from install log will have this value or is there any way i can see it from the OEM console?
    Regards,
    Balaji

    Hi,
    The server has:
    1 SSO
    1 MidTier
    But have been installed with the same Oracle Home Name - oracleas
    Now I have to patch the SSO to 10.1.2.2.0
    During patching if I give oracelas1 as oracle home name it automatically changes its path to Mid Tier path.
    If i manually change it to SSO path it throws an error.
    If i give a new Oracle Home Name manually and type the oracle home for SSO, it says this SSO doesnot need the patch 10.1.2.2.0 but the SSO still runs on 10.1.2.0.2
    Let me know if i am clearly.
    Regards,
    Balaji

  • Where can I find the Oracle Home Directory

    hi,
    When i try to setup SALT g10R3, I will have to specifiy the oracle home directory. I have a global variable $ORACLE_HOME which contains this path : /produits/oracle/product/10.2.0 !
    I try to validate but this message appears :
    =========================================================================
    Choose Oracle Home Directory
    1- Specify an Oracle Home
    Enter a number: 1
    Specify an Oracle Home directory: /produits/weblogic
    Path must be absolute and have write permission!
    Specify an Oracle Home directory: /produits/oracle/product/10.2.0
    =========================================================================
    Check Prerequisite
    Cannot get registry information from the given Oracle Home Directory:
    /produits/oracle/product/10.2.0
    Tuxedo has not been installed in this directory, or the registry.xml file has
    been manually removed or corrupted.
    Type 'back' to select another Oracle Home Directory
    Type 'quit' to cancel this installation
    [back | quit]: /produits/tuxedo
    Type 'back' to select another Oracle Home Directory
    Type 'quit' to cancel this installation
    [back | quit]: /produits/tuxedo/tuxedo9.1
    Type 'back' to select another Oracle Home Directory
    Type 'quit' to cancel this installation
    [back | quit]: quit
    =========================================================================
    I don't know how can I solve this problem, someone can help me ?
    Thanks

    Hi Todd,
    I see a similar error while installiing TSAM 10gR3. Please find the error below. I have Tuxedo 8.1 installed on a Linux base, where i am trying to also install TSAM 10gR3. But when i give the PATH/Location, where Tuxedo 8.1 is installed, it throws the following error. Can you please advise?
    ===============================================================================
    Choose Tomcat Feature
    Do you want to install the bundled Tomcat Server?
    ->1- Install Tomcat
    2- Do not install Tomcat
    ENTER THE NUMBER FOR YOUR CHOICE, OR PRESS <ENTER> TO ACCEPT THE DEFAULT:
    ===============================================================================
    Oracle Home directory selection
    Specify Oracle Home directory: /opt/tuxhome/tuxdom2
    registry.xml does not exist in Folder: /opt/tuxhome/tuxdom2
    Specify Oracle Home directory: /opt/tuxedo/v81
    Error:TUXEDO 10gR3 is not found in the specified directory.
    Specify Oracle Home directory:

  • How do i find my home directory in order to clear it

    How do i find my <home directory> in order to clear it

    In Mac...the 2 home directories that have to be erased under the "Unintall Flash Player" on the Adobe website. its Step 9
    Date: Sat, 30 Nov 2013 11:49:55 -0800
    From: [email protected]
    To: [email protected]
    Subject: How do i find my &lt;home directory&gt; in order to clear it
        Re: How do i find my  in order to clear it
        created by Mike M in Installing Flash Player - View the full discussion
    Windows or Mac?
    and which home directory are you looking for?
         Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at http://forums.adobe.com/message/5887758#5887758
         Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/5887758#5887758
         To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/5887758#5887758. In the Actions box on the right, click the Stop Email Notifications link.
               Start a new discussion in Installing Flash Player at Adobe Community
      For more information about maintaining your forum email notifications please go to http://forums.adobe.com/thread/416458?tstart=0.

  • How to find out one directory in unix

    How to find out one directory(Ex-abc dirctory) in linux??
    I am in home i dont know the location of that directory can give me some command to find the path of the directory ??
    I am new in linux ??
    Thanks advancly

    You may want to consider using wildcard and "-iname" which is case insensitive.
    find / -iname *ex-abc* -type dTo find files and directories you can also use the locate command, which uses a database to find stuff, after indexing the system, and hence is faster than a regular find:
    locate -i ex-abc... provided the database has been created and is up2date.
    sudo updatedbPls see "man locate" and "man find" for more options
    Edited by: Dude on Dec 1, 2011 6:24 AM

  • How to find out web-inf path from the physical drive?

    How to find out web-inf path from the physical drive?
    I have some user profiles in web-inf directory.SO I want to know the path from root directory like
    d:/program files/allaire/jrun/appname/web-inf/profiles/username like that.
    Presently I am able to get the path upto the application directory and from that I am concatinationg web-inf/profiles/username .
    But it is giving problems when it is deployed under unix or linux.Because web-inf there it treats as WEB_INF
    SO I want to get the path of web-inf directory with out hard coding.
    Thanku

    String path = application.getRealPath("/WEB-INF/profiles/username");
    Note sure why you need this, but you don't need the real path to read the file - you can get an InputStream using the relative path. See ServletContext getResource() and getResourceAsStream().

  • How do I change home directory name?

    In FINDER, the home directory name is from an old employee. How can I change it?

    Log out and then into a different user account, or create one from System Preferences. If so desired, control-click the account in the Accounts or Users & Groups pane of System Preferences, choose Advanced Options, and change the name and home properties; if the computer happens to be running Mac OS X 10.4, the instructions are significantly different.
    (71132)

  • PHP 5.0.5 CLI: Am I able to set the Oracle home directory at runtime?

    I have two versions of Oracle installed on a SUN Solaris server:
    /opt/app/oracle/product/8.1.7
    /opt/app/oracle/product/9.2.0
    Am I able to set the Oracle home directory at runtime using PHP CLI?
    Thanks,

    The real answer is it depends how PHP loads Oracle. If the loading
    occurs when PHP starts and before your script executes then you will
    start to see problems. This could be as minor as missing error
    message text or it could be more subtle. In general set the Oracle
    environment before starting PHP.
    What about creating your scripts like:
    #!/bin/sh
    export ORACLE_HOME=/opt/app/oracle/product/9.2.0
    php ...-- cj

  • How do I delete home directory /Library/Preferences/Macromedia/Flash\Player ?

    How do I delete<home directory>/Library/Preferences/Macromedia/Flash\Player?

    Note that it'll be created over every time you load a Flash object in a Web browser (at least if it has Flash enabled).
    The only way to consistently get rid of all its content would be to create an AppleScript, or use Automator to create a workflow that would empty this folder when you close the browser.

  • "Invalid Oracle Home directory" error in Application Server Connection

    I have Jdeveloper 10g on Windows XP and want to create an Application Server Connection.
    After specifying required i get Test failed (-2). Invalid Oracle Home directory whenever I go for testing it.
    My Application Server in Linux

    You are in the wrong forum for that question.

  • Don't understand how to find my host directory

    hello
    i am not understanding how to find my host directory when
    trying to connect from Dreamweaver MX2004 to my webspace,using the
    remote info page on the site definition window.
    Is the host directory on the server of the web space
    provider?
    And how do i know what the folder it is or how to find it?
    thanks in advance
    Jason King

    > Is the host directory on the server of the web space
    provider?
    > And how do i know what the folder it is or how to find
    it?
    Yes.
    > And how do i know what the folder it is or how to find
    it?
    Ask the host what the root directory of the website is named.
    It could be
    www, or public_html, or anything else. That would be what
    goes in the host
    directory field.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "georgealmighty" <[email protected]> wrote
    in message
    news:etri9l$dqq$[email protected]..
    > hello
    > i am not understanding how to find my host directory
    when trying to
    > connect
    > from Dreamweaver MX2004 to my webspace,using the remote
    info page on the
    > site
    > definition window.
    >
    > Is the host directory on the server of the web space
    provider?
    > And how do i know what the folder it is or how to find
    it?
    >
    > thanks in advance
    > Jason King
    >

  • How to find oracle archieved products

    Hi
    I want to download Oracle Forms 6i for all OS(Vista). here is a link http://www.oracle.com/technology/products/forms/index.html which everybody say we can find Oracle Forms6i. But i feel that now its difficult to find archieved products. If any body has info on how to find Oracle forms 6i download link please reply.
    thanks a lot

    Oracle Forms 6i (6.0.8) is obsolete and no longer supported. It was also never certified to be installed on Vista or any of the newer OSs. The likelihood that you will experience problems installing on those platforms is quite high and is not recommended. That said, if you really would prefer to use an obsolete product you can still download it for a limited time here:
    http://www.oracle.com/technology/software/products/forms/htdocs/winsoft.html
    I do not know how long this URL will remain available as we are slowly cleaning up all of the old references to now unsupported products.

  • How to find the oracle home directory of a particular database ?

    Hi all,
    There are multiple databases in our machine server ; there are many oracle9i and many oracle10g databases.
    I forgot the directory where I installed a particular database so I want to know how to know the directory path where its oracle_home was. For example C:\Orant\Bin.
    Thank you very much indeed

    Yea friend .
    I m agree with u . Because In my Linux server There are 2 database . I have to use Automatic run script (use dbstart) for Database so that Datbase will be auto up during startup. My default oracle Home for Oracle user is "/ORACLE" and also mention it i Oracle ".bash_profile" .
    I give the entry into "/etc/oratab " Like following :
    vi /etc/oratab
    test1::/oracle:Y
    test2::/oracle:Y
    But One database (test1) is up during startup the server but another (test2) is not . I dont understand the problem .... can anybody give me some suggestion ?
    In this pint , If Oracle Home is the problem then How can I find the Oracle Home regarding these two databases ?

  • Is there a file in which OSX stores the home directory path, where to find it and how to edit it in Windows 7?

    Hi everyone,
    I have a SSD with the System and Apps on it, and another HDD containing the home directory.
    I made the mistake to rename the Volume the home directory is on whilst being logged in, the system reacted accordingly and prompted some Password requests,
    and I then tried to choose the newly named Volume in the Advanced options dialogue in Users & Groups (example seen below).
    I tried to change the name back to what it was in the hope of it all being back to normal again, but instead it's completely messed up now and I cannot login anymore (prompt: "You are unable to log in to the user account "xxxx" at this time. Logging in to the account failed because an error occurred")
    All I can do now is boot my Windows 7 and try to fix this from there, I can read/write the OSX Volumes thanks to MacDrive.
    So now the big question is:
    IS THERE A FILE containing the path to the home directory (red arrow)?
    IF SO, WHERE can I find it?
    And is there a way to edit it in Windows?
    My guess is that if I rename the Volume, AND change this path to something identical again, it might solve the issue.
    Thanks!

    Download THIS
     Cheers, Tom

Maybe you are looking for

  • Item category and Account assignment category field grayed out in PR/PO

    Hello all, While making a PR/PO we use both the item category and account assignment category. However, after saving the PR/PO, when i try to change the fields through ME22N/ME52N, the fields are greyed out. I dont think this can be controlled throug

  • Why is my printer NOT printing colour from my new mac?

    I downloaded the HP driver, but it didn't seem to do anything. The test page printed in colour, but no document will print in colour and I don't see an option in settings to print in colour. And yes it is a newish cartridge, so there is ink in it. My

  • Is the latest ipod touch compatible with the 2011 Mitsubishi Lancer Ralliart?

    I recently replaced an older iPod touch with a new iPod touch. The older touch synced with my 2011 mitsubishi lancer. Granted it took the two awhile to communicate but they always synced. I just got the new iPod touch on Feb 3 and tried to sync it wi

  • Startup disk full - Outlook won't start to delete

    Hi, I have Outlook on my MBP and it crashed last night and said I had to rebuild my identity.  Before it will rebuild, it wants to backup everything.  This has filled up my startup disk. 0 space available.  Now I can't get anything out of my outlook

  • How to download factory calendar from R/3 to CRM

    Hi, I have tried to search some threads regarding this topic but not get any answers. Can someone help me on steps on how to download the factory calendar from R/3 to CRM? I have tried to do through request (R3AR2) but it did not recognize the table