Oracle 11g on Windows XP - TCP with SSL

Hello,
have successfully set-up Oracle 11g on a Windows XP machine which am using as a small server in a trial/test environment.
As this machine is running in my local environment without external connections the Windows Firewall is DEactivated.
A java test program written to connect to the server using TCP / via a plain text connection using the oracle thin JDBC driver is working fine.
Now wanted to set-up the server so it would accept SSL connections (ultimately with peer Authentication, but without server or client authentication as a start configuration).
Have used Oracle Net Manager to configure the server as follows:
(Note: have used red ink to hightlight settings I am unclear if they are needed)
listener.ora
# listener.ora Network Configuration File: C:\ORACLE11G\app\oracle\product\11.2.0\NETWORK\ADMIN\listener.ora
# Generated by Oracle configuration tools.
SID_LIST_LISTENER =
  (SID_LIST =
    (SID_DESC =
      (SID_NAME = CLRExtProc)
      (ORACLE_HOME = C:\ORACLE11G\app\oracle\product\11.2.0)
      (PROGRAM = extproc)
      (ENVS = "EXTPROC_DLLS=ONLY:C:\ORACLE11G\app\oracle\product\11.2.0\bin\oraclr11.dll")
LISTENER_TCPS =
  (DESCRIPTION_LIST =
    (DESCRIPTION =
      (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC2484))
    (DESCRIPTION =
      (ADDRESS = (PROTOCOL = TCPS)(HOST = 192.168.178.103)(PORT = 2484))
SSL_CLIENT_AUTHENTICATION = FALSE
LISTENER =
  (DESCRIPTION_LIST =
    (DESCRIPTION =
      (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1521))
    (DESCRIPTION =
      (ADDRESS = (PROTOCOL = TCP)(HOST = AOPENMINI)(PORT = 1521))
ADR_BASE_LISTENER = C:\ORACLE11G\app\oracle
TRACE_LEVEL_LISTENER_TCPS = USER
ADR_BASE_LISTENER_TCPS = C:\ORACLE11G\app\oracle\product\11.2.0\log
tnsnames.ora
# tnsnames.ora Network Configuration File: C:\ORACLE11G\app\oracle\product\11.2.0\NETWORK\ADMIN\tnsnames.ora
# Generated by Oracle configuration tools. PMT =
  (DESCRIPTION =
    (ADDRESS_LIST =
      (ADDRESS = (PROTOCOL = TCP)(HOST = AOPENMINI)(PORT = 1521))
      (ADDRESS = (PROTOCOL = TCPS)(HOST = 192.168.178.103)(PORT = 2484))
    (CONNECT_DATA =
      (SERVER = DEDICATED)
      (SERVICE_NAME = PMT)
  ) ORACLR_CONNECTION_DATA =
  (DESCRIPTION =
    (ADDRESS_LIST =
      (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1521))
    (CONNECT_DATA =
      (SID = CLRExtProc)
      (PRESENTATION = RO)
  ) ORCL =
  (DESCRIPTION =
    (ADDRESS_LIST =
      (ADDRESS = (PROTOCOL = TCP)(HOST = AOPENMINI)(PORT = 1521))
      (ADDRESS = (PROTOCOL = TCPS)(HOST = AOPENMINI)(PORT = 2484))
    (CONNECT_DATA =
      (SERVER = DEDICATED)
      (SERVICE_NAME = orcl.168.178.103)
sqlnet.ora
# sqlnet.ora Network Configuration File: C:\ORACLE11G\app\oracle\product\11.2.0\NETWORK\ADMIN\sqlnet.ora
# Generated by Oracle configuration tools. # This file is actually generated by netca. But if customers choose to
# install "Software Only", this file wont exist and without the native
# authentication, they will not be able to connect to the database on NT. SQLNET.AUTHENTICATION_SERVICES= (NONE) SSL_VERSION = 0 TRACE_LEVEL_CLIENT = USER NAMES.DIRECTORY_PATH= (TNSNAMES, EZCONNECT) SSL_CLIENT_AUTHENTICATION = TRUE TRACE_LEVEL_SERVER = USER WALLET_LOCATION =
  (SOURCE =
    (METHOD = FILE)
    (METHOD_DATA =
      (DIRECTORY = C:\ORACLE11G\app\oracle\product\11.2.0\admin\PMT\wallet)
  ) ADR_BASE = C:\ORACLE11G\app\oracle\product\11.2.0\log
Here is the error I am getting
error
Caused by: java.net.ConnectException: Connection refused: connect
    at java.net.PlainSocketImpl.socketConnect(Native Method)
    at java.net.PlainSocketImpl.doConnect(Unknown Source)
    at java.net.PlainSocketImpl.connectToAddress(Unknown Source)
    at java.net.PlainSocketImpl.connect(Unknown Source)
    at java.net.SocksSocketImpl.connect(Unknown Source)
    at java.net.Socket.connect(Unknown Source)
    at com.sun.net.ssl.internal.ssl.SSLSocketImpl.connect(Unknown Source)
    at oracle.net.nt.TcpsNTAdapter.connect(TcpsNTAdapter.java:114)
    at oracle.net.nt.ConnOption.connect(ConnOption.java:123)
    at oracle.net.nt.ConnStrategy.execute(ConnStrategy.java:337)
For some reason the server does not seem to listen on port 2484 at all (running telnet localhost 2484 on the server itself leads to no connection possible).
Not being a network expert I am stuck here and would appreciate any help on how to overcome this set-up issue.
Thanks

Hi,
would now need to trace and understand why the handshake is failing.
As you can see from the above posted config files and the trace_level settings tracing should already be turned on on my system - correct? So where would I find the output messages telling me in more detail why the handshake is failing?
The error I am getting when trying to connect from a Java client program using the JDBC thin driver is:
java.sql.SQLRecoverableException: I/O-Fehler: Remote host closed connection during handshake
    at oracle.jdbc.driver.T4CConnection.logon(T4CConnection.java:421)
    at oracle.jdbc.driver.PhysicalConnection.<init>(PhysicalConnection.java:531)
    at oracle.jdbc.driver.T4CConnection.<init>(T4CConnection.java:221)
    at oracle.jdbc.driver.T4CDriverExtension.getConnection(T4CDriverExtension.java:32)
    at oracle.jdbc.driver.OracleDriver.connect(OracleDriver.java:503)
    at java.sql.DriverManager.getConnection(Unknown Source)
    at java.sql.DriverManager.getConnection(Unknown Source)
    at onlyOraclePk.DBConnections.testSSLConnection(DBConnections.java:80)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
    at java.lang.reflect.Method.invoke(Unknown Source)
    at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:44)
    at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:15)
    at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:41)
    at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:20)
    at org.junit.runners.BlockJUnit4ClassRunner.runNotIgnored(BlockJUnit4ClassRunner.java:79)
    at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:71)
    at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:49)
    at org.junit.runners.ParentRunner$3.run(ParentRunner.java:193)
    at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:52)
    at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:191)
    at org.junit.runners.ParentRunner.access$000(ParentRunner.java:42)
    at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:184)
    at org.junit.runners.ParentRunner.run(ParentRunner.java:236)
    at org.eclipse.jdt.internal.junit4.runner.JUnit4TestReference.run(JUnit4TestReference.java:50)
    at org.eclipse.jdt.internal.junit.runner.TestExecution.run(TestExecution.java:38)
    at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:467)
    at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:683)
    at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:390)
    at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:197)
Caused by: javax.net.ssl.SSLHandshakeException: Remote host closed connection during handshake
    at com.sun.net.ssl.internal.ssl.SSLSocketImpl.readRecord(Unknown Source)
    at com.sun.net.ssl.internal.ssl.SSLSocketImpl.performInitialHandshake(Unknown Source)
    at com.sun.net.ssl.internal.ssl.SSLSocketImpl.writeRecord(Unknown Source)
    at com.sun.net.ssl.internal.ssl.AppOutputStream.write(Unknown Source)
    at oracle.net.ns.Packet.send(Packet.java:385)
    at oracle.net.ns.ConnectPacket.send(ConnectPacket.java:173)
    at oracle.net.ns.NSProtocol.connect(NSProtocol.java:283)
    at oracle.jdbc.driver.T4CConnection.connect(T4CConnection.java:1042)
    at oracle.jdbc.driver.T4CConnection.logon(T4CConnection.java:301)
    ... 30 more
Caused by: java.io.EOFException: SSL peer shut down incorrectly
    at com.sun.net.ssl.internal.ssl.InputRecord.read(Unknown Source)
    ... 39 more
Thanks

Similar Messages

  • ORA-12541: TNS:no listener, (error, in oracle 11g for window 7, 64 bit)

    ORA-12541: TNS:no listener, error, in oracle 11g for window 7, 64 bit
    While connecting as localhost is pretty well.
    but command: sqlplus username@'192.168.52.178:1521/orcl' on the same machine is producing above mentioned error on oracle 11g for window 7, 64 bit.

    user11225434 wrote:
    Thax sir for your kind concern of my problem. Answers of your quaries regarding my question as follows
    lsnrctl status
    LSNRCTL for 64-bit Windows: Version 11.2.0.1.0 - Production on 05-AUG-2013 09:37
    :21
    Copyright (c) 1991, 2010, Oracle.  All rights reserved.
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC1521)))
    STATUS of the LISTENER
    Alias                     LISTENER
    Version                   TNSLSNR for 64-bit Windows: Version 11.2.0.1.0 - Produ
    ction
    Start Date                05-AUG-2013 09:31:09
    Uptime                    0 days 0 hr. 6 min. 22 sec
    Trace Level               off
    Security                  ON: Local OS Authentication
    SNMP                      OFF
    Listener Parameter File   C:\app\eee\product\11.2.0\dbhome_5\network\admin\liste
    ner.ora
    Listener Log File         c:\app\eee\diag\tnslsnr\eee-THINK\listener\alert\log.x
    ml
    Listening Endpoints Summary...
      (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(PIPENAME=\\.\pipe\EXTPROC1521ipc)))
      (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=192.168.52.170)(PORT=1521)))
    Services Summary...
    Service "CLRExtProc" has 1 instance(s).
      Instance "CLRExtProc", status UNKNOWN, has 1 handler(s) for this service...
    Service "orclxe" has 1 instance(s).
      Instance "orclxe", status READY, has 1 handler(s) for this service...
    Service "orclxeXDB" has 1 instance(s).
      Instance "orclxe", status READY, has 1 handler(s) for this service...
    The command completed successfully
    # listener.ora Network Configuration File: C:\app\eee\product\11.2.0\dbhome_5\network\admin\listener.ora
    # Generated by Oracle configuration tools.
    SID_LIST_LISTENER =
      (SID_LIST =
        (SID_DESC =
          (SID_NAME = CLRExtProc)
          (ORACLE_HOME = C:\app\eee\product\11.2.0\dbhome_5)
          (PROGRAM = extproc)
          (ENVS = "EXTPROC_DLLS=ONLY:C:\app\eee\product\11.2.0\dbhome_5\bin\oraclr11.dll")
    LISTENER =
      (DESCRIPTION_LIST =
        (DESCRIPTION =
          (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1521))
          (ADDRESS = (PROTOCOL = TCP)(HOST = 192.168.52.170)(PORT = 1521))
    ADR_BASE_LISTENER = C:\app\eee
    3. My ip is static 192.168.52.170 and window 7 prof. is there.
    4. Sir i have tested the remote connection with firewall configuration is off.
    Hopefully this info is useful.
    but command: sqlplus username@'192.168.52.178:1521/orcl'
    NOTE the difference in IP#s above; 192.168.52.170 vs. 192.168.52.178

  • Oracle 11g R2 Windows Installation hangs at 100%

    hi ,
    I am trying to install oracle 11g server on a laptop with windows xp sp3 - 32 bit.
    the installation goes smoothly till 100% and then get stuck at stage:
    spawning 'D:\app\sujrai\product\11.2.0\dbhome_2\ODP.NET\bin\2.x\OraProvCfg.exe /action:config /product:odp /frameworkversion:v2.0.50727 /productversion:2.112.1.0'
    I tried few times but it fails over and over again at this same stage. I am instaling in d:/ drive
    Never faced this issue before. Would appreciate any comments on this.
    thanks

    Hi;
    Please check log file for details. What is your xp version? Home version is not supported
    Regard
    Helios

  • Oracle 11g on Windows XP

    Hello All,
    I recently downloaded a copy of Oracle 11g for windows and installed it on my windows xp laptop.
    I was able to install it without issues but I am unable to create a new database!
    A little digging around revealed that there are very less no. of configurable parameters in 11g.
    And that we don't have sga_max_size/sga_target anymore! Instead we have memory_target.
    But inspite of ensuring all these changes, I keep running to the "end of file on communication channel" error.
    Am I missing something here? I am using more-or-less the same approach to creating a database manually, that I have used for 9iR2; 10gR2 .
    Any advise will be appreciated.
    -Anand

    Hello All,
    I tried BOTH dbca as well as Manual Create database statement.
    I finally managed to locate the alert log file and found a bunch of ORA-7445 Core Dump errors.
    Note: With oracle 11g the background_dump_dest parameter is ignored and the alert log location is defined by the DIAGNOSTIC_DEST parameter.
    And it points to:
    <ORACLE_BASE>\diag\rdbms\<SID>\<SID>\trace
    Wed Jul 09 17:03:22 2008
    Starting ORACLE instance (normal)
    Exception [type: IN_PAGE_ERROR, ] [] [PC:0x1026F5C, _ktfanfy()+0]
    Errors in file c:\oracle\product\11g_base\diag\rdbms\hsa11gdb\hsa11gdb\trace\hsa11gdb_ora_3836.trc (incident=2):
    ORA-07445: exception encountered: core dump [ktfanfy()+0] [IN_PAGE_ERROR] [] [PC:0x1026F5C] [] []
    Incident details in: c:\oracle\product\11g_base\diag\rdbms\hsa11gdb\hsa11gdb\incident\incdir_2\hsa11gdb_ora_3836_i2.trc
    Sweep Incident[2]: completed
    I am digging deeper in metalink and will keep all posted with findings.
    -Anand

  • Oracle 11g jars not being compatible with WAS 6.1.x versions

    Hi,
    We have an issue with Oracle 11g jars not being compatible with WAS 6.1.x versions.
    If we use Oracle10g client jars then they are working with the 11g database.
    Below are the findings
    Working fine With Ojdbc14.jar
    Not working With Ojdbc5.jar
    WAS 6.0
    Working fine With Ojdbc14.jar
    Not working With Ojdbc5.jar
    WAS 6.013
    Working fine With Ojdbc14.jar
    Not working With Ojdbc5.jar
    As per IBM website link Oracle 11g should be working with WAS 6.1.0.21 upwards
    Could somebody please help me regarding the same.
    thanks & Regards,
    Anoop

    # Download the full Firefox installer from http://www.mozilla.com/
    # Delete the Firefox [http://kb.mozillazine.org/Installation_directory installation directory], making sure all the Firefox files and folders are removed. The default location on 32 bit Windows is C:\Program Files\Mozilla Firefox\
    # Re-install Firefox
    Note that deleting the Firefox installation directory will not remove your bookmarks or other Firefox user data, they are stored elsewhere.

  • About memory issue during installing Oracle 11g on Windows Server 2003

    Hi, all
    When I installed Oracle 11g on Windows Server 2003 which the server is a virtual server, Oracle only can detect 2G memory.
    But there are 4G memory with my server.
    I want to know if the Oracle 11g's new feature or the virtual server lead the issue.
    Also , I want to get your help to resolve the issue, thanks a lot.

    Let me get this straight:
    You have created some virtual machine using someone's unknown VM software.
    You have installed Windows Server 2003 (perhaps, but not confirmed 32-bit) to that VM.
    You have allocated 4GB of memory to the VM (we guess ... not sure I'm ready to take your word on this)
    You are attempting to install Oracle 11g (presumably 11gR1 32 bit for Windows) in the VM
    And the Oracle (installer?) seems to be reporting that you only have 2GB RAM.
    Since I personally have installed Oracle 11g 32bit for Windows on Windows 2003 server with 4GB RAM and had no issues, I would be investigating the (unknown) VM environment.

  • Install Oracle 11g on windows 7 Home Premium?

    All,
    I'm trying to install Oracle 11g on windows 7 home premium edition? Is there any one installed successfully?

    >
    I'm trying to install Oracle 11g on windows 7 home premium edition? Is there any one installed successfully?
    >
    Do you have any specific issues with your installation? I don't see why you shouldn't be able to install Oracle 11g on Windows 7. Found a quick blog post for you:
    http://mgrvinod.wordpress.com/2011/05/23/oracle11g-r2-on-windows7-home-premium-64bit/

  • Istalling oracle 11g on windows vista

    Hi,
    i need to install oracle 11g on windows vista, unfortunately i cannot able do to that, becase after double cliking on the setup a messege like this one came out:
    OUI-10151: There was an error while loading library.generalQueries. Stop installation of all products, Stop installation on this component.
    I've found on internet some work around of this problem BUT only on linux machine, no one as telling me some way to fix my problem on windows vista.
    I also tried using oui to deinstall any previews installed version but oiu tell me that there's not any installation of oracle.
    any suggest is really appreciate
    regards
    Francesco

    By 11g I am assuming you mean 11.1.0.6 (11gR1). Pl post which Vista version you are using - 11gR1 is certified to be installed only on Business, Enterprise, and Ultimate editions.
    http://download.oracle.com/docs/cd/B28359_01/install.111/b32006/reqs.htm#CHDHGGFE
    HTH
    Srini

  • Install Oracle 11gr2 on Windows 2008 R2 with ASM step by step Guide needed

    Hi,
    I am looking for a step by step guide on installing Oracle 11gr2 on Windows 2008 R2 with ASM etc. This is not a RAC environment since ASM architecture is a bit different in 11gR2, I would appreciate if anyone can point me to a guide to follow or provide a one.
    Thanks in advance.
    Sujith

    Hi Sujith;
    I am looking for a step by step guide on installing Oracle 11gr2 on Windows 2008 R2 with ASM etc. This is not a RAC environment since ASM architecture is a bit different in 11gR2, I would appreciate if anyone can point me to a guide to follow or provide a one.You need to install grid first(Software only) its neccessary for ASM, Than you need to use asmca to create asm disks than you need to install 11gr2
    All doc avaliable at:
    http://www.oracle.com/pls/db112/homepage
    Regard
    Helios

  • Installing Oracle 11g on windows XP., after installation enterprize manager

    Hello All,
    kindly note that i am new to oracle and having a issue that i cant seem to figure out and hoping a experienced person can answer this.
    i download oracle 11g for windows 32 bit on my laptop, go through the installation and use the option to crate a starter database.
    meet all the pre- req and every thing goes smooth. database gets created, use sqlplus to connect ot the database also open the enterprise manager and and also see the GUI after logging in.
    now what happens it works fine for a day or some times two and when i reboot the machine and go back and try to open the EM its gives me the error cant find the URL. i have tried it few times and it happens every time. i don't know what i am doing it wrong but for some reason the EM manager doesn't work . i can still log on the database using the sqlplus.
    must thing must get changed ( may be the IP address or env some how). i really appreciate if some one can guide me in the right path.
    Thanks in advance.

    Thanks for the response,
    well the laptop i am using is a work computer , i installed oracle so i can practice on it.. i Think the IP changes after a while. is that the reason?.. how can i remedy it do my EM works all the time?
    Please advice.

  • Error running universall installer using Oracle 11g on Windows server 2003

    Hi,
    I want to uninstall Oracle 11g on Windows server 2003 and when I run universall installer I receive the following error
    Checking swap space: 0 MB available, 500 MB required.
    Please advise how to resolve this error and the procedure to uninstall Oracle 11g on Windows server 2003
    Thanks,
    Ant

    Hi;
    For swap problem, please check:
    Swap space problem on Windows XP
    http://www.pcnineoneone.com/howto/swpfile1.html
    For remove process please check:
    Oracle 11g on Windows Srv 2003
    WIN: Manually Removing all Oracle Components on Microsoft Windows Platforms [ID 124353.1]
    Regard
    Helios

  • Connect to DB2 from oracle 11g on windows 2008 server

    Hi Folks,
    I want to conenct to DB2 from oracle 11g using DB link.
    DB2 :
    user : db2user
    pwd : db2pwd
    database : db2database (OSBLDEV)
    able to connect to db2 server (installed on machine M1) using db2 client with above details from machine M2 (where oracle is installed).
    Oracle :
    user : orauser
    pwd : orapwd
    host : orahost
    port : 1521
    service : oraservice
    able to connect to oracle server using oracle sql developer with above details on Machine M2 (windows 2008 server)
    when i execute the query with database link
    select row_id from siebel.s_org_ext@OSBLDEV;
    I get the message : ORA-12154: TNS:could not resolve the connect identifier specified.
    could you pls check and let me know whether the below enteries are correct or not.
    Pls share if you have step by step connectivity from DB2 to oracle using DB link.
    1. I have created the Data source for DB2 - test successful
    create database link OSBLDEV
    connect to "db2user"
    identified by "ldb2pwd"
    using 'OSBLDEV';
    1. I have made the following entry in E:\oracle\product\11.1.0\db_1\hs\admin\initosbldev.ora
    HS_FDS_CONNECT_INFO = OSBLDEV
    HS_FDS_TRACE_LEVEL = 0
    2. I have made the following entry in E:\oracle\product\11.1.0\db_1\NETWORK\ADMIN\tnsnames.ora
    OSBLDEV =
    (DESCRIPTION=
    (ADDRESS=(PROTOCOL=tcp)(HOST=orahost)(PORT=1521))
    (CONNECT_DATA=(SID=OSBLDEV))
    (HS=OK)
    3. I have made the following entry in E:\oracle\product\11.1.0\db_1\NETWORK\ADMIN\listener.ora and releoaded the listner (lsnrctl reload)
    LISTENER =
    (ADDRESS_LIST=
    (ADDRESS=(PROTOCOL=tcp)(HOST=orahost)(PORT=1521))
    (ADDRESS=(PROTOCOL=ipc)(KEY=PNPKEY)))
    SID_LIST_LISTENER=
    (SID_LIST=
         (SID_DESC = # this is the entry for HSODBC
         (SID_NAME = OSBLDEV)
         (ORACLE_HOME = e:\oracle\product\11.1.0\db_1)
         (PROGRAM = hsodbc)
    Thanks in advance.

    1. My listener.ora is placed at the below location:
    E:\oracle\product\11.1.0\db_1\NETWORK\ADMIN
    2. I have modifed the listener and removed the entry - hsodbc
    3. stop and start the listener.
    still can't see the service entry in listener status.
    C:\>lsnrctl status
    LSNRCTL for 64-bit Windows: Version 11.1.0.7.0 - Production on 19-JUL-2010 02:27
    :08
    Copyright (c) 1991, 2008, Oracle. All rights reserved.
    Connecting to (ADDRESS=(PROTOCOL=tcp)(HOST=)(PORT=1521))
    STATUS of the LISTENER
    Alias LISTENER
    Version TNSLSNR for 64-bit Windows: Version 11.1.0.7.0 - Produ
    ction
    Start Date 19-JUL-2010 02:21:17
    Uptime 0 days 0 hr. 5 min. 52 sec
    Trace Level off
    Security ON: Local OS Authentication
    SNMP OFF
    Listener Log File e:\oracle\diag\tnslsnr\DALDEVDBCRM1\listener\alert\log
    .xml
    Listening Endpoints Summary...
    (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=daldevdbcrm1.corp.nai.org)(PORT=1521
    Services Summary...
    Service "+ASM" has 1 instance(s).
    Instance "+asm1", status READY, has 1 handler(s) for this service...
    Service "+ASM_XPT" has 1 instance(s).
    Instance "+asm1", status READY, has 1 handler(s) for this service...
    Service "ARIBADEV" has 1 instance(s).
    Instance "ariba", status READY, has 1 handler(s) for this service...
    Service "ARIBADEV_XPT" has 1 instance(s).
    Instance "ariba", status READY, has 1 handler(s) for this service...
    Service "ARIBAXDB" has 1 instance(s).
    Instance "ariba", status READY, has 1 handler(s) for this service...
    Service "aiad.corp.nai.org" has 2 instance(s).
    Instance "aiad1", status READY, has 2 handler(s) for this service...
    Instance "aiad2", status READY, has 1 handler(s) for this service...
    Service "aiadXDB.corp.nai.org" has 2 instance(s).
    Instance "aiad1", status READY, has 1 handler(s) for this service...
    Instance "aiad2", status READY, has 1 handler(s) for this service...
    Service "aiad_XPT.corp.nai.org" has 2 instance(s).
    Instance "aiad1", status READY, has 2 handler(s) for this service...
    Instance "aiad2", status READY, has 1 handler(s) for this service...
    Service "aianew" has 1 instance(s).
    Instance "aianew", status READY, has 1 handler(s) for this service...
    Service "aianewXDB" has 1 instance(s).
    Instance "aianew", status READY, has 1 handler(s) for this service...
    Service "aianew_XPT" has 1 instance(s).
    Instance "aianew", status READY, has 1 handler(s) for this service...
    The command completed successfully
    C:\>

  • Installation of Oracle 11g on Windows 8

    I am trying to install Oracle 11g Database in my windows 8 system.
    Whenever i click on the setup.exe the installer window pops up and nothing happens.
    I am running it as an administrator.
    I need some help on this. I have tried to run in compatibility mode as well but help.

    994288 wrote:
    I am trying to install Oracle 11g Database in my windows 8 system.Pl identify exact version. Neither 11gR1 not 11gR2 are supported on Win 8 - supported OS versions are documented - http://docs.oracle.com/cd/E11882_01/install.112/e24186/reqs.htm#CHDHGGFE
    Certification of Win 8 is expected with a future release - see http://www.oracle.com/technetwork/database/windows/tech-info/sod-oracle-db-win8-win2012-1853201.pdf
    You have three options
    1. Wait for this future Oracle release
    2. Downgrade your OS to a supported version.
    3. Install VM software (like Virtualbox), create a VM, install a supported OS in the VM, then install 11gR2 in the VM - see my blog (linked in my profile) for a detailed example
    Whenever i click on the setup.exe the installer window pops up and nothing happens.
    I am running it as an administrator.
    I need some help on this. I have tried to run in compatibility mode as well but help.HTH
    Srini

  • Installation of oracle 11g on windows 7 professional

    Can I install oracle database 11g standard edition one on windows 7 professional edition

    HI,
    Can I install oracle database 11g standard edition one on windows 7 professional editionAs i know Windows 7 is not yet certified with any oracle version. I Installed oracle 11g client software successfully on windows 7.
    To check certification: https://support.oracle.com/CSP/ui/flash.html#tab=Certification(page=Certification&id=g608mkh6())
    Also Refer: Install Oracle 11g client on Windows 7
    Regards,
    X A H E E R

  • Oracle 11g on Windows server 2003

    I've oracle 11g installed on Windows Server 2003.
    I have installed oracle 11g twice, so wasn't sure how to uninstall one version without effecting the other.
    There are a few databases set up, none of which are now working.
    Trying to connect using mysql client, or the oracle11g client results in TNSListener errors:
    'TNSListener does not currently know of service requested in connect descriptor'
    LSNRCTL> status
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC1521)))
    STATUS of the LISTENER
    Alias LISTENER
    Version TNSLSNR for 32-bit Windows: Version 11.1.0.6.0 - Produ
    ction
    Start Date 02-MAR-2009 11:54:42
    Uptime 0 days 3 hr. 30 min. 1 sec
    Trace Level off
    Security ON: Local OS Authentication
    SNMP OFF
    Listener Parameter File c:\apps\oracle\product\11.1.0\db\network\admin\listene
    r.ora
    Listener Log File c:\apps\oracle\diag\tnslsnr\selene\listener\alert\log.
    xml
    Listening Endpoints Summary...
    (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(PIPENAME=\\.\pipe\EXTPROC1521ipc)))
    (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=selene.compsci.cs.tcd.ie)(PORT=1521)
    Services Summary...
    Service "cs.compsci" has 1 instance(s).
    Instance "cs", status READY, has 2 handler(s) for this service...
    Service "cs_XPT.compsci" has 1 instance(s).
    Instance "cs", status READY, has 2 handler(s) for this service...
    The command completed successfully
    Trying to modify the database (using Database Configuration Assistant) results in the error:
    'there is an error in creating the following process: c:\apps\oracle\product\11.1.0\db\bin\sqlplus.exe -S /NOLOG the error is: Error 6 initializing SQL*Plus Messaging file sp1<lang>.msb not found SP2-0750: You may need to set ORACLE_HOME to your oracle software directory'
    If there are forums you would recommend to a completely new oracle sysadmin please let me know.
    Many thanks.

    I recommend you read the '2 Days DBA' manual in order to get a basic understanding. It may be necessary to uninstall the current installation(s), especially the last error message looks like a corrupted environment.
    Werner
    http://download.oracle.com/docs/cd/B28359_01/server.111/b28301/toc.htm
    Edited by: oradba on Mar 2, 2009 7:57 PM

Maybe you are looking for