OC4J Configuration issue Oracle 11g R2 Windows XP and Windows 7

Hallo!I have installed Oracle Database 11.2.0.1.0 on both Windows XP and Windows 7 on 2 different machines.
Before installing on both OSs,I had installed Microsoft Loopback Adapter and had set hostname as JOEY-PC and IP address 192.168.0.X.Once the installations were complete and I restarted the machines,I could not start OEM and the error below appears
C:\Documents and Settings\JOEY>emctl start dbconsole
OC4J Configuration issue. C:\app\JOEY\product\11.2.0\dbhome_1/oc4j/j2ee/OC4J_DBConsole_JOEY-PC_orcl not found.
When I went to the C:\app\JOEY\product\11.2.0\dbhome_1\oc4j\j2ee directory,I found the folder OC4J_DBConsole_localhost_orcl instead of OC4J_DBConsole_JOEY-PC_orcl.
I assumed that by using Microsoft Loopback Adapter,I would avoid the error above and that the OC4J_DBConsole folder would permanently remain as OC4J_DBConsole_JOEY-PC_orcl instead of OC4J_DBConsole_localhost_orcl.
Why is this folder changing its name and how can I resolve this issue?
Thanks.

Pl post the contents of the file C:\WINDOWS\System32\drivers\etc\hosts on both servers
What steps did you take to set the hostname to JOEY-PC ?
Srini

Similar Messages

  • Oracle 11G database for 64 bit windows installation error

    Hi,
    I downloaded the 11G 64bit for windows and unzipped the files into one folder and ran the setup.exe as an administrator. It opened up the java screen and I chose, create and configure a database. Next screen I chose, Desktop Class, when I click next it dies. It does not show me teh next screen. I went to the appdata folder and saw this error but not sure what to do EXCEPTION_ACCESS_VIOLATION (0xc0000005). Please help. Thanks for your time and help.

    Adipur wrote:
    Hello, have you tried to create new administrator user, and install using that newly created user...?You found this to be a band-aid solution in your specific instance. (Strange case of installation on windows 7 - unable to complete installation But you have drawn the wrong conclusions and never found the real issue in the cited thread. Under the circumstances, I would not be offering this up as a generalized solution, as you are doing in this thread and in others:
    Re: Oracle 11G database for 64 bit windows installation error
    Re: Trouble installing Oracle Personal in Windows 7 64-bit environment
    I have been doing Oracle DBA work since v 7.3, and have never seen advice like this to be anything more than a work-around the real issue.
    Edited by: EdStevens on May 15, 2013 7:03 AM

  • Connecting to 64bit Oracle 11g  from 32bit Client on Windows 7 64bit OS.

    Hi All,
    We have installed Oracle 11g 64 bit on a Windows 7 64 bit system. As we need to run some 32 bit application on the system, We installed 32 bit client and try to configured Local Net Service Name Configuration using Oracle Net Configuration Assistant and during test, it is unable to connect and giving the following error.
    ORA-12514: TNS:listener does not currently know of service requested in connect descriptor
    Best Regards
    Fred

    user13144834 wrote:
    Hi All,
    We have installed Oracle 11g 64 bit on a Windows 7 64 bit system. As we need to run some 32 bit application on the system, We installed 32 bit client and try to configured Local Net Service Name Configuration using Oracle Net Configuration Assistant and during test, it is unable to connect and giving the following error.
    ORA-12514: TNS:listener does not currently know of service requested in connect descriptor
    Best Regards
    Fred=================================
    A couple of important points.
    First, the listener is a server side only process. It's entire purpose in life is to receive requests for connections to databases and set up those connections. Once the connection is established, the listener is out of the picture. It creates the connection. It doesn't sustain the connection. One listener, with the default name of LISTENER, running from one oracle home, listening on a single port, will serve multiple database instances of multiple versions running from multiple homes. It is an unnecessary complexity to try to have multiple listeners or to name the listener as if it belongs to a particular database. That would be like the telephone company building a separate switchboard for each customer.
    Additional notes on the listener: One listener is capable of listening on multiple ports. But please notice that it is the listener using these ports, not the database instance. You can't bind a specific listener port to a specific db instance. Similarly, one listener is capable of listnening on multiple IP addresses (in the case of a server with multiple NICs) But just like the port, you can't bind a specific ip address to a specific db instance.
    Second, the tnsnames.ora file is a client side issue. It's purpose is for address resolution - the tns equivalent of the 'hosts' file further down the network stack. The only reason it exists on a host machine is because that machine can also run client processes.
    Assume you have the following in your tnsnames.ora:
    larry =
      (DESCRIPTION =
        (ADDRESS_LIST =
          (ADDRESS = (PROTOCOL = TCP)(HOST = myhost)(PORT = 1521))
        (CONNECT_DATA =
          (SERVICE_NAME = curley)
      )Now, when you issue a connect, say like this:
    $> sqlplus scott/tiger@larrytns will look in your tnsnames.ora for an entry called 'larry'. Next, tns sends a request to (PORT = 1521) on (HOST = myhost) using (PROTOCOL = TCP), asking for a connection to (SERVICE_NAME = curley).
    Where is (HOST = myhost) on the network? When the request gets passed from tns to the next layer in the network stack, the name 'myhost' will get resolved to an IP address, either via a local 'hosts' file, via DNS, or possibly other less used mechanisms. You can also hard-code the ip address (HOST = 123.456.789.101) in the tnsnames.ora.
    Next, the request arrives at port 1521 on myhost. Hopefully, there is a listener on myhost configured to listen on port 1521, and that listener knows about SERVICE_NAME = curley. If so, you'll be connected.
    What can go wrong?
    First, there may not be an entry for 'larry' in your tnsnames. In that case you get "ORA-12154: TNS:could not resolve the connect identifier specified" No need to go looking for a problem on the host, with the listener, etc. If you can't place a telephone call because you don't know the number (can't find your telephone directory (tnsnames.ora) or can't find the party you are looking for listed in it (no entry for larry)) you don't look for problems at the telephone switchboard.
    Maybe the entry for larry was found, but myhost couldn't be resolved to an IP address (say there was no entry for myhost in the local hosts file). This will result in "ORA-12545: Connect failed because target host or object does not exist"
    Maybe there was an entry for myserver in the local hosts file, but it specified a bad IP address. This will result in "ORA-12545: Connect failed because target host or object does not exist"
    Maybe the IP was good, but there is no listener running: "ORA-12541: TNS:no listener"
    Maybe the IP was good, there is a listener at myhost, but it is listening on a different port. "ORA-12560: TNS:protocol adapter error"
    Maybe the IP was good, there is a listener at myhost, it is listening on the specified port, but doesn't know about SERVICE_NAME = curley. "ORA-12514: TNS:listener does not currently know of service requested in connect descriptor"
    Third: If the client is on the same machine as the db instance, it is possible to connect without referencing tnsnames and without going through the listener.
    Now, when you issue a connect, say like this:
    $> sqlplus scott/tigertns will attempt to establish an IPC connection to the db instance. How does it know the name of the instance? It uses the current value of the enviornment variable ORACLE_SID. So...
    $> export ORACLE_SID=fred
    $> sqlplus scott/tigerIt will attempt to connect to the instance known as "fred". If there is no such instance, it will, of course, fail. Also, if there is no value set for ORACLE_SID, the connect will fail.
    check executing instances to get the SID
    [oracle@vmlnx01 ~]$ ps -ef|rgrep pmon
    oracle    4236     1  0 10:30 ?        00:00:00 ora_pmon_vlnxora1
    oracle    4878  4854  0 10:42 pts/0    00:00:00 grep pmonset ORACLE_SID appropriately, and connect
    [oracle@vmlnx01 ~]$ export ORACLE_SID='vlnxora1
    [oracle@vmlnx01 ~]$ sqlplus scott/tiger
    SQL*Plus: Release 10.2.0.4.0 - Production on Wed Sep 22 10:42:37 2010
    Copyright (c) 1982, 2007, Oracle.  All Rights Reserved.
    Connected to:
    Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing optionsNow set ORACLE_SID to a bogus value, and try to connect
    SQL> exit
    [oracle@vmlnx01 ~]$ export ORACLE_SID=FUBAR
    [oracle@vmlnx01 ~]$ SQLPsqlplus scott/tigere
    SQL*Plus: Release 10.2.0.4.0 - Production on Wed Sep 22 10:42:57 2010
    Copyright (c) 1982, 2007, Oracle.  All Rights Reserved.
    ERROR:
    ORA-01034: ORACLE not available
    ORA-27101: shared memory realm does not exist
    Linux Error: 2: No such file or directory
    Enter user-name: Now set ORACLE_SID to null, and try to connect
    [oracle@vmlnx01 ~]$ export ORACLE_SID=
    [oracle@vmlnx01 ~]$ SQLsqlplus /scott/tiger
    SQL*Plus: Release 10.2.0.4.0 - Production on Wed Sep 22 10:43:24 2010
    Copyright (c) 1982, 2007, Oracle.  All Rights Reserved.
    ERROR:
    ORA-12162: TNS:net service name is incorrectly specified=====================================

  • [EPM Configuration] OracleDB - OC4J Configuration issue .... not found

    Hello,
    after analysing endlessly the existing workarounds for this problem, i conclude that mine is not posted yet.
    Intro
    In order to install EPM, i had to install Oracle Database 11g. After the installation, an error ocurred stating that configurations were not saved and i could run manually "ECMA.bat" later.
    I tried to configure it by creating environment variables such as:
    - ORACLE_SID
    - ORACLE_HOSTNAME
    - ORACLE_UNQNAME
    So far, i haven't tried to executed ECMA.bat for the last time, since I am quite sure that i will fail due to not recognizing the hostname.
    The issue
    Whili trying to make sure that the database is correctly configured, i tried to access to the webpage, unsuccessfully.
    Then i found my problem in the forums:
    When i type in CMD:
    --> (I type)
    C:\OracleDB_app\alexandreyin\product\11.2.0\dbhome_1>emctl status dbconsole
    --> (returns)
    OC4J Configuration issue. C:\OracleDB_app\alexandreyin\product\11.2.0\dbhome_1/o
    c4j/j2ee/OC4J_DBConsole_HPCM.lab.pt_orcl not found.
    In fact there was no folder with that name, nor something like "/OC4J_DBConsole_localhost_orcl" as many posts suggests.
    I only have folders like:
    - "home"
    - "oc4j_applications"
    - "OC4J_DBConsole"
    - "OC4J_Workflow_Component_Container"
    - "OC4J_Workflow_Management_Container"
    - "utilities"
    - "deploy_db_wf"
    Some posts suggests me to change my /driver/etc/host file, but i think my current file is correct:
    --> (Content of host gile)
    127.0.0.1 localhost
    XX.XXX.XXX.XXX HPCM.lab.pt
    Honestly, i am out of ideas and i wish any experienced colleague could give me a hint.
    Thanks in advance

    Hi,
    It is worth having a look at the following document on Oracle support.
    Problem - emctl start dbconsole Fails with Error OC4J Configuration issue OC4J_DBConsole_<HOSTNAME>_<DBNAME> not found *[ID 555218.1]*
    Linux 64bit DBConsole Fails With "OC4J Configuration issue cannot find /oc4j/j2ee/oc4j_DBConsole_..." *[ID 462325.1]*
    Thanks,
    HyperEPM

  • Oracle 11g R2 install problem on Windows Server 2008 R2 SP1

    Hi all,
    Trying to install the Oracle 11g R2 database onto Windows Server 2008 R2 SP1.
    I get as far as running the setup and a black window flashes up on the screen and disappears.
    The log files only show the following:
    Using paramFile: C:\Temp\database\install\oraparam.ini
    Checking monitor: must be configured to display at least 256 colors. Actual 65536 Passed
    The number of files bootstrapped for the jre is 0.
    The number of files bootstrapped for the oui is 0.
    I've tried running setup -debug from the command line but no further information is logged.
    Any help in troubleshooting further is appreciated.

    That is the complete log file. No error messages or further information is given.
    I'm not sure how to check:
    Statement of Direction: Oracle Database 11g Release 2 – Microsoft Windows 7 and Windows Server 2008 R2 [ID 867040.1]
    I have checked on:
    http://docs.oracle.com/cd/E11882_01/install.112/e24283/toc.htm
    The server meets all the hardware requirements. The default file share is accessible and it is running a supported browser. The installer is being run with Admin rights. I'm not sure what else I need to check.

  • Oracle 11g ODBC for Windows NT and Windows 95

    Hi
    Please does anyone knows where can I find this ODBC ? Oracle 11g ODBC for Windows NT and Windows 95
    I have test some ODBC from the Oracle page but doesnt work
    Thank you
    J.A.

    I'm thinking no.
    However I did find this which may help :
    http://www.oracle.com/technetwork/database/windows/odbcfaq-128251.pdf
    I did the search for 16 bit in it and found some interesting information.
    The other piece of information I can share is the Oracle 11 client has issues connecting to Oracle 9.
    An Oracle 10 clients might have a better chance, but the catch is finding it.
    The last client I remember working on these OS's was Oracle 8. But I doubt that will connect to Oracle 11.
    Best Regards
    mseberg
    Edited by: mseberg on Aug 14, 2012 6:06 PM
    Later
    I'm not a huge fan of when they move stuff. This spot feels a little like the island of misfit toys.

  • OC4J Configuration issue

    Hi,
    I tried to put my database in Archivelog mode through EM , at the time of restarting the database it didnt start... instance is starting but database is not opening....
    I tried this command but its giving error... ( I am running 10g r2 , on RHEL 5 which is install on Oracle virtual toolbox )
    emctl start dbconsole
    OC4J Configuration issue. /opt/oracle/oraclehome_112/db_1/oc4j/j2ee/OC4J_DBConsole_myhostname_orcl not found.
    where orcl is the instance name.
    and this directory, OC4J_DBConsole_myhostname_orcl, does not exist on the file system.
    In some article I read ... the solution I tried to type...
    http://kamranagayev.com/2011/03/21/step-by-step-installing-oracle11g-on-linux/
    Feedback no. 19
    ./emca -deconfig dbcontrol db -repos drop
    bash : ./emca : No Such file or Directory
    ./emca -config dbcontrol db -repos create
    Thanks and regards...

    Hello;
    I'm thinking this step was either missed of you have a typo :
    Change the entry of .bash_profile file of the oracle user and add following lines:
    vi /home/oracle/.bash_profile
    export ORACLE_HOME=/u01/home/oracle/product/11.2.0/db_1
    export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$ORACLE_HOME/lib
    export PATH=$ORACLE_HOME/bin:$PATHIf your ORACLE_HOME is set it should find the "emca".
    You can test by running these export commands at the Linux prompt.
    The which command is your friend
    which emca
    /u01/app/oracle/product/11.2.0.2/bin/emcaBest Regards
    mseberg
    Edited by: mseberg on Feb 29, 2012 2:52 PM

  • OC4J Configuration issue.  when trying to enable OEM on 10g

    Good Morning to all ;
    Just now i posted question related to OEM (when getting error).
    I can't connect my OEM with any user
    Here i created DB using DBCA with OEM but i couldn't login via BROWSER ...
    Please ignore this question here .. ( Not a Duplicate Question)
    This question is different ,  but related to OEM ( Ok . I am explaining my issues here. I created Database using DBCA without enabling OEM.
    then i set ORACLE_SID and tried to execute OEM but getting error.
    $ emctl start dbconsole
    TZ set to Asia/Calcutta
    OC4J Configuration issue. /u01/app/oracle/product/10.2.0/db_1/oc4j/j2ee/OC4J_DBConsole_linuxserver_orcltest not found.
    NOTE : I want to know answer for 2nd question. what is OC4J Configuration issue. - How can i resolve that ? or
    Thanks in advance ..

    Hello Sb
    I perfectly upgraded my DB with OEM  to 10.2.0.4.0  on OEL4. i'm going to do on rhel-5
    *$ export ORACLE_SID=orcl*
    [oracle@oel ~]$ sqlplus /nolog
    SQLPlus: Release 10.2.0.4.0 - Production on Sun Apr 21 00:59:53 2013*
    Copyright (c) 1982, 2007, Oracle.  All Rights Reserved.
    SQL> conn /as sysdba
    Connected.
    SQL> startup
    ORA-01081: cannot start already-running ORACLE - shut it down first
    SQL> cl scr
    SQL> select comp_name , version , status from dba_registry;
    COMP_NAME
    VERSION STATUS
    Oracle Database Catalog Views
    10.2.0.4.0 VALID
    Oracle Database Packages and Types
    10.2.0.4.0 VALID
    Oracle Workspace Manager
    10.2.0.4.3 VALID
    COMP_NAME
    VERSION STATUS
    JServer JAVA Virtual Machine
    10.2.0.4.0 VALID
    Oracle XDK
    10.2.0.4.0 VALID
    Oracle Database Java Packages
    10.2.0.4.0 VALID
    COMP_NAME
    VERSION STATUS
    Oracle Expression Filter
    10.2.0.4.0 VALID
    Oracle Data Mining
    10.2.0.4.0 VALID
    Oracle Text
    10.2.0.4.0 VALID
    COMP_NAME
    VERSION STATUS
    Oracle XML Database
    10.2.0.4.0 VALID
    Oracle Rule Manager
    10.2.0.4.0 VALID
    Oracle interMedia
    10.2.0.4.0 VALID
    COMP_NAME
    VERSION STATUS
    OLAP Analytic Workspace
    10.2.0.4.0 VALID
    Oracle OLAP API
    10.2.0.4.0 VALID
    OLAP Catalog
    10.2.0.4.0 VALID
    COMP_NAME
    VERSION STATUS
    Spatial
    10.2.0.4.0 VALID
    Oracle Enterprise Manager
    10.2.0.4.0 VALID
    17 rows selected.
    Thanks ..

  • Problem with Oracle 11g(32 bit) installation on windows 7 ultimate edition

    Hello all,
    I have a problem with Oracle 11g(32 bit) installation on windows 7 ultimate edition (32 bit).
    I have successfully installed it immediately after OS installation. But today, i have decided to deinstall it and go for Oracle 10g version for 32 bit.
    Everything went normal during installation, but i can see the services is not present in services.msc. Also its throwing some exception for dbca, netca
    Now i tried to deinstall it and again go for 11g. But even the same story here..
    Can anybody give me a solution for this..
    -Regards
    Rajesh Menon

    Saqib Alam wrote:
    i recently install Oracle 11g R1 on windows 7 ultimate, i installed it and working perfectly.
    ur problem is that u install latest version and now u trying to installing old version.
    now u need to uninstall 10g and delete oracle from services, if the probleme presist then u should
    install fresh windows 7.
    Regards
    SaqibNo need to install a fresh OS. That's like tearing your house down just because you wired a lamp wrong and blew a circuit breaker.
    There are MeaLink notes on how to eradicate an Oracle install from Windows, but it boils down to this:
    Stop all Oracle services
    In the registery:
    - Delete all oracle services from the register (HKLM\SYSTEM\CurrentControlSet
    - Delete the entire Oralce folder from HKLM\Software
    reboot
    Delete the ORACLE_HOME directory and any other Oracle related directories/files. Offhand, it seems like there is an Oracle directory under Program Files.
    reboot

  • Problem in installing Oracle 11g in home edtion of windows xp

    i m trying to install Oracle 11g in home edition of windows xp. it is trelling some files not found. plz help me.!!!!!!!!!

    Upgrade to XP Professional, Home Edition is not supported.
    Werner

  • Is it possible to install oracle 11g client 32 bit and oracle 11g client 64

    Hi,
    I have Windows 2008 R2 64 Bit Operating Server Installed.
    Other software that are Installed :
    1) Visual Studio 2010 Ultimate 32 Bit.
    2) Microsoft SharePoint server 2010 64 Bit.
    For my development purpose I want to install both oracle 11g client 32 bit and oracle 11g client 64 on the same machine.
    Is it possible to install both 32 and 64 bit instance on the same machine.
    Thanks
    Sambit

    959211 wrote:
    Hi,
    I have Windows 2008 R2 64 Bit Operating Server Installed.
    Other software that are Installed :
    1) Visual Studio 2010 Ultimate 32 Bit.
    2) Microsoft SharePoint server 2010 64 Bit.
    For my development purpose I want to install both oracle 11g client 32 bit and oracle 11g client 64 on the same machine.
    Is it possible to install both 32 and 64 bit instance on the same machine.
    Thanks
    Sambityes, possible; but minor challenge to manage dynamically
    how to ensure that you actually use the flavor you desire?

  • Compatibility issue between your power management system and Windows 8.1

    I have purchased a new Lenovo Ideapad S410 and have this problem.
           Compatibility issue between your power management system and Windows
           It also gives a message "Your PC ran into a problem and needs to restart. We're just collecting some error info, and then we'll restart for you. (100% complete)
           If you'd like to know more, you can search online later for this error:
    VIDEO DXGKRNL FATAL ERROR
    Please help! My laptop is only 5 days old.

    What model do you have? Can you post your MTM or model name?
    Sometimes these messages are a false alarm.

  • Compatibilityy issue with windows XP and windows 8.1 for adobe photoshop elements 4.0

    Compatibility issue with windows XP and windows 8.1 for adobe photoshop elements 4.0?comcom

    You are going to have to contact Adobe on this one. We are other users.
    Sounds like it's not even an Apple question? Not sure.
    But the Adobe program changed, nothing changed in iTunes, right?

  • Oracle 11g Active Data Guard and SAP R3

    Hi All,
    I have a query regarding Oracle 11g Active Data Guard and SAP R3.
    Does the Oracle 11g R1/R2 Active Data guard feature supported with SAP R3?
    I appreciate your help to provide any link or document for the same.
    Thanks,
    Vihang

    I have a query regarding Oracle 11g Active Data Guard and SAP R3.
    Does the Oracle 11g R1/R2 Active Data guard feature supported with SAP R3?
    I appreciate your help to provide any link or document for the same.
    Oracle database 11g functionality certified by SAP, check below link
    http://www.oracle.com/us/solutions/sap/oradb11g-article-upd-1-323074.pdf
    http://www.oracle.com/technetwork/middleware/ias/downloads/osb-11gr1certmatrix.xls

  • Is Oracle 11g released for NW04s and ECC6.0?

    Is Oracle 11g released for NW04s and ECC6.0?
    Please help. Thanks!

    Plain and simple: No, it isn't.
    Check the SAP on Oracle homepage [here|SAP on Oracle] in SDN and read the latest development news on this topic including a rough schedule.
    regards,
    Lars

Maybe you are looking for