Oracle info at  OS

Hi,
Where the DATABASE info stored at OS level?
Where the ORACLE installed software info stored at OS level?
what are the info stored at Os level while installing Oracle software.
Currently we are working on Red Hat.Is there any menu for Database and Oracle Apps and Oracle Application Server like windows.

user3266490 wrote:
Hi,
Where the DATABASE info stored at OS level?As physical files (Data Files, ControlFiles and Redo Log files)
You can get name of each physical file from the following views:
V$DATAFILE
V$CONTROLFILE
V$LOGFILE
Where the ORACLE installed software info stored at OS level?At ORACLE_HOME directory. You specify it during Oralce installation
what are the info stored at Os level while installing Oracle software.>
Currently we are working on Red Hat.Is there any menu for Database and Oracle Apps and Oracle Application Server like windows.NO there's no any menu

Similar Messages

  • Not gathering any oracle info

    MAP 6.0 with oracle 11.2 client installed on Map server.  SSH finds the Linux oracle servers and obtains Linux info but nothing about oracle is captured.  MAP documentation says the required credential for Oracle is 'Administrator' credentials. 
    Would 'Administrator' be the linux user owning the oracle install or root or a database login?
    Any other info on how MAP collects oracle info would be helpful. 
    Thanks

    MAP should be able to discover SID/instance information at a minimum. Have you tried using root? There are multiple rounds of data collection that occur, the first
    is when MAP attempts to collect hardware and service information from every machine (Oracle SID/instance information is part of this). Then, based on what information gets returned, it will queue up machines for additional scans, such as directly connecting
    to the Oracle database engine to gather more info, like schema info for Oracle. This additional scan requires the Oracle client to be installed on the MAP machine.
    To answer your question on credentials, the scan of Linux is done with SSH and therefore need admin or root credentials for Linux. For the in depth Oracle scan, you
    will need admin credentials for the database engine so that queries can be run for schema info.
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.

  • Scripting to gather oracle info on a Linux box Finding rac/normal instance?

    Hello all,
    I've been tasked by the disaster recovery team to get a little quick script for them to run, to see what oracle instances are on a box, if it is up, listener is running, etc.
    So far, with normal, one node instances I've had success. I grab data from the /etc/oratab file, and parse it out with awk to get a ORACLE_SID and and ORACLE_HOME.
    This script is run as the oracle user or a user in the dba group, so, that with each instance, I attempt a logon through SQL*Plus as connect / as sysdba and does a query to gather some instance information that I echo to the screen to establish that the instance is up and connectable.
    The problem I have run into, is if there is an instance listed for a node of a RAC cluster....it doesn't see that entries to /etc/oratab are quite the same using dbca for RAC nodes as normal nodes.
    For instance, say I have a cluster RAC which has nodes rac1 rac2 and rac3.
    From what I'm seeing...on the individual nodes, in the /etc/oratab entries only seem to be put in for the cluster RAC, rather that say rac1. My script which tries to set the oracle sid and home and connect / as sysdba fails. If the entry were put in there as rac1, it should work, I'd think.
    Can someone make suggestions for me to use with this script, so that I can find out what node instance is running, if RAC is on the computer...and automatically find and connect similar to how I'm doing with the single databases using /etc/oratab
    Is there a similar file to /etc/oratab that is used by the clusterware on the system?
    Thanks in advance,
    cayenne
    Edited by: cayenne on Apr 15, 2009 12:57 PM

    S2K wrote:
    please post your script here so we can see what exactly is going on...and help you point out stuff...Certainly...that might help indeed.
    Here is the listing:
    #! /bin/bash
    #grab original path so as to reuse on each loop interation to ensure ONLY
    # the oracle binaries from the proper oracle home are used.
    old_path=$PATH
    #set oracle_home/bin path for listener
    #to guess best fit, hit first home that is bootable
    #and not listed as ASM
    #start as empty
    listener_path=
    if [ -e "/etc/oratab" ]
    then
         #grab and clean the entries for oracle instances and their respective oracle homes
         oracle_instances=`cat /etc/oratab | sed '/#/d' | sed '/\*/d' | sed '/^$/d'`
         echo 'Testing connections to Oracle intances as listed in /etc/oratab'
         echo 'and testing connectivity, start times and status'
         echo '----------------------------------------------------------------------------------------------------'
         for oinstance in $oracle_instances;
         do
              oracle_sid=`echo $oinstance | awk -F":" '{print $1}'`
              oracle_home=`echo $oinstance | awk -F":" '{print $2}'`
              oracle_bootable=`echo $oinstance | awk -F":" '{print $3}'`
              echo
              echo 'Using ORACLE_HOME='$oracle_home
              echo
              export ORACLE_HOME=$oracle_home #set oracle home
              echo 'Setting ORACLE_SID='$oracle_sid
              echo
              export ORACLE_SID=$oracle_sid #set oracle sid
              echo 'Adding Oracle bin to path'
              echo
              echo '----------------------------------------------------------------------------------------------------'
              echo
              export PATH=$ORACLE_HOME/bin:$old_path #reset to old path plus new oracle home /bin
              #Test and set listener path
              # do I need this? to exclude asm for listener? && `expr match "$oracle_sid" \+ASM.*` = 0
              if [[ -z "$listener_path" && $oracle_bootable != "N" ]] #Test to see if listener path set yet, if not, is instance set bootable
              then
                   listener_path=$oracle_home/bin:$old_path
              fi
              #Next, connect through sqlplus and query v$instance table to prove connectivity
              output= #Reset output for each iteration
              output=`sqlplus -s "/ as sysdba" <<EOF
              set heading off feedback off verify off
              select 'Instance Name='||instance_name||' Host='||host_name||' Start Time='||to_char (startup_time, 'HH:MI AM MON DD,YYYY')||' Status='||status from v\\$instance;
              exit
              EOF`
              echo 'Connection to Database returns message:'
              # If sqlplus fails, print error message
              echo
              if [[ -z "$output" || `expr match "$output" .*ORA-.*` > 0 ]]
              then
                   echo 'Unable to conect and query database instance = '$oracle_sid
              else
                   echo $output
                   echo
                   echo '----------------------------------------------------------------------------------------------------'
                   echo
                   echo 'Schemas on this Database Instance: '$oracle_sid
                   echo
                   if [[ `expr match "$oracle_sid" \+ASM.*` = 0 ]] #Test to see if an ASM instance
                   then
                        #Hit sqlplus again, this time to grab and display a list of schema/usernames on this instance.
                        sqlplus -s "/ as sysdba" <<EOF
                        set heading off feedback off verify off pagesize 0
                        select username from dba_users order by username;
                        exit
    EOF
                   else
                        echo 'Instance '$oracle_sid' is an Auto Storage Management instance, no user schemas to report'
                   fi #end test for ASM
              fi
              echo
              echo '----------------------------------------------------------------------------------------------------'
         done
         echo
         ###Look into what path is used here for the listener!!
         output=''
         echo 'Checking output for querying the Oracle Listener'
         echo
         if [[ -n "$listener_path" ]]
         then
              lsnrctl status
         else
              echo
              echo 'Oracle Home Not set to bootable path, cannot find path for listener'
         fi
         echo
         echo '----------------------------------------------------------------------------------------------------'
    else
         echo '----------------------------------------------------------------------------------------------------'
         echo 'Unable to test connectivity to oracle database instances due to '
         echo 'the file /etc/oratab NOT being found on this system'
         echo '----------------------------------------------------------------------------------------------------'
    fi #End if statement testing if /etc/oratab present
    echo
    echo 'Listing Oracle processes currently running on this box'
    echo
    ps -ef | grep oracle
    echo
    echo '----------------------------------------------------------------------------------------------------'
    As I mentioned before, the problem comes when a RAC instance is in the /etc/oratab...apparently dbca puts in the RAC sid, not the node sid....and when my script tries to connect...it can't and throws the not started error.
    See other email for details of the problem.
    This is the script I'm working on....any suggestions greatly appreciated!!
    cayenne

  • GTC Error While Provisioning to Oracle Database Tables

    I'm trying to setup GTC connector to provisioning/reconcile users into database tables, but during the provisionig gtc fails. check the lines above to see the error
    ERROR,07 Nov 2010 20:18:38,383,[OIMCP.DATC],Class/Method: DBProvisioningTransportProvider/sendData encounter some problems: Attribute: matricula does not exist in the specified parent table/view: xladm.usuarios_view
    com.thortech.xl.gc.exception.DBException: Attribute: matricula does not exist in the specified parent table/view: xladm.usuarios_view
    matricula is the primary key
    I'm using OIM 9102 with bundle patch 12 appled. connector version is 9105. Oracle database version is 11.1.0.7. My platform is Windows 2003.
    database table's ddl
    create table usuarios (
    matricula varchar2(10) primary key,
    nome varchar2(80),
    status varchar2(20),
    ultima_atualizacao date,
    senha varchar2(20));
    create view usuarios_view as select * from usuarios;
    GTC Connector Setup
    Provide Basic Information View
    Name INFO
    Reconciliation
    Transport Provider Database Application Tables Reconciliation
    Format Provider Database Application Tables Reconciliation
    Trusted Source Reconciliation No
    Provisioning
    Transport Provider Database Application Tables Provisioning
    Format Provider Database Application Tables Provisioning
    Specify Parameter Values Change
    Database Driver oracle.jdbc.driver.OracleDriver
    Database URL jdbc:oracle:thin:@localhost:1521:orcl
    Database User ID xladm
    Database Password ********
    Customized Query
    Use Native Query No
    Connection Properties
    Parent Table/View Name usuarios_view
    Child Table/View Names
    Unique Attribute matricula
    Timestamp Attribute ultima_atualizacao
    Database Date format
    Status Attribute status
    Status Lookup Code Lookup.InfoGolden.Status
    Is Primary Key Auto Incremented No
    Target Date Format yyyy-MM-dd hh:mm:ss.fffffffff
    Batch Size All
    Stop Reconciliation Threshold None
    Stop Threshold Minimum Records None
    Source Date Format yyyy/MM/dd hh:mm:ss z
    Reconcile Deletion of Multivalued Attribute Data Yes
    Reconciliation Type Full
    error log
    Running GENERICADAPTER
    Target Class = com.thortech.xl.gc.runtime.GCAdapterLibrary
    DEBUG,07 Nov 2010 20:18:37,086,[OIMCP.DATC],Class/Method: DBReconFormatProvider/formatData entered.
    DEBUG,07 Nov 2010 20:18:37,086,[OIMCP.DATC],Class/Method: DBProvisioningTransportProvider/initialize entered.
    DEBUG,07 Nov 2010 20:18:37,086,[OIMCP.DATC],Class/Method: DBProvisioningTransportProvider/initialize - Data: driver - Value: oracle.jdbc.driver.OracleDriver
    DEBUG,07 Nov 2010 20:18:37,086,[OIMCP.DATC],Class/Method: DBProvisioningTransportProvider/initialize - Data: url - Value: jdbc:oracle:thin:@localhost:1521:orcl
    DEBUG,07 Nov 2010 20:18:37,086,[OIMCP.DATC],Class/Method: DBProvisioningTransportProvider/initialize - Data: username - Value: xladm
    DEBUG,07 Nov 2010 20:18:37,086,[OIMCP.DATC],Class/Method: DBProvisioningTransportProvider/initialize - Data: password - Value: *******
    DEBUG,07 Nov 2010 20:18:37,086,[OIMCP.DATC],Class/Method: DBProvisioningTransportProvider/initialize - Data: parentContainerName - Value: usuarios_view
    DEBUG,07 Nov 2010 20:18:37,086,[OIMCP.DATC],Class/Method: DBReconTransportProvider/convertCSVToArraylist entered.
    DEBUG,07 Nov 2010 20:18:37,086,[OIMCP.DATC],Class/Method: DBReconTransportProvider/convertCSVToArraylist - Data: Run Time Parameters - Value: []
    DEBUG,07 Nov 2010 20:18:37,086,[OIMCP.DATC],Class/Method: DBProvisioningTransportProvider/initialize - Data: childContainerTableNames - Value: []
    DEBUG,07 Nov 2010 20:18:37,086,[OIMCP.DATC],Class/Method: DBProvisioningTransportProvider/initialize - Data: parentContainerUniqueKey - Value: matricula
    DEBUG,07 Nov 2010 20:18:37,086,[OIMCP.DATC],Class/Method: DBProvisioningTransportProvider/initialize - Data: statusField - Value: status
    DEBUG,07 Nov 2010 20:18:37,086,[OIMCP.DATC],Class/Method: DBProvisioningTransportProvider/initialize - Data: statusFieldLookup - Value: Lookup.InfoGolden.Status
    DEBUG,07 Nov 2010 20:18:37,086,[OIMCP.DATC],Class/Method: DBProvisioningTransportProvider/initialize left.
    DEBUG,07 Nov 2010 20:18:37,086,[OIMCP.DATC],Class/Method: DBProvisioningTransportProvider/initialize - Data: dbDateFormat - Value:
    DEBUG,07 Nov 2010 20:18:37,086,[OIMCP.DATC],Class/Method: DBProvisioningTransportProvider/sendData entered.
    INFO,07 Nov 2010 20:18:37,086,[OIMCP.DATC],Within PROV_OPERATION_ADDUSER::statusField=status
    DEBUG,07 Nov 2010 20:18:37,117,[OIMCP.DATC],Class/Method: DBFacade/getConnectionProp entered.
    DEBUG,07 Nov 2010 20:18:37,117,[OIMCP.DATC],Class/Method: DBFacade/setUpSSLPropertiesForDB2 entered.
    DEBUG,07 Nov 2010 20:18:37,117,[OIMCP.DATC],ExitingMethodDebug
    INFO,07 Nov 2010 20:18:37,148,[OIMCP.DATC],dbType:::: = Oracle
    DEBUG,07 Nov 2010 20:18:37,148,[OIMCP.DATC],Class/Method: DBFacade/getMatchingSchemaName - Data: found matching schema - Value: XLADM
    DEBUG,07 Nov 2010 20:18:37,148,[OIMCP.DATC],Class/Method: DBFacade/getMatchingTableName - Data: found exact matching schema:- - Value: XLADM
    DEBUG,07 Nov 2010 20:18:37,227,[OIMCP.DATC],Class/Method: DBFacade/getMatchingTableName - Data: found matching tables - Value: USUARIOS_VIEW
    DEBUG,07 Nov 2010 20:18:37,227,[OIMCP.DATC],Class/Method: DBFacade/getMatchingTableName - Data: found exact matching table:- - Value: USUARIOS_VIEW
    INFO,07 Nov 2010 20:18:37,258,[OIMCP.DATC],dbType:::: = Oracle
    DEBUG,07 Nov 2010 20:18:37,273,[OIMCP.DATC],Class/Method: DBFacade/getMatchingSchemaName - Data: found matching schema - Value: XLADM
    DEBUG,07 Nov 2010 20:18:37,273,[OIMCP.DATC],Class/Method: DBFacade/getMatchingTableName - Data: found exact matching schema:- - Value: XLADM
    DEBUG,07 Nov 2010 20:18:37,336,[OIMCP.DATC],Class/Method: DBFacade/getMatchingTableName - Data: found matching tables - Value: USUARIOS_VIEW
    DEBUG,07 Nov 2010 20:18:37,336,[OIMCP.DATC],Class/Method: DBFacade/getMatchingTableName - Data: found exact matching table:- - Value: USUARIOS_VIEW
    INFO,07 Nov 2010 20:18:37,445,[OIMCP.DATC],dbType:::: = Oracle
    INFO,07 Nov 2010 20:18:37,445,[OIMCP.DATC],dbType:::: = Oracle
    DEBUG,07 Nov 2010 20:18:37,445,[OIMCP.DATC],Class/Method: DBFacade/getMatchingSchemaName - Data: found matching schema - Value: XLADM
    DEBUG,07 Nov 2010 20:18:37,445,[OIMCP.DATC],Class/Method: DBFacade/getMatchingTableName - Data: found exact matching schema:- - Value: XLADM
    DEBUG,07 Nov 2010 20:18:37,523,[OIMCP.DATC],Class/Method: DBFacade/getMatchingTableName - Data: found matching tables - Value: USUARIOS_VIEW
    DEBUG,07 Nov 2010 20:18:37,523,[OIMCP.DATC],Class/Method: DBFacade/getMatchingTableName - Data: found exact matching table:- - Value: USUARIOS_VIEW
    DEBUG,07 Nov 2010 20:18:38,367,[OIMCP.DATC],Class/Method: DBFacade/getPrimaryKeys - Data: Primary Keys - Value: []
    DEBUG,07 Nov 2010 20:18:38,383,[OIMCP.DATC],Class/Method: DBFacade/getColumns - Data: Column Name: - Value: MATRICULA
    DEBUG,07 Nov 2010 20:18:38,383,[OIMCP.DATC],Class/Method: DBFacade/getColumns - Data: Column Dataype integer value: - Value: 12
    DEBUG,07 Nov 2010 20:18:38,383,[OIMCP.DATC],Class/Method: DBFacade/getColumns - Data: Column Size: - Value: 10
    DEBUG,07 Nov 2010 20:18:38,383,[OIMCP.DATC],Class/Method: DBFacade/getColumns - Data: Table Name: - Value: USUARIOS_VIEW
    DEBUG,07 Nov 2010 20:18:38,383,[OIMCP.DATC],Class/Method: DBFacade/getClumns - Data: Column Datatype Name: - Value: VARCHAR2
    DEBUG,07 Nov 2010 20:18:38,383,[OIMCP.DATC],Class/Method: DBFacade/getColumns - Data: Database Type Name: - Value: Oracle
    DEBUG,07 Nov 2010 20:18:38,383,[OIMCP.DATC],Class/Method: DBFacade/getColumns - Data: Column Name: - Value: NOME
    DEBUG,07 Nov 2010 20:18:38,383,[OIMCP.DATC],Class/Method: DBFacade/getColumns - Data: Column Dataype integer value: - Value: 12
    DEBUG,07 Nov 2010 20:18:38,383,[OIMCP.DATC],Class/Method: DBFacade/getColumns - Data: Column Size: - Value: 80
    DEBUG,07 Nov 2010 20:18:38,383,[OIMCP.DATC],Class/Method: DBFacade/getColumns - Data: Table Name: - Value: USUARIOS_VIEW
    DEBUG,07 Nov 2010 20:18:38,383,[OIMCP.DATC],Class/Method: DBFacade/getClumns - Data: Column Datatype Name: - Value: VARCHAR2
    DEBUG,07 Nov 2010 20:18:38,383,[OIMCP.DATC],Class/Method: DBFacade/getColumns - Data: Database Type Name: - Value: Oracle
    DEBUG,07 Nov 2010 20:18:38,383,[OIMCP.DATC],Class/Method: DBFacade/getColumns - Data: Column Name: - Value: STATUS
    DEBUG,07 Nov 2010 20:18:38,383,[OIMCP.DATC],Class/Method: DBFacade/getColumns - Data: Column Dataype integer value: - Value: 12
    DEBUG,07 Nov 2010 20:18:38,383,[OIMCP.DATC],Class/Method: DBFacade/getColumns - Data: Column Size: - Value: 20
    DEBUG,07 Nov 2010 20:18:38,383,[OIMCP.DATC],Class/Method: DBFacade/getColumns - Data: Table Name: - Value: USUARIOS_VIEW
    DEBUG,07 Nov 2010 20:18:38,383,[OIMCP.DATC],Class/Method: DBFacade/getClumns - Data: Column Datatype Name: - Value: VARCHAR2
    DEBUG,07 Nov 2010 20:18:38,383,[OIMCP.DATC],Class/Method: DBFacade/getColumns - Data: Database Type Name: - Value: Oracle
    DEBUG,07 Nov 2010 20:18:38,383,[OIMCP.DATC],Class/Method: DBFacade/getColumns - Data: Column Name: - Value: ULTIMA_ATUALIZACAO
    DEBUG,07 Nov 2010 20:18:38,383,[OIMCP.DATC],Class/Method: DBFacade/getColumns - Data: Column Dataype integer value: - Value: 93
    DEBUG,07 Nov 2010 20:18:38,383,[OIMCP.DATC],Class/Method: DBFacade/getColumns - Data: Column Size: - Value: 7
    DEBUG,07 Nov 2010 20:18:38,383,[OIMCP.DATC],Class/Method: DBFacade/getColumns - Data: Table Name: - Value: USUARIOS_VIEW
    DEBUG,07 Nov 2010 20:18:38,383,[OIMCP.DATC],Class/Method: DBFacade/getClumns - Data: Column Datatype Name: - Value: DATE
    DEBUG,07 Nov 2010 20:18:38,383,[OIMCP.DATC],Class/Method: DBFacade/getColumns - Data: Database Type Name: - Value: Oracle
    DEBUG,07 Nov 2010 20:18:38,383,[OIMCP.DATC],Class/Method: DBFacade/getColumns - Data: Column Name: - Value: SENHA
    DEBUG,07 Nov 2010 20:18:38,383,[OIMCP.DATC],Class/Method: DBFacade/getColumns - Data: Column Dataype integer value: - Value: 12
    DEBUG,07 Nov 2010 20:18:38,383,[OIMCP.DATC],Class/Method: DBFacade/getColumns - Data: Column Size: - Value: 20
    DEBUG,07 Nov 2010 20:18:38,383,[OIMCP.DATC],Class/Method: DBFacade/getColumns - Data: Table Name: - Value: USUARIOS_VIEW
    DEBUG,07 Nov 2010 20:18:38,383,[OIMCP.DATC],Class/Method: DBFacade/getClumns - Data: Column Datatype Name: - Value: VARCHAR2
    DEBUG,07 Nov 2010 20:18:38,383,[OIMCP.DATC],Class/Method: DBFacade/getColumns - Data: Database Type Name: - Value: Oracle
    DEBUG,07 Nov 2010 20:18:38,383,[OIMCP.DATC],Class/Method: DBFacade/getClumns - Data: Columns: - Value: [com.thortech.xl.gc.impl.common.Column@187f99a, com.thortech.xl.gc.impl.common.Column@1428b7, com.thortech.xl.gc.impl.common.Column@17d39b5, com.thortech.xl.gc.impl.common.Column@57cf27, com.thortech.xl.gc.impl.common.Column@e1319f]
    ERROR,07 Nov 2010 20:18:38,383,[OIMCP.DATC],Class/Method: DBProvisioningTransportProvider/sendData encounter some problems: Attribute: matricula does not exist in the specified parent table/view: xladm.usuarios_view
    com.thortech.xl.gc.exception.DBException: Attribute: matricula does not exist in the specified parent table/view: xladm.usuarios_view
         at com.thortech.xl.gc.impl.common.DBFacade.validateAttrExistence(Unknown Source)
         at com.thortech.xl.gc.impl.common.DBFacade.getSchema(Unknown Source)
         at com.thortech.xl.gc.impl.prov.DBProvisioningTransportProvider.getSchema(Unknown Source)
         at com.thortech.xl.gc.impl.prov.DBProvisioningTransportProvider.sendData(Unknown Source)
         at com.thortech.xl.gc.runtime.GCAdapterLibrary.executeFunctionality(Unknown Source)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at com.thortech.xl.adapterGlue.ScheduleItemEvents.adpINFO_GTC.GENERICADAPTER(adpINFO_GTC.java:125)
         at com.thortech.xl.adapterGlue.ScheduleItemEvents.adpINFO_GTC.implementation(adpINFO_GTC.java:70)
         at com.thortech.xl.client.events.tcBaseEvent.run(Unknown Source)
         at com.thortech.xl.dataobj.tcDataObj.runEvent(Unknown Source)
         at com.thortech.xl.dataobj.tcScheduleItem.runMilestoneEvent(Unknown Source)
         at com.thortech.xl.dataobj.tcScheduleItem.eventPostInsert(Unknown Source)
         at com.thortech.xl.dataobj.tcDataObj.insert(Unknown Source)
         at com.thortech.xl.dataobj.tcDataObj.save(Unknown Source)
         at com.thortech.xl.ejb.beansimpl.tcProvisioningOperationsBean.retryTasks(Unknown Source)
         at com.thortech.xl.ejb.beans.tcProvisioningOperationsSession.retryTasks(Unknown Source)
         at com.thortech.xl.ejb.beans.tcProvisioningOperations_b03yxm_EOImpl.retryTasks(tcProvisioningOperations_b03yxm_EOImpl.java:2719)
         at Thor.API.Operations.tcProvisioningOperationsClient.retryTasks(Unknown Source)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at Thor.API.Base.SecurityInvocationHandler$1.run(Unknown Source)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
         at weblogic.security.Security.runAs(Security.java:41)
         at Thor.API.Security.LoginHandler.weblogicLoginSession.runAs(Unknown Source)
         at Thor.API.Base.SecurityInvocationHandler.invoke(Unknown Source)
         at $Proxy93.retryTasks(Unknown Source)
         at com.thortech.xl.webclient.actions.ResourceProfileProvisioningTasksAction.retryTasks(Unknown Source)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at org.apache.struts.actions.DispatchAction.dispatchMethod(DispatchAction.java:280)
         at com.thortech.xl.webclient.actions.tcLookupDispatchAction.execute(Unknown Source)
         at com.thortech.xl.webclient.actions.tcActionBase.execute(Unknown Source)
         at com.thortech.xl.webclient.actions.tcAction.execute(Unknown Source)
         at org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:484)
         at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:274)
         at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1482)
         at org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:525)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:727)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:300)
         at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at com.thortech.xl.webclient.security.CSRFFilter.doFilter(Unknown Source)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at com.thortech.xl.webclient.security.SecurityFilter.doFilter(Unknown Source)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.doIt(WebAppServletContext.java:3684)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3650)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
         at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2268)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2174)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1446)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)

    What I usually do in situations like this is that I connect to the database using a sql client and the same connection information as I specified to OIM and see if the attribute is present.
    Perhaps you got the wrong db name? Or schema name?
    Everything looks good so most probably there simply is some little typo somewhere.
    Hope this helps
    /Martin

  • Issue in installation oracle 11g database gateway

    Installation error logs:
    INFO: make: *** [/u01/oracle/product/oracle11.2/rdbms/lib/dg4msql] Error 1
    INFO: End output from spawned process.
    INFO: ----------------------------------
    INFO: Exception thrown from action: make
    Exception Name: MakefileException
    Exception String: Error in invoking target 'idg4msql' of makefile '/u01/oracle/product/oracle11.2/rdbms/lib/ins_rdbms.mk'. ~
    Exception Severity: 1
    Installation Environment:
    Oracle info: Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production
    Linux info:
    LSB Version:    :core-4.0-amd64:core-4.0-noarch:graphics-4.0-amd64:graphics-4.0-noarch:printing-4.0-amd64:printing-4.0-noarch
    Distributor ID: RedHatEnterpriseServer
    Description:    Red Hat Enterprise Linux Server release 5.0 (Santiago)
    Release:        5.0
    Codename:       Santiago
    Oracle installed on 64-bit Linux, database gateway needs to be installed on Linux. Gateway select 'Oracle Database Gateway for Microsoft SQL Server'.
    Above error prompted during installation, online did not find the exact solution, please help.
    Similar problems:
    http://www.itpub.net/forum.php?mod=viewthread&tid=1615113

    Hello, check if your gateway software that you is installing is 64bits, I think you have gateway software 32 bits.
    If you are sure that you have Gateway software 64 bits, check if the next RPM were installed:
    libstdc++-devel-3.4.3-22.1
    glibc-devel-2.5-58
    libaio-devel-0.3.106

  • Fatal errors while installing oracle 10 r2 in RHL AS 4 update 5

    hi
    i am trying to install oracle 10 r2 in red hat linux AS 4 update 5.
    getting these errors while installing....
    1. Error in invoking target 'install' of make file 'u01app/oracle/product/10.2.0/db_1/ctx/lib/ins_ctx.mx
    See '/u01/app/oracle/oraInventory/logs/installActions2006-07-24_04-50-34PM.log' for details.
    2. Error in invoking target 'install' of make file 'u01app/oracle/product/10.2.0/db_1/sysman/lib/ins_sysman.mk
    See '/u01/app/oracle/oraInventory/logs/installActions2006-07-24_04-50-34PM.log' for details.
    3. Error in invoking target 'install' of make file 'u01app/oracle/product/10.2.0/db_1/rebms/lib/ins_rdbms.mk
    See '/u01/app/oracle/oraInventory/logs/installActions2006-07-24_04-50-34PM.log' for details.
    can anyone give a solution to this issue.

    i had tried both, still the same...
    tried opening the log file...
    45PM/oui/jlib/oneclick.jar:/tmp/OraInstall2008-06-30_08-40-45PM/oui/jlib/xmlparserv2.jar:/tmp/OraInstall2008-06-30_08-40-45PM/oui/jlib/srvm.jar:/tmp/OraInstall2008-06-30_08-40-45PM/oui/jlib/share.jar:/tmp/OraInstall2008-06-30_08-40-45PM/oui/jlib/OraInstallerNet.jar:/tmp/OraInstall2008-06-30_08-40-45PM/oui/jlib/xml.jar:/tmp/OraInstall2008-06-30_08-40-45PM/oui/jlib/orai18n-collation.jar:/tmp/OraInstall2008-06-30_08-40-45PM/oui/jlib/orai18n-mapping.jar:/tmp/OraInstall2008-06-30_08-40-45PM/oui/jlib/emCfg.jar:/tmp/OraInstall2008-06-30_08-40-45PM/oui/jlib/ojmisc.jar:/tmp/OraInstall2008-06-30_08-40-45PM/oui/jlib/InstImages.jar:/tmp/OraInstall2008-06-30_08-40-45PM/oui/jlib/InstHelp.jar:/tmp/OraInstall2008-06-30_08-40-45PM/oui/jlib/InstHelp_de.jar:/tmp/OraInstall2008-06-30_08-40-45PM/oui/jlib/InstHelp_es.jar:/tmp/OraInstall2008-06-30_08-40-45PM/oui/jlib/InstHelp_fr.jar:/tmp/OraInstall2008-06-30_08-40-45PM/oui/jlib/InstHelp_it.jar:/tmp/OraInstall2008-06-30_08-40-45PM/oui/jlib/InstHelp_ja.jar:/tmp/OraInstall2008-06-30_08-40-45PM/oui/jlib/InstHelp_ko.jar:/tmp/OraInstall2008-06-30_08-40-45PM/oui/jlib/InstHelp_pt_BR.jar:/tmp/OraInstall2008-06-30_08-40-45PM/oui/jlib/InstHelp_zh_CN.jar:/tmp/OraInstall2008-06-30_08-40-45PM/oui/jlib/InstHelp_zh_TW.jar:/tmp/OraInstall2008-06-30_08-40-45PM/oui/jlib/oracle_ice.jar:/tmp/OraInstall2008-06-30_08-40-45PM/oui/jlib/help4.jar:/tmp/OraInstall2008-06-30_08-40-45PM/oui/jlib/help4-nls.jar:/tmp/OraInstall2008-06-30_08-40-45PM/oui/jlib/ewt3.jar:/tmp/OraInstall2008-06-30_08-40-45PM/oui/jlib/ewt3-swingaccess.jar:/tmp/OraInstall2008-06-30_08-40-45PM/oui/jlib/ewt3-nls.jar:/tmp/OraInstall2008-06-30_08-40-45PM/oui/jlib/swingaccess.jar:/tmp/OraInstall2008-06-30_08-40-45PM/oui/jlib/classes12.jar::/tmp/OraInstall2008-06-30_08-40-45PM/oui/jlib/OraPrereq.jar:/tmp/OraInstall2008-06-30_08-40-45PM/oui/jlib/jewt4.jar:/tmp/OraInstall2008-06-30_08-40-45PM/oui/jlib/jewt4-nls.jar
    INFO: oracle.sysman.oii.oiic.OiicInstaller
    INFO: UnixGroups="{oinstall,dba,}"
    INFO: -scratchPath
    INFO: /tmp/OraInstall2008-06-30_08-40-45PM
    INFO: -sourceLoc
    INFO: /opt/database/install/../stage/products.xml
    INFO: -sourceType
    INFO: network
    INFO: -timestamp
    INFO: 2008-06-30_08-40-45PM
    INFO: -oneclick
    INFO: Environment Variables:
    INFO:      ORACLE_HOME =
    INFO:      PATH = /opt/database/install:/usr/bin:/usr/ccs/bin:/usr/kerberos/bin:/usr/local/bin:/usr/bin:/bin:/usr/X11R6/bin:/home/oracle/bin
    INFO:      CLASSPATH =
    INFO: Username:oracle
    INFO: This installation is being performed using response file /opt/database/install/response/ee.rsp.
    INFO: This installation is being performed using response file /opt/database/install/response/ee.rsp.
    INFO: Setting variable 'FROM_LOCATION' to '/opt/database/install/../stage/products.xml'. Received the value from the command line.
    INFO: Setting variable 'ORACLE_HOME' to '/home/oracle/oracle/product/10.2.0/db_1'. Received the value from the command line.
    INFO: Setting variable 'COMPONENT_LANGUAGES' to 'en,'. Received the value from response file.
    INFO: Setting variable 'SHOW_WELCOME_PAGE' to 'false'. Received the value from response file.
    INFO: Setting variable 'SHOW_CUSTOM_TREE_PAGE' to 'false'. Received the value from response file.
    INFO: Setting variable 'SHOW_COMPONENT_LOCATIONS_PAGE' to 'false'. Received the value from response file.
    INFO: Setting variable 'SHOW_SUMMARY_PAGE' to 'true'. Received the value from response file.
    INFO: Setting variable 'SHOW_INSTALL_PROGRESS_PAGE' to 'true'. Received the value from response file.
    INFO: Setting variable 'SHOW_REQUIRED_CONFIG_TOOL_PAGE' to 'true'. Received the value from response file.
    INFO: Setting variable 'SHOW_CONFIG_TOOL_PAGE' to 'true'. Received the value from response file.
    INFO: Setting variable 'SHOW_RELEASE_NOTES' to 'true'. Received the value from response file.
    it's just a part of the log file viewed..

  • Installing Oracle Management Agent in 11g database(11.2.0.3)

    Hi,
    Error occurred, While installing the agent in 11g database.
    Error is listed below
    [oracle@grid agent]$./agentDeploy.sh AGENT_BASE_DIR=/ebiz/oracle RESPONSE_FILE= agent.rsp
    AGENT_BASE_DIR=/ebiz/oracle
    Validating the OMS_HOST & EM_UPLOAD_PORT
    Executing command : /ebiz/oracle/core/12.1.0.1.0/jdk/bin/java -classpath /ebiz/o racle/core/12.1.0.1.0/jlib/agentInstaller.jar:/ebiz/oracle/core/12.1.0.1.0/oui/j lib/OraInstaller.jar oracle.sysman.agent.installer.AgentInstaller /ebiz/oracle/c ore/12.1.0.1.0 /tmp/agent /ebiz/oracle -prereq
    Validating oms host & port with url: http://prime.4iapps.com:7801/empbs/genwalle t
    Validating oms host & port with url: https://prime.4iapps.com:7801/empbs/genwall et
    Return status:3
    Unzipping the agentcoreimage.zip to /ebiz/oracle ....
    12.1.0.1.0_PluginsOneoffs_226.zip
    Executing command : /ebiz/oracle/core/12.1.0.1.0/jdk/bin/java -classpath /ebiz/o racle/core/12.1.0.1.0/oui/jlib/OraInstaller.jar:/ebiz/oracle/core/12.1.0.1.0/oui /jlib/xmlparserv2.jar:/ebiz/oracle/core/12.1.0.1.0/oui/jlib/srvm.jar:/ebiz/oracl e/core/12.1.0.1.0/oui/jlib/emCfg.jar:/ebiz/oracle/core/12.1.0.1.0/jlib/agentInst aller.jar:/ebiz/oracle/core/12.1.0.1.0/oui/jlib/share.jar oracle.sysman.agent.in staller.AgentInstaller /ebiz/oracle/core/12.1.0.1.0 /tmp/agent /ebiz/oracle AGEN T_BASE_DIR=/ebiz/oracle AGENT_BASE_DIR=/ebiz/oracle RESPONSE_FILE=agent.rsp
    Executing agent install prereqs...
    Executing command: /ebiz/oracle/core/12.1.0.1.0/oui/bin/runInstaller -ignoreSys rereqs -prereqchecker -silent -ignoreSysPrereqs -waitForCompletion -prereqlogl c /ebiz/oracle/core/12.1.0.1.0/cfgtoollogs/agentDeploy -entryPoint oracle.sysma .top.agent_Complete -detailedExitCodes PREREQ_CONFIG_LOCATION=/ebiz/oracle/core 12.1.0.1.0/prereqs -J-DORACLE_HOSTNAME=grid.4iapps.com -J-DAGENT_BASE_DIR=/ebi /oracle
    Prereq Logs Location:/ebiz/oracle/core/12.1.0.1.0/cfgtoollogs/agentDeploy/prere <timestamp>.log
    Agent install prereqs completed successfully
    Cloning the agent home...
    Executing command: /ebiz/oracle/core/12.1.0.1.0/oui/bin/runInstaller -ignoreSys rereqs -clone -forceClone -silent -waitForCompletion -nowait ORACLE_HOME=/ebiz/ racle/core/12.1.0.1.0 -responseFile agent.rsp AGENT_BASE_DIR=/ebiz/oracle AGEN BASEDIR=/ebiz/oracle RESPONSE_FILE=agent.rsp -noconfig ORACLE_HOME_NAME=agen 12c1 -force
    Clone Action Logs Location:/ebiz/oracle/app/oraInventory/logs/cloneActions<time tamp>.log
    ERROR: Agent Clone Failed
    [oracle@grid agent]$
    Kindly guide me to install agent on 11g database
    Thanks & Regards
    Kesavan G

    Hi,
    I have listed the logfiles details for your reference,
    -scratchPath
    /tmp/OraInstall2013-05-05_11-57-48AM
    -sourceType
    network
    -timestamp
    2013-05-05_11-57-48AM
    -ignoreSysPrereqs
    -clone
    -forceClone
    -silent
    -waitForCompletion
    -nowait
    ORACLE_HOME=/ebiz/oracle/core/12.1.0.1.0
    -responseFile
    agent.rsp
    AGENT_BASE_DIR=/ebiz/oracle
    AGENT_BASE_DIR=/ebiz/oracle
    RESPONSE_FILE=agent.rsp
    -noconfig
    ORACLE_HOME_NAME=agent12c1
    -force
    INFO: Environment Variables:
    INFO: ORACLE_HOME = /ebiz/oracle/core/12.1.0.1.0
    INFO: PATH = /ebiz/oracle/app/oracle/product/11.2.0/dbhome_1/bin:/bin:/usr/lib64/qt-3.3/bin:/usr/kerberos/bin:/usr/local/bin:/bin:/usr/bin
    INFO: CLASSPATH =
    INFO: Username:oracle
    INFO: Install area Control created with access level 1
    INFO: Oracle Universal Installer version is 11.1.0.9.0
    INFO: OUI-10203:The specified response file 'agent.rsp' is not found. Make sure that the response file specified exists and you have read privileges to this file.
    Thanks $ Regards
    Kesavan G

  • Installing oracle db 10.2.0.1 on REHL 5.6 using virtual box

    I can't solve this erratic behavior:
    Scenario: Phisical machine Windows 7 32b, virtual box v 3.2.12
    Virtual machine Oracle Linux 5.6 64b installed without problems (I have installed several machines with p.e. SuSE 10 64b,
    SuSE 11 64b and installed Oracle 10g without problems, Linux Oracle 5.6 with Oracle DB 11 ok)
    Trying to install Oracle 10.2.0.1 (need to be this version) every time I exec runInstaller, it begins, but simply freezes the
    machine. Each time it freezes at different points: sometimes at the first screen, other times I can reach the last screen with
    the install button.
    ¿can someone give any ideas ?
    Thanks

    First attempt
    The oui freezed the virtual machine, in the screen where i was setting the users passwords
    Checking the oraInventory/logs folder, ther are 3 files:
         1) orainstallxxxx.err      is empty
         2) orainstallxxxx.out     is empty
         3) InstallActions.log: as follows (I'll cut several "middle" lines because of the 30000 characters limits in the forums messages)
    INFO: Using paramFile: /opt/install/database/install/oraparam.ini
    INFO: Checking installer requirements...
    INFO: Checking operating system version: must be redhat-3, SuSE-9, redhat-4, redhat-5, UnitedLinux-1.0, asianux-1 or asianux-2
    INFO: Passed
    INFO: All installer requirements met.
    INFO: The number of files bootstrapped for the jre is 619.
    INFO:
    INFO: The number of files bootstrapped for the oui is 94.
    INFO: Execvp of the child jre : the cmdline is /tmp/OraInstall2011-05-24_11-54-43PM/jre/1.4.2/bin/java, and the argv is
    INFO: /tmp/OraInstall2011-05-24_11-54-43PM/jre/1.4.2/bin/java
    INFO: -Doracle.installer.library_loc=/tmp/OraInstall2011-05-24_11-54-43PM/oui/lib/linux
    INFO: -Doracle.installer.oui_loc=/tmp/OraInstall2011-05-24_11-54-43PM/oui
    INFO: -Doracle.installer.bootstrap=TRUE
    INFO: -Doracle.installer.startup_location=/opt/install/database/install
    INFO: -Doracle.installer.jre_loc=/tmp/OraInstall2011-05-24_11-54-43PM/jre/1.4.2
    INFO: -Doracle.installer.nlsEnabled="TRUE"
    INFO: -Doracle.installer.prereqConfigLoc=/tmp/OraInstall2011-05-24_11-54-43PM/prereq
    INFO: -Doracle.installer.unixVersion=2.6.32-100.26.2.el5
    INFO: -mx150m
    INFO: -cp
    INFO: /tmp/OraInstall2011-05-24_11-54-43PM:/tmp/OraInstall2011-05-24_11-54-43PM/oui/jlib/OraInstaller.jar:/tmp/OraInstall2011-05-24_11-54-43PM/oui/jlib/oneclick.jar:/tmp/OraInstall2011-05-24_11-54-43PM/oui/jlib/xmlparserv2.jar:/tmp/OraInstall2011-05-24_11-54-43PM/oui/jlib/srvm.jar:/tmp/OraInstall2011-05-24_11-54-43PM/oui/jlib/share.jar:/tmp/OraInstall2011-05-24_11-54-43PM/oui/jlib/OraInstallerNet.jar:/tmp/OraInstall2011-05-24_11-54-43PM/oui/jlib/xml.jar:/tmp/OraInstall2011-05-24_11-54-43PM/oui/jlib/orai18n-collation.jar:/tmp/OraInstall2011-05-24_11-54-43PM/oui/jlib/orai18n-mapping.jar:/tmp/OraInstall2011-05-24_11-54-43PM/oui/jlib/emCfg.jar:/tmp/OraInstall2011-05-24_11-54-43PM/oui/jlib/ojmisc.jar:/tmp/OraInstall2011-05-24_11-54-43PM/oui/jlib/InstImages.jar:/tmp/OraInstall2011-05-24_11-54-43PM/oui/jlib/InstHelp.jar:/tmp/OraInstall2011-05-24_11-54-43PM/oui/jlib/InstHelp_de.jar:/tmp/OraInstall2011-05-24_11-54-43PM/oui/jlib/InstHelp_es.jar:/tmp/OraInstall2011-05-24_11-54-43PM/oui/jlib/InstHelp_fr.jar:/tmp/OraInstall2011-05-24_11-54-43PM/oui/jlib/InstHelp_it.jar:/tmp/OraInstall2011-05-24_11-54-43PM/oui/jlib/InstHelp_ja.jar:/tmp/OraInstall2011-05-24_11-54-43PM/oui/jlib/InstHelp_ko.jar:/tmp/OraInstall2011-05-24_11-54-43PM/oui/jlib/InstHelp_pt_BR.jar:/tmp/OraInstall2011-05-24_11-54-43PM/oui/jlib/InstHelp_zh_CN.jar:/tmp/OraInstall2011-05-24_11-54-43PM/oui/jlib/InstHelp_zh_TW.jar:/tmp/OraInstall2011-05-24_11-54-43PM/oui/jlib/oracle_ice.jar:/tmp/OraInstall2011-05-24_11-54-43PM/oui/jlib/help4.jar:/tmp/OraInstall2011-05-24_11-54-43PM/oui/jlib/help4-nls.jar:/tmp/OraInstall2011-05-24_11-54-43PM/oui/jlib/ewt3.jar:/tmp/OraInstall2011-05-24_11-54-43PM/oui/jlib/ewt3-swingaccess.jar:/tmp/OraInstall2011-05-24_11-54-43PM/oui/jlib/ewt3-nls.jar:/tmp/OraInstall2011-05-24_11-54-43PM/oui/jlib/swingaccess.jar:/tmp/OraInstall2011-05-24_11-54-43PM/oui/jlib/classes12.jar::/tmp/OraInstall2011-05-24_11-54-43PM/oui/jlib/OraPrereq.jar:/tmp/OraInstall2011-05-24_11-54-43PM/oui/jlib/jewt4.jar:/tmp/OraInstall2011-05-24_11-54-43PM/oui/jlib/jewt4-nls.jar
    INFO: oracle.sysman.oio.oioc.OiocOneClickInstaller
    INFO: /tmp/OraInstall2011-05-24_11-54-43PM/jre/1.4.2/bin/java
    INFO: -Doracle.installer.library_loc=/tmp/OraInstall2011-05-24_11-54-43PM/oui/lib/linux
    INFO: -Doracle.installer.oui_loc=/tmp/OraInstall2011-05-24_11-54-43PM/oui
    INFO: -Doracle.installer.bootstrap=TRUE
    INFO: -Doracle.installer.startup_location=/opt/install/database/install
    INFO: -Doracle.installer.jre_loc=/tmp/OraInstall2011-05-24_11-54-43PM/jre/1.4.2
    INFO: -Doracle.installer.nlsEnabled="TRUE"
    INFO: -Doracle.installer.prereqConfigLoc=/tmp/OraInstall2011-05-24_11-54-43PM/prereq
    INFO: -Doracle.installer.unixVersion=2.6.32-100.26.2.el5
    INFO: -mx150m
    INFO: -cp
    INFO: /tmp/OraInstall2011-05-24_11-54-43PM:/tmp/OraInstall2011-05-24_11-54-43PM/oui/jlib/OraInstaller.jar:/tmp/OraInstall2011-05-24_11-54-43PM/oui/jlib/oneclick.jar:/tmp/OraInstall2011-05-24_11-54-43PM/oui/jlib/xmlparserv2.jar:/tmp/OraInstall2011-05-24_11-54-43PM/oui/jlib/srvm.jar:/tmp/OraInstall2011-05-24_11-54-43PM/oui/jlib/share.jar:/tmp/OraInstall2011-05-24_11-54-43PM/oui/jlib/OraInstallerNet.jar:/tmp/OraInstall2011-05-24_11-54-43PM/oui/jlib/xml.jar:/tmp/OraInstall2011-05-24_11-54-43PM/oui/jlib/orai18n-collation.jar:/tmp/OraInstall2011-05-24_11-54-43PM/oui/jlib/orai18n-mapping.jar:/tmp/OraInstall2011-05-24_11-54-43PM/oui/jlib/emCfg.jar:/tmp/OraInstall2011-05-24_11-54-43PM/oui/jlib/ojmisc.jar:/tmp/OraInstall2011-05-24_11-54-43PM/oui/jlib/InstImages.jar:/tmp/OraInstall2011-05-24_11-54-43PM/oui/jlib/InstHelp.jar:/tmp/OraInstall2011-05-24_11-54-43PM/oui/jlib/InstHelp_de.jar:/tmp/OraInstall2011-05-24_11-54-43PM/oui/jlib/InstHelp_es.jar:/tmp/OraInstall2011-05-24_11-54-43PM/oui/jlib/InstHelp_fr.jar:/tmp/OraInstall2011-05-24_11-54-43PM/oui/jlib/InstHelp_it.jar:/tmp/OraInstall2011-05-24_11-54-43PM/oui/jlib/InstHelp_ja.jar:/tmp/OraInstall2011-05-24_11-54-43PM/oui/jlib/InstHelp_ko.jar:/tmp/OraInstall2011-05-24_11-54-43PM/oui/jlib/InstHelp_pt_BR.jar:/tmp/OraInstall2011-05-24_11-54-43PM/oui/jlib/InstHelp_zh_CN.jar:/tmp/OraInstall2011-05-24_11-54-43PM/oui/jlib/InstHelp_zh_TW.jar:/tmp/OraInstall2011-05-24_11-54-43PM/oui/jlib/oracle_ice.jar:/tmp/OraInstall2011-05-24_11-54-43PM/oui/jlib/help4.jar:/tmp/OraInstall2011-05-24_11-54-43PM/oui/jlib/help4-nls.jar:/tmp/OraInstall2011-05-24_11-54-43PM/oui/jlib/ewt3.jar:/tmp/OraInstall2011-05-24_11-54-43PM/oui/jlib/ewt3-swingaccess.jar:/tmp/OraInstall2011-05-24_11-54-43PM/oui/jlib/ewt3-nls.jar:/tmp/OraInstall2011-05-24_11-54-43PM/oui/jlib/swingaccess.jar:/tmp/OraInstall2011-05-24_11-54-43PM/oui/jlib/classes12.jar::/tmp/OraInstall2011-05-24_11-54-43PM/oui/jlib/OraPrereq.jar:/tmp/OraInstall2011-05-24_11-54-43PM/oui/jlib/jewt4.jar:/tmp/OraInstall2011-05-24_11-54-43PM/oui/jlib/jewt4-nls.jar
    INFO: oracle.sysman.oii.oiic.OiicInstaller
    INFO: UnixGroups="{oinstall,dba,}"
    INFO: -scratchPath
    INFO: /tmp/OraInstall2011-05-24_11-54-43PM
    INFO: -sourceLoc
    INFO: /opt/install/database/install/../stage/products.xml
    INFO: -sourceType
    INFO: network
    INFO: -timestamp
    INFO: 2011-05-24_11-54-43PM
    INFO: -oneclick
    INFO: Environment Variables:
    INFO:      ORACLE_HOME =
    INFO:      PATH = /opt/install/database/install:/usr/bin:/usr/ccs/bin:/usr/kerberos/bin:/usr/local/bin:/usr/bin:/bin:/usr/X11R6/bin:/home/oracle/bin
    INFO:      CLASSPATH =
    INFO: Username:oracle
    INFO: Setting variable 'PREREQ_CONFIG_LOCATION' to '/tmp/OraInstall2011-05-24_11-54-43PM/prereq'. Received the value from variable association.
    INFO: Reader/Writer 'oracle.sysman.oii.oiic.OiicGlobalContextXMLReaderWriter' was created.
    INFO: Retrieving the global context: OiicGlobalContext.getGlobalContext()
    INFO:
    *** Welcome Page***
    INFO:
    *** Specify Inventory directory and credentials Page***
    INFO: Setting the 'InventoryLocation ( INVENTORY_LOCATION )' property to '/opt/oracle/oraInventory'. Received the value from the UI page.
    INFO: Setting the 'UnixInstallGroup ( UNIX_GROUP_NAME )' property to 'oinstall'. Received the value from the UI page.
    INFO: Initializing install inventory
    INFO: Setting up install inventory
    INFO: Unable to read the list of homes from the inventory.
    INFO: Oracle Universal Installer version is 10.2.0.1.0
    INFO:
    *** Specify Source Location Page***
    INFO: Initializing OUI Shiphome access setup
    INFO: DefaultifyLangiages : Value of oracle.installer.defaultifyLanguages : false
    INFO: fetch the file: /opt/install/database/stage/shiphomeinfo.properties
    INFO: Performing operation for OUI Shiphome access setup
    INFO:
    *** Select a Product to Install Page***
    INFO: Setting the 'TopLevelComp ( ToplevelComp )' property to 'oracle.server, 10.2.0.1.0, >0.0.0.0.0, [ 46 ][OH:2]'. Received the value from the default settings.
    INFO:
    *** Select Installation Type Page***
    INFO: Setting the 'InstallType ( DEP_MODE )' property to 'EE'. Received the value from the UI page.
    INFO: Setting the 'TopLevelInstallType ( TLDepModes )' property to 'EE,'. Received the value from the UI page.
    INFO: The selected install type is "Enterprise Edition".
    INFO:
    *** Specify Home Details Page***
    INFO: Setting the 'OracleHome ( ORACLE_HOME )' property to '/opt/oracle/oracle/product/10.2.0/db_1'. Received the value from the UI page.
    INFO: Setting the 'OracleHomeName ( ORACLE_HOME_NAME )' property to 'OraDb10g_home1'. Received the value from the UI page.
    INFO: Initializing OUI Oracle Home access setup
    INFO: Setting variable 'ORACLE_HOME' to '/opt/oracle/oracle/product/10.2.0/db_1'. Received the value from the UI page.
    INFO: Loading shiphomepropertiesfrom /tmp/OraInstall2011-05-24_11-54-43PM/shiphomeproperties.xml
    INFO: DefaultifyLangiages : Value of oracle.installer.defaultifyLanguages : false
    INFO: Setting the PROD_HOME variable of 'oracle.server_10.2.0.1.0' to ''. Received the value from the variable calculation.
    INFO: oracle.server Product Location: Empty path specified.
    INFO: This is not a cluster system.
    variable = oracle.sysman.server.EMConfigureOption
    value = LOCAL
    INFO: Query Returned: true
    INFO: Setting variable 's_recoveryAreaDestination' to ' -recoveryAreaDestination NO_VALUE '. Received the value from a code block.
    INFO:
    *** Specify Database Schema Passwords Page***

  • Oracle 8i/Developer Home - Help?!

    Have been medically laid up for about a year and want to get back to Oracle database learning on Personal Oracle. I am trying to install Oracle 8i PE and Developer 6i (production) on a new computer driven by a 2.0 ghz P4 vice 650mhz P3. My install recall is foggy. I can remember a a copuple of issues from my first install.
    1. As I recall, Developer has to be installed FIRST to occupy Default_Home. But I don't remember whether Oracle installs to the SAME home or whether it must have an entirely separate home in another directory. I do seem to recall that Oracle's default installation choice seeks out the Default_Home file wherever situated and wants to install there. So QUESTION 1: Do I install Developer using Oracle\ORAINST\DEFAULT_HOME as the home and THEN install Oracle and let it the same home? A friend told me that his computer has Oracle PE it has one directory for Oracle database 8i (ORANTDB)and one directory for Developer (ORANT) [he had it installed professionally so isn't any help here] but as far as he can tell only ONE home at ORANT\ORAINST\DEFAULT_HOME. He opened the file and it seemed to contain both Developer info and Oracle info.
    2. I also don't recall how to establish the connection between Developer 6i and the database, although I do remember some relation to a tnsnames.ora file and the need to do some things there. Reading thru the traffic here, it seems that some say it's an automatic connection and others indicate not. So, QUESTION 2 is: Do I need to manually set up the connection between Developer and the database - and if so how?
    Hate to bother but in effect I am back to primer status, so installation help with seemingly silly questions would be appreciated.
    Thank you.
    Mitch
    [email protected]

    Have been medically laid up for about a year and want to get back to Oracle database learning on Personal Oracle. I am trying to install Oracle 8i PE and Developer 6i (production) on a new computer driven by a 2.0 ghz P4 vice 650mhz P3. My install recall is foggy. I can remember a a copuple of issues from my first install. Welcome back. Though working a lot with Oracle products only makes things foggier ;-)
    1. As I recall, Developer has to be installed FIRST to occupy Default_Home. But I don't remember whether Oracle installs to the SAME home or whether it must have an entirely separate home in another directory. I do I am not at all familiar with PE, but generally you should always install the dumbest/oldest Oracle product first. I think Dev6i installs in/with 8.0.5 Client software Home. Also 8i onwards each home has separate install directory.
    2.
    If connecting locally i.e. empty connect string doesn't help. Then you simply add an alias for it in tnsnames.ora (8.0.5 network/admin dir). Open the existing tnsnames, it should have some example entries.
    Hth,
    Fredrik

  • Upgrade oracle 10gR2(10.2.0.1) xe to oracle 10gR2(10.2.0.3) in Linux 4

    Hello everyone,
    I am using Patchset "p5337014 10203 LINUX.ZIP" to upgrade the oracle 10gR2(10.2.0.1)express edition into oracle10gR2(10.2.0.3).In Installation i got the followoing error:
    OUI-10091: There are no patches that neeed to be applied from the patchset oracle Database 10gR2 patchset 2 10.2.0.3.0
    Please help me .
    Thanks in advance!

    hello shrinivas,
    I have already done all the things that are mentioned in links.
    now i am sending u my log file..
    please see it and help me..
    INFO: Using paramFile: /usr/lib/oracle/xe/Disk1/install/oraparam.ini
    INFO:
    INFO:
    INFO: Checking installer requirements...
    INFO:
    INFO: Checking operating system version: must be redhat-3, SuSE-9, SuSE-10, redhat-4, UnitedLinux-1.0, asianux-1 or asianux-2
    INFO: Passed
    INFO:
    INFO:
    INFO: All installer requirements met.
    INFO:
    INFO:
    INFO: The commandline for unzip:
    INFO: /usr/lib/oracle/xe/Disk1/install/unzip -qqqo ../stage/Components/oracle.swd.jre/1.4.2.8.0/1/DataFiles/\*.jar -d /tmp/OraInstall2008-08-05_12-06-51PM
    INFO: The commandline for unzip:
    INFO: /usr/lib/oracle/xe/Disk1/install/unzip -qqqo ../stage/Components/oracle.swd.oui/10.2.0.3.0/1/DataFiles/\*.jar -d /tmp/OraInstall2008-08-05_12-06-51PM
    INFO: The commandline for unzip:
    INFO: /usr/lib/oracle/xe/Disk1/install/unzip -qqqo ../stage/Components/oracle.swd.oui.core/10.2.0.3.0/1/DataFiles/\*.jar -d /tmp/OraInstall2008-08-05_12-06-51PM
    INFO:
    INFO: The number of files bootstrapped for the jre is 590.
    INFO:
    INFO: The number of files bootstrapped for the oui is 65.
    INFO: Execvp of the child jre : the cmdline is /tmp/OraInstall2008-08-05_12-06-51PM/jre/1.4.2/bin/java, and the argv is
    INFO: /tmp/OraInstall2008-08-05_12-06-51PM/jre/1.4.2/bin/java
    INFO: -Doracle.installer.library_loc=/tmp/OraInstall2008-08-05_12-06-51PM/oui/lib/linux
    INFO: -Doracle.installer.oui_loc=/tmp/OraInstall2008-08-05_12-06-51PM/oui
    INFO: -Doracle.installer.bootstrap=TRUE
    INFO: -Doracle.installer.startup_location=/usr/lib/oracle/xe/Disk1/install
    INFO: -Doracle.installer.jre_loc=/tmp/OraInstall2008-08-05_12-06-51PM/jre/1.4.2
    INFO: -Doracle.installer.nlsEnabled="TRUE"
    INFO: -Doracle.installer.prereqConfigLoc=/tmp/OraInstall2008-08-05_12-06-51PM/prereq
    INFO: -Doracle.installer.unixVersion=2.6.9-55.ELsmp
    INFO: -mx150m
    INFO: -cp
    INFO: /tmp/OraInstall2008-08-05_12-06-51PM:/tmp/OraInstall2008-08-05_12-06-51PM/oui/jlib/OraInstaller.jar:/tmp/OraInstall2008-08-05_12-06-51PM/oui/jlib/oneclick.jar:/tmp/OraInstall2008-08-05_12-06-51PM/oui/jlib/xmlparserv2.jar:/tmp/OraInstall2008-08-05_12-06-51PM/oui/jlib/srvm.jar:/tmp/OraInstall2008-08-05_12-06-51PM/oui/jlib/share.jar:/tmp/OraInstall2008-08-05_12-06-51PM/oui/jlib/OraInstallerNet.jar:/tmp/OraInstall2008-08-05_12-06-51PM/oui/jlib/xml.jar:/tmp/OraInstall2008-08-05_12-06-51PM/oui/jlib/orai18n-collation.jar:/tmp/OraInstall2008-08-05_12-06-51PM/oui/jlib/orai18n-mapping.jar:/tmp/OraInstall2008-08-05_12-06-51PM/oui/jlib/emCfg.jar:/tmp/OraInstall2008-08-05_12-06-51PM/oui/jlib/ojmisc.jar:/tmp/OraInstall2008-08-05_12-06-51PM/oui/jlib/InstImages.jar:/tmp/OraInstall2008-08-05_12-06-51PM/oui/jlib/InstHelp.jar:/tmp/OraInstall2008-08-05_12-06-51PM/oui/jlib/InstHelp_de.jar:/tmp/OraInstall2008-08-05_12-06-51PM/oui/jlib/InstHelp_es.jar:/tmp/OraInstall2008-08-05_12-06-51PM/oui/jlib/InstHelp_fr.jar:/tmp/OraInstall2008-08-05_12-06-51PM/oui/jlib/InstHelp_it.jar:/tmp/OraInstall2008-08-05_12-06-51PM/oui/jlib/InstHelp_ja.jar:/tmp/OraInstall2008-08-05_12-06-51PM/oui/jlib/InstHelp_ko.jar:/tmp/OraInstall2008-08-05_12-06-51PM/oui/jlib/InstHelp_pt_BR.jar:/tmp/OraInstall2008-08-05_12-06-51PM/oui/jlib/InstHelp_zh_CN.jar:/tmp/OraInstall2008-08-05_12-06-51PM/oui/jlib/InstHelp_zh_TW.jar:/tmp/OraInstall2008-08-05_12-06-51PM/oui/jlib/oracle_ice.jar:/tmp/OraInstall2008-08-05_12-06-51PM/oui/jlib/help4.jar:/tmp/OraInstall2008-08-05_12-06-51PM/oui/jlib/help4-nls.jar:/tmp/OraInstall2008-08-05_12-06-51PM/oui/jlib/ewt3.jar:/tmp/OraInstall2008-08-05_12-06-51PM/oui/jlib/ewt3-swingaccess.jar:/tmp/OraInstall2008-08-05_12-06-51PM/oui/jlib/ewt3-nls.jar:/tmp/OraInstall2008-08-05_12-06-51PM/oui/jlib/swingaccess.jar:/tmp/OraInstall2008-08-05_12-06-51PM/oui/jlib/classes12.jar::/tmp/OraInstall2008-08-05_12-06-51PM/oui/jlib/OraPrereq.jar:/tmp/OraInstall2008-08-05_12-06-51PM/oui/jlib/jewt4.jar:/tmp/OraInstall2008-08-05_12-06-51PM/oui/jlib/jewt4-nls.jar
    INFO: oracle.sysman.oii.oiic.OiicInstaller
    INFO: -scratchPath
    INFO: /tmp/OraInstall2008-08-05_12-06-51PM
    INFO: -sourceLoc
    INFO: /usr/lib/oracle/xe/Disk1/install/../stage/products.xml
    INFO: -sourceType
    INFO: network
    INFO: -timestamp
    INFO: 2008-08-05_12-06-51PM
    INFO: Environment Variables:
    INFO:      ORACLE_HOME =
    INFO:      PATH = /usr/bin:/usr/ccs/bin:/usr/kerberos/bin:/usr/local/bin:/usr/bin:/bin:/usr/X11R6/bin:/usr/lib/oracle/xe/Disk1/install
    INFO:      CLASSPATH =
    INFO: Username:oracle
    INFO: Setting variable 'PREREQ_CONFIG_LOCATION' to '/tmp/OraInstall2008-08-05_12-06-51PM/prereq'. Received the value from variable association.
    INFO: Reader/Writer 'oracle.sysman.oii.oiic.OiicGlobalContextXMLReaderWriter' was created.
    INFO: Retrieving the global context: OiicGlobalContext.getGlobalContext()
    INFO:
    *** Welcome Page***
    INFO:
    *** Specify Inventory directory and credentials Page***
    INFO: Setting the 'InventoryLocation ( INVENTORY_LOCATION )' property to '/usr/lib/oracle/xe/oraInventory'. Received the value from the UI page.
    INFO: Setting the 'UnixInstallGroup ( UNIX_GROUP_NAME )' property to 'dba'. Received the value from the UI page.
    INFO: Initializing install inventory
    INFO: Setting up install inventory
    INFO: Unable to read the list of homes from the inventory.
    INFO: Oracle Universal Installer version is 10.2.0.3.0
    INFO:
    *** Specify Source Location Page***
    INFO: Initializing OUI Shiphome access setup
    INFO: DefaultifyLangiages : Value of oracle.installer.defaultifyLanguages : false
    INFO: fetch the file: /usr/lib/oracle/xe/Disk1/stage/shiphomeinfo.properties
    INFO: Performing operation for OUI Shiphome access setup
    INFO:
    *** Select a Product to Install Page***
    INFO: Setting the 'TopLevelComp ( ToplevelComp )' property to 'oracle.patchset.db, 10.2.0.3.0, >10.2.0.3.0, [ ][OH:2]'. Received the value from the default settings.
    INFO:
    *** Select Installation Type Page***
    INFO: Setting the 'InstallType ( DEP_MODE )' property to 'Custom'. Received the value from the default settings.
    INFO: Setting the 'TopLevelInstallType ( TLDepModes )' property to 'Custom'. Received the value from the default settings.
    INFO: install properties filename: /tmp/OraInstall2008-08-05_12-06-51PM/oracle.patchset.db_Custom.properties
    INFO:
    *** Specify Home Details Page***
    INFO: Setting the 'OracleHome ( ORACLE_HOME )' property to '/usr/lib/oracle/xe/oracle/product/10.2.0/db_1'. Received the value from the UI page.
    INFO: Setting the 'OracleHomeName ( ORACLE_HOME_NAME )' property to 'OraDb10g_home1'. Received the value from the UI page.
    INFO: Initializing OUI Oracle Home access setup
    INFO: Setting variable 'ORACLE_HOME' to '/usr/lib/oracle/xe/oracle/product/10.2.0/db_1'. Received the value from the UI page.
    INFO: Loading shiphomepropertiesfrom /tmp/OraInstall2008-08-05_12-06-51PM/shiphomeproperties.xml
    INFO: DefaultifyLangiages : Value of oracle.installer.defaultifyLanguages : false
    INFO: Setting the PROD_HOME variable of 'oracle.swd.oui_10.2.0.3.0' to '/usr/lib/oracle/xe/oracle/product/10.2.0/db_1/oui'. Received the value from the variable calculation.
    INFO: Setting the PROD_HOME variable of 'oracle.swd.oui.core_10.2.0.3.0' to '/usr/lib/oracle/xe/oracle/product/10.2.0/db_1/oui'. Received the value from the variable calculation.
    INFO: Setting the PROD_HOME variable of 'oracle.swd.opatch_10.2.0.3.0' to '/usr/lib/oracle/xe/oracle/product/10.2.0/db_1/OPatch'. Received the value from the variable calculation.
    INFO: Setting the PROD_HOME variable of 'oracle.swd.jre_1.4.2.8.0' to '/usr/lib/oracle/xe/oracle/product/10.2.0/db_1/jre/1.4.2'. Received the value from the variable calculation.
    INFO: Performing operation for OUI Oracle Home access setup
    INFO: Unable to read /usr/lib/oracle/xe/oracle/product/10.2.0/db_1/inventory/ContentsXML/comps.xml. Some inventory information may be lost.
    INFO: OUI-10070:The patch oracle.ons 10.2.0.3.0, which is part of patch set Oracle Database 10g Release 2 Patch Set 2 10.2.0.3.0 , has not been selected for installation.
    INFO: OUI-10070:The patch oracle.assistants.server 10.2.0.3.0, which is part of patch set Oracle Database 10g Release 2 Patch Set 2 10.2.0.3.0 , has not been selected for installation.
    INFO: OUI-10070:The patch oracle.client 10.2.0.3.0, which is part of patch set Oracle Database 10g Release 2 Patch Set 2 10.2.0.3.0 , has not been selected for installation.
    INFO: OUI-10070:The patch oracle.companionCD.db 10.2.0.3.0, which is part of patch set Oracle Database 10g Release 2 Patch Set 2 10.2.0.3.0 , has not been selected for installation.
    INFO: OUI-10070:The patch oracle.companionCD.midtier 10.2.0.3.0, which is part of patch set Oracle Database 10g Release 2 Patch Set 2 10.2.0.3.0 , has not been selected for installation.
    INFO: OUI-10070:The patch oracle.crs 10.2.0.3.0, which is part of patch set Oracle Database 10g Release 2 Patch Set 2 10.2.0.3.0 , has not been selected for installation.
    INFO: OUI-10070:The patch oracle.csmig 10.2.0.3.0, which is part of patch set Oracle Database 10g Release 2 Patch Set 2 10.2.0.3.0 , has not been selected for installation.
    INFO: OUI-10070:The patch oracle.rdbms 10.2.0.3.0, which is part of patch set Oracle Database 10g Release 2 Patch Set 2 10.2.0.3.0 , has not been selected for installation.
    INFO: OUI-10070:The patch oracle.dbjava.dev 10.2.0.3.0, which is part of patch set Oracle Database 10g Release 2 Patch Set 2 10.2.0.3.0 , has not been selected for installation.
    INFO: OUI-10070:The patch oracle.dbjava.ic 10.2.0.3.0, which is part of patch set Oracle Database 10g Release 2 Patch Set 2 10.2.0.3.0 , has not been selected for installation.
    INFO: OUI-10070:The patch oracle.server 10.2.0.3.0, which is part of patch set Oracle Database 10g Release 2 Patch Set 2 10.2.0.3.0 , has not been selected for installation.
    INFO: OUI-10070:The patch oracle.sysman.console.emcp 10.2.0.3.0, which is part of patch set Oracle Database 10g Release 2 Patch Set 2 10.2.0.3.0 , has not been selected for installation.
    INFO: OUI-10070:The patch oracle.sqlplus 10.2.0.3.0, which is part of patch set Oracle Database 10g Release 2 Patch Set 2 10.2.0.3.0 , has not been selected for installation.
    INFO: OUI-10070:The patch oracle.has.common 10.2.0.3.0, which is part of patch set Oracle Database 10g Release 2 Patch Set 2 10.2.0.3.0 , has not been selected for installation.
    INFO: OUI-10070:The patch oracle.has.crs 10.2.0.3.0, which is part of patch set Oracle Database 10g Release 2 Patch Set 2 10.2.0.3.0 , has not been selected for installation.
    INFO: OUI-10070:The patch oracle.has.db 10.2.0.3.0, which is part of patch set Oracle Database 10g Release 2 Patch Set 2 10.2.0.3.0 , has not been selected for installation.
    INFO: OUI-10070:The patch oracle.sqlplus.ic 10.2.0.3.0, which is part of patch set Oracle Database 10g Release 2 Patch Set 2 10.2.0.3.0 , has not been selected for installation.
    INFO: OUI-10070:The patch oracle.htmldb 10.2.0.3.0, which is part of patch set Oracle Database 10g Release 2 Patch Set 2 10.2.0.3.0 , has not been selected for installation.
    INFO: OUI-10070:The patch oracle.isearch.client 10.2.0.3.0, which is part of patch set Oracle Database 10g Release 2 Patch Set 2 10.2.0.3.0 , has not been selected for installation.
    INFO: OUI-10070:The patch oracle.isearch.is_common 10.2.0.3.0, which is part of patch set Oracle Database 10g Release 2 Patch Set 2 10.2.0.3.0 , has not been selected for installation.
    INFO: OUI-10070:The patch oracle.isearch.server 10.2.0.3.0, which is part of patch set Oracle Database 10g Release 2 Patch Set 2 10.2.0.3.0 , has not been selected for installation.
    INFO: OUI-10070:The patch oracle.javavm.client 10.2.0.3.0, which is part of patch set Oracle Database 10g Release 2 Patch Set 2 10.2.0.3.0 , has not been selected for installation.
    INFO: OUI-10070:The patch oracle.javavm.companion 10.2.0.3.0, which is part of patch set Oracle Database 10g Release 2 Patch Set 2 10.2.0.3.0 , has not been selected for installation.
    INFO: OUI-10070:The patch oracle.javavm.server 10.2.0.3.0, which is part of patch set Oracle Database 10g Release 2 Patch Set 2 10.2.0.3.0 , has not been selected for installation.
    INFO: OUI-10070:The patch oracle.ldap.client 10.2.0.3.0, which is part of patch set Oracle Database 10g Release 2 Patch Set 2 10.2.0.3.0 , has not been selected for installation.
    INFO: OUI-10070:The patch oracle.sqlplus.isqlplus 10.2.0.3.0, which is part of patch set Oracle Database 10g Release 2 Patch Set 2 10.2.0.3.0 , has not been selected for installation.
    INFO: OUI-10070:The patch oracle.network.aso 10.2.0.3.0, which is part of patch set Oracle Database 10g Release 2 Patch Set 2 10.2.0.3.0 , has not been selected for installation.
    INFO: OUI-10070:The patch oracle.network.client 10.2.0.3.0, which is part of patch set Oracle Database 10g Release 2 Patch Set 2 10.2.0.3.0 , has not been selected for installation.
    INFO: OUI-10070:The patch oracle.network.cman 10.2.0.3.0, which is part of patch set Oracle Database 10g Release 2 Patch Set 2 10.2.0.3.0 , has not been selected for installation.
    INFO: OUI-10070:The patch oracle.network.listener 10.2.0.3.0, which is part of patch set Oracle Database 10g Release 2 Patch Set 2 10.2.0.3.0 , has not been selected for installation.
    INFO: OUI-10070:The patch oracle.network.owm 10.2.0.3.0, which is part of patch set Oracle Database 10g Release 2 Patch Set 2 10.2.0.3.0 , has not been selected for installation.
    INFO: OUI-10070:The patch oracle.precomp.common 10.2.0.3.0, which is part of patch set Oracle Database 10g Release 2 Patch Set 2 10.2.0.3.0 , has not been selected for installation.
    INFO: OUI-10070:The patch oracle.tg4drda 10.2.0.3.0, which is part of patch set Oracle Database 10g Release 2 Patch Set 2 10.2.0.3.0 , has not been selected for installation.
    INFO: OUI-10070:The patch oracle.network.ssl 10.2.0.3.0, which is part of patch set Oracle Database 10g Release 2 Patch Set 2 10.2.0.3.0 , has not been selected for installation.
    INFO: OUI-10070:The patch oracle.tg4drda.sna 10.2.0.3.0, which is part of patch set Oracle Database 10g Release 2 Patch Set 2 10.2.0.3.0 , has not been selected for installation.
    INFO: OUI-10070:The patch oracle.odbc 10.2.0.3.0, which is part of patch set Oracle Database 10g Release 2 Patch Set 2 10.2.0.3.0 , has not been selected for installation.
    INFO: OUI-10070:The patch oracle.oem.client 10.2.0.3.0, which is part of patch set Oracle Database 10g Release 2 Patch Set 2 10.2.0.3.0 , has not been selected for installation.
    INFO: OUI-10070:The patch oracle.tg4drda.tcp 10.2.0.3.0, which is part of patch set Oracle Database 10g Release 2 Patch Set 2 10.2.0.3.0 , has not been selected for installation.
    INFO: OUI-10070:The patch oracle.oraolap 10.2.0.3.0, which is part of patch set Oracle Database 10g Release 2 Patch Set 2 10.2.0.3.0 , has not been selected for installation.
    INFO: OUI-10070:The patch oracle.oraolap.api 10.2.0.3.0, which is part of patch set Oracle Database 10g Release 2 Patch Set 2 10.2.0.3.0 , has not been selected for installation.
    INFO: OUI-10070:The patch oracle.oraolap.dbscripts 10.2.0.3.0, which is part of patch set Oracle Database 10g Release 2 Patch Set 2 10.2.0.3.0 , has not been selected for installation.
    INFO: OUI-10070:The patch oracle.ordim.client 10.2.0.3.0, which is part of patch set Oracle Database 10g Release 2 Patch Set 2 10.2.0.3.0 , has not been selected for installation.
    INFO: OUI-10070:The patch oracle.ordim.companion 10.2.0.3.0, which is part of patch set Oracle Database 10g Release 2 Patch Set 2 10.2.0.3.0 , has not been selected for installation.
    INFO: OUI-10070:The patch oracle.ordim.rdbms 10.2.0.3.0, which is part of patch set Oracle Database 10g Release 2 Patch Set 2 10.2.0.3.0 , has not been selected for installation.
    INFO: OUI-10070:The patch oracle.ordim.server 10.2.0.3.0, which is part of patch set Oracle Database 10g Release 2 Patch Set 2 10.2.0.3.0 , has not been selected for installation.
    INFO: OUI-10070:The patch oracle.pg4appc 10.2.0.3.0, which is part of patch set Oracle Database 10g Release 2 Patch Set 2 10.2.0.3.0 , has not been selected for installation.
    INFO: OUI-10070:The patch oracle.pg4mq 10.2.0.3.0, which is part of patch set Oracle Database 10g Release 2 Patch Set 2 10.2.0.3.0 , has not been selected for installation.
    INFO: OUI-10070:The patch oracle.wwg.plsql 10.2.0.3.0, which is part of patch set Oracle Database 10g Release 2 Patch Set 2 10.2.0.3.0 , has not been selected for installation.
    INFO: OUI-10070:The patch oracle.precomp.lang 10.2.0.3.0, which is part of patch set Oracle Database 10g Release 2 Patch Set 2 10.2.0.3.0 , has not been selected for installation.
    INFO: OUI-10070:The patch oracle.xdk 10.2.0.3.0, which is part of patch set Oracle Database 10g Release 2 Patch Set 2 10.2.0.3.0 , has not been selected for installation.
    INFO: OUI-10070:The patch oracle.ctx 10.2.0.3.0, which is part of patch set Oracle Database 10g Release 2 Patch Set 2 10.2.0.3.0 , has not been selected for installation.
    INFO: OUI-10070:The patch oracle.rdbms.companion 10.2.0.3.0, which is part of patch set Oracle Database 10g Release 2 Patch Set 2 10.2.0.3.0 , has not been selected for installation.
    INFO: OUI-10070:The patch oracle.rdbms.crs 10.2.0.3.0, which is part of patch set Oracle Database 10g Release 2 Patch Set 2 10.2.0.3.0 , has not been selected for installation.
    INFO: OUI-10070:The patch oracle.rdbms.dbscripts 10.2.0.3.0, which is part of patch set Oracle Database 10g Release 2 Patch Set 2 10.2.0.3.0 , has not been selected for installation.
    INFO: OUI-10070:The patch oracle.rdbms.dm 10.2.0.3.0, which is part of patch set Oracle Database 10g Release 2 Patch Set 2 10.2.0.3.0 , has not been selected for installation.
    INFO: OUI-10070:The patch oracle.rdbms.dmse 10.2.0.3.0, which is part of patch set Oracle Database 10g Release 2 Patch Set 2 10.2.0.3.0 , has not been selected for installation.
    INFO: OUI-10070:The patch oracle.rdbms.hs_common 10.2.0.3.0, which is part of patch set Oracle Database 10g Release 2 Patch Set 2 10.2.0.3.0 , has not been selected for installation.
    INFO: OUI-10070:The patch oracle.rdbms.ic 10.2.0.3.0, which is part of patch set Oracle Database 10g Release 2 Patch Set 2 10.2.0.3.0 , has not been selected for installation.
    INFO: OUI-10070:The patch oracle.rdbms.install.common 10.2.0.3.0, which is part of patch set Oracle Database 10g Release 2 Patch Set 2 10.2.0.3.0 , has not been selected for installation.
    INFO: OUI-10070:The patch oracle.rdbms.install.seeddb 10.2.0.3.0, which is part of patch set Oracle Database 10g Release 2 Patch Set 2 10.2.0.3.0 , has not been selected for installation.
    INFO: OUI-10070:The patch oracle.rdbms.install.seeddb.sample_schema 10.2.0.3.0, which is part of patch set Oracle Database 10g Release 2 Patch Set 2 10.2.0.3.0 , has not been selected for installation.
    INFO: OUI-10070:The patch oracle.rdbms.lbac 10.2.0.3.0, which is part of patch set Oracle Database 10g Release 2 Patch Set 2 10.2.0.3.0 , has not been selected for installation.
    INFO: OUI-10070:The patch oracle.rdbms.locator 10.2.0.3.0, which is part of patch set Oracle Database 10g Release 2 Patch Set 2 10.2.0.3.0 , has not been selected for installation.
    INFO: OUI-10070:The patch oracle.rdbms.oci 10.2.0.3.0, which is part of patch set Oracle Database 10g Release 2 Patch Set 2 10.2.0.3.0 , has not been selected for installation.
    INFO: OUI-10070:The patch oracle.rdbms.olap 10.2.0.3.0, which is part of patch set Oracle Database 10g Release 2 Patch Set 2 10.2.0.3.0 , has not been selected for installation.
    INFO: OUI-10070:The patch oracle.rdbms.partitioning 10.2.0.3.0, which is part of patch set Oracle Database 10g Release 2 Patch Set 2 10.2.0.3.0 , has not been selected for installation.
    INFO: OUI-10070:The patch oracle.rdbms.plsql 10.2.0.3.0, which is part of patch set Oracle Database 10g Release 2 Patch Set 2 10.2.0.3.0 , has not been selected for installation.
    INFO: OUI-10070:The patch oracle.rdbms.rman 10.2.0.3.0, which is part of patch set Oracle Database 10g Release 2 Patch Set 2 10.2.0.3.0 , has not been selected for installation.
    INFO: OUI-10070:The patch oracle.xdk.companion 10.2.0.3.0, which is part of patch set Oracle Database 10g Release 2 Patch Set 2 10.2.0.3.0 , has not been selected for installation.
    INFO: OUI-10070:The patch oracle.rdbms.util 10.2.0.3.0, which is part of patch set Oracle Database 10g Release 2 Patch Set 2 10.2.0.3.0 , has not been selected for installation.
    INFO: OUI-10070:The patch oracle.sdo.companion 10.2.0.3.0, which is part of patch set Oracle Database 10g Release 2 Patch Set 2 10.2.0.3.0 , has not been selected for installation.
    INFO: OUI-10070:The patch oracle.sdo.locator 10.2.0.3.0, which is part of patch set Oracle Database 10g Release 2 Patch Set 2 10.2.0.3.0 , has not been selected for installation.
    INFO: OUI-10070:The patch oracle.xdk.parser.java 10.2.0.3.0, which is part of patch set Oracle Database 10g Release 2 Patch Set 2 10.2.0.3.0 , has not been selected for installation.
    INFO: OUI-10070:The patch oracle.assistants.acf 10.2.0.3.0, which is part of patch set Oracle Database 10g Release 2 Patch Set 2 10.2.0.3.0 , has not been selected for installation.
    INFO: OUI-10070:The patch oracle.dbjava.jdbc12 10.2.0.3.0, which is part of patch set Oracle Database 10g Release 2 Patch Set 2 10.2.0.3.0 , has not been selected for installation.
    INFO: Unable to read /usr/lib/oracle/xe/oraInventory/ContentsXML/comps.xml. Some inventory information may be lost.
    INFO: OUI-10070:The patch oracle.has.cfs 10.2.0.3.0, which is part of patch set Oracle Database 10g Release 2 Patch Set 2 10.2.0.3.0 , has not been selected for installation.
    INFO: OUI-10071:The patch could not be found in the staging area.
    INFO: OUI-10070:The patch oracle.nlsrtl.companion 10.2.0.3.0, which is part of patch set Oracle Database 10g Release 2 Patch Set 2 10.2.0.3.0 , has not been selected for installation.
    INFO: OUI-10070:The patch oracle.odbc.ic 10.2.0.3.0, which is part of patch set Oracle Database 10g Release 2 Patch Set 2 10.2.0.3.0 , has not been selected for installation.
    INFO: OUI-10071:The patch could not be found in the staging area.
    INFO: OUI-10070:The patch oracle.rdbms.tg4sybs 10.2.0.3.0, which is part of patch set Oracle Database 10g Release 2 Patch Set 2 10.2.0.3.0 , has not been selected for installation.
    INFO: OUI-10071:The patch could not be found in the staging area.
    INFO: OUI-10070:The patch oracle.rdbms.tg4tera 10.2.0.3.0, which is part of patch set Oracle Database 10g Release 2 Patch Set 2 10.2.0.3.0 , has not been selected for installation.
    INFO: OUI-10071:The patch could not be found in the staging area.
    INFO: OUI-10070:The patch oracle.dbjava.jdbc14 10.2.0.3.0, which is part of patch set Oracle Database 10g Release 2 Patch Set 2 10.2.0.3.0 , has not been selected for installation.
    INFO: OUI-10070:The patch oracle.oraolap.mgmt 10.2.0.3.0, which is part of patch set Oracle Database 10g Release 2 Patch Set 2 10.2.0.3.0 , has not been selected for installation.
    INFO: OUI-10070:The patch oracle.ordim.jai 10.2.0.3.0, which is part of patch set Oracle Database 10g Release 2 Patch Set 2 10.2.0.3.0 , has not been selected for installation.
    INFO: OUI-10070:The patch oracle.sqlj.sqljruntime 10.2.0.3.0, which is part of patch set Oracle Database 10g Release 2 Patch Set 2 10.2.0.3.0 , has not been selected for installation.
    INFO: OUI-10070:The patch oracle.sqlj 10.2.0.3.0, which is part of patch set Oracle Database 10g Release 2 Patch Set 2 10.2.0.3.0 , has not been selected for installation.
    INFO: OUI-10070:The patch oracle.xdk.server 10.2.0.3.0, which is part of patch set Oracle Database 10g Release 2 Patch Set 2 10.2.0.3.0 , has not been selected for installation.
    INFO: OUI-10070:The patch oracle.ntmgmtobjs 10.2.0.3.0, which is part of patch set Oracle Database 10g Release 2 Patch Set 2 10.2.0.3.0 , has not been selected for installation.
    INFO: OUI-10071:The patch could not be found in the staging area.
    INFO: OUI-10070:The patch oracle.ntmgmtobjs.companion 10.2.0.3.0, which is part of patch set Oracle Database 10g Release 2 Patch Set 2 10.2.0.3.0 , has not been selected for installation.
    INFO: OUI-10071:The patch could not be found in the staging area.
    INFO: OUI-10070:The patch oracle.ntoledb.ode_net 10.2.0.3.0, which is part of patch set Oracle Database 10g Release 2 Patch Set 2 10.2.0.3.0 , has not been selected for installation.
    INFO: OUI-10071:The patch could not be found in the staging area.
    INFO: OUI-10070:The patch oracle.ntoledb.odp_net 10.2.0.3.0, which is part of patch set Oracle Database 10g Release 2 Patch Set 2 10.2.0.3.0 , has not been selected for installation.
    INFO: OUI-10071:The patch could not be found in the staging area.
    INFO: OUI-10070:The patch oracle.ntoramts 10.2.0.3.0, which is part of patch set Oracle Database 10g Release 2 Patch Set 2 10.2.0.3.0 , has not been selected for installation.
    INFO: OUI-10071:The patch could not be found in the staging area.
    INFO: OUI-10070:The patch oracle.ntrdbms.admin 10.2.0.3.0, which is part of patch set Oracle Database 10g Release 2 Patch Set 2 10.2.0.3.0 , has not been selected for installation.
    INFO: OUI-10071:The patch could not be found in the staging area.
    INFO: OUI-10070:The patch oracle.ntrdbms.oraconfig 10.2.0.3.0, which is part of patch set Oracle Database 10g Release 2 Patch Set 2 10.2.0.3.0 , has not been selected for installation.
    INFO: OUI-10071:The patch could not be found in the staging area.
    INFO: OUI-10070:The patch oracle.ntrdbms.perfmon 10.2.0.3.0, which is part of patch set Oracle Database 10g Release 2 Patch Set 2 10.2.0.3.0 , has not been selected for installation.
    INFO: OUI-10070:The patch oracle.sysman.agent.db 10.2.0.3.0, which is part of patch set Oracle Database 10g Release 2 Patch Set 2 10.2.0.3.0 , has not been selected for installation.
    INFO: OUI-10070:The patch oracle.sysman.bsln 10.2.0.3.0, which is part of patch set Oracle Database 10g Release 2 Patch Set 2 10.2.0.3.0 , has not been selected for installation.
    INFO: OUI-10070:The patch oracle.sysman.console.db 10.2.0.3.0, which is part of patch set Oracle Database 10g Release 2 Patch Set 2 10.2.0.3.0 , has not been selected for installation.
    INFO: OUI-10070:The patch oracle.xdk.rsf 10.2.0.3.0, which is part of patch set Oracle Database 10g Release 2 Patch Set 2 10.2.0.3.0 , has not been selected for installation.
    INFO: OUI-10070:The patch oracle.emdw.rsf 10.2.0.3.0, which is part of patch set Oracle Database 10g Release 2 Patch Set 2 10.2.0.3.0 , has not been selected for installation.
    INFO: OUI-10070:The patch oracle.dbjava.rsf 10.2.0.3.0, which is part of patch set Oracle Database 10g Release 2 Patch Set 2 10.2.0.3.0 , has not been selected for installation.
    INFO: OUI-10070:The patch oracle.ldap.rsf 10.2.0.3.0, which is part of patch set Oracle Database 10g Release 2 Patch Set 2 10.2.0.3.0 , has not been selected for installation.
    INFO: OUI-10070:The patch oracle.precomp.rsf 10.2.0.3.0, which is part of patch set Oracle Database 10g Release 2 Patch Set 2 10.2.0.3.0 , has not been selected for installation.
    INFO: OUI-10070:The patch oracle.has.rsf 10.2.0.3.0, which is part of patch set Oracle Database 10g Release 2 Patch Set 2 10.2.0.3.0 , has not been selected for installation.
    INFO: OUI-10070:The patch oracle.rdbms.rsf.ic 10.2.0.3.0, which is part of patch set Oracle Database 10g Release 2 Patch Set 2 10.2.0.3.0 , has not been selected for installation.
    INFO: OUI-10070:The patch oracle.rdbms.rsf 10.2.0.3.0, which is part of patch set Oracle Database 10g Release 2 Patch Set 2 10.2.0.3.0 , has not been selected for installation.
    INFO: OUI-10070:The patch oracle.sqlplus.rsf 10.2.0.3.0, which is part of patch set Oracle Database 10g Release 2 Patch Set 2 10.2.0.3.0 , has not been selected for installation.
    INFO: OUI-10070:The patch oracle.network.rsf.ic 10.2.0.3.0, which is part of patch set Oracle Database 10g Release 2 Patch Set 2 10.2.0.3.0 , has not been selected for installation.
    INFO: OUI-10070:The patch oracle.network.rsf 10.2.0.3.0, which is part of patch set Oracle Database 10g Release 2 Patch Set 2 10.2.0.3.0 , has not been selected for installation.
    INFO: OUI-10070:The patch oracle.nlsrtl.rsf 10.2.0.3.0, which is part of patch set Oracle Database 10g Release 2 Patch Set 2 10.2.0.3.0 , has not been selected for installation.
    INFO: OUI-10070:The patch oracle.oracore.rsf 10.2.0.3.0, which is part of patch set Oracle Database 10g Release 2 Patch Set 2 10.2.0.3.0 , has not been selected for installation.
    INFO: OUI-10070:The patch oracle.buildtools.rsf 10.2.0.3.0, which is part of patch set Oracle Database 10g Release 2 Patch Set 2 10.2.0.3.0 , has not been selected for installation.
    INFO: OUI-10070:The patch oracle.isearch.rdbms 10.2.0.3.0, which is part of patch set Oracle Database 10g Release 2 Patch Set 2 10.2.0.3.0 , has not been selected for installation.
    INFO: OUI-10070:The patch oracle.mgw.common 10.2.0.3.0, which is part of patch set Oracle Database 10g Release 2 Patch Set 2 10.2.0.3.0 , has not been selected for installation.
    INFO: OUI-10070:The patch oracle.dv 10.2.0.3.0, which is part of patch set Oracle Database 10g Release 2 Patch Set 2 10.2.0.3.0 , has not been selected for installation.
    INFO: OUI-10070:The patch oracle.rdbms.dv 10.2.0.3.0, which is part of patch set Oracle Database 10g Release 2 Patch Set 2 10.2.0.3.0 , has not been selected for installation.
    INFO: OUI-10070:The patch oracle.rdbms.dv.oc4j 10.2.0.3.0, which is part of patch set Oracle Database 10g Release 2 Patch Set 2 10.2.0.3.0 , has not been selected for installation.
    INFO: OUI-10070:The patch oracle.sysman.agent.core 10.2.0.3.0a, which is part of patch set Oracle Database 10g Release 2 Patch Set 2 10.2.0.3.0 , has not been selected for installation.
    INFO: OUI-10070:The patch oracle.sysman.common.core 10.2.0.3.0a, which is part of patch set Oracle Database 10g Release 2 Patch Set 2 10.2.0.3.0 , has not been selected for installation.
    INFO: OUI-10070:The patch oracle.sysman.repository.core 10.2.0.3.0a, which is part of patch set Oracle Database 10g Release 2 Patch Set 2 10.2.0.3.0 , has not been selected for installation.
    INFO: OUI-10070:The patch oracle.javavm.containers 10.2.0.3.0, which is part of patch set Oracle Database 10g Release 2 Patch Set 2 10.2.0.3.0 , has not been selected for installation.
    INFO: OUI-10070:The patch oracle.rdbms.tg4msql 10.2.0.3.0, which is part of patch set Oracle Database 10g Release 2 Patch Set 2 10.2.0.3.0 , has not been selected for installation.
    INFO: OUI-10071:The patch could not be found in the staging area.
    INFO: OUI-10070:The patch oracle.ctx.companion 10.2.0.3.0, which is part of patch set Oracle Database 10g Release 2 Patch Set 2 10.2.0.3.0 , has not been selected for installation.
    INFO: OUI-10070:The patch oracle.sysman.repository.db 10.2.0.3.0, which is part of patch set Oracle Database 10g Release 2 Patch Set 2 10.2.0.3.0 , has not been selected for installation.
    INFO: SRVM ClusterInfo.IsLocalOnly() called. Return value obtained is 'false'.
    INFO: The CRS clusterware location for 'oracle.crs 10.1.0.2.0' is not found.
    INFO: This is not a cluster system.
    INFO: Node selection page will not be shown.
    SEVERE: OUI-10091:There are no patches that need to be applied from the patchset Oracle Database 10g Release 2 Patch Set 2 10.2.0.3.0 .
    INFO: User Selected: Yes/OK
    INFO: Performing operation for OUI Oracle Home access setup
    Thanks

  • Echec to install Oracle database 11gr2 in  OEL5.6, OEL 5.5 and RHEL 5.6

    I try to install Oracle 11gr2 in Linux with the traditionnal installation but after several installation test i am disappointed.
    i make test on several distribution of Linux 64bits (OEL 5.6, OEL 5.5, RHEL 5.6) and SAME result : The installation of Oracle stop at 81 % .
    I have installed the packages required with the command line : yum install oracle-validated
    I thinks it's a problem of library but what library ?
    Thanks you by advance.
    The log of my install :
    INFO: gcc -o ctxhx -m64 -L/oracledata/product/11.2.0/dbhome_3/ctx/lib/ -L/oracledata/product/11.2.0/dbhome_3/lib/ -L/oracledata/product/11.2.0/dbhome_3/lib/stubs/ /oracledata/product/11.2.0/dbhome_3/ctx/lib/ctxhx.o -L/oracledata/product/11.2.0/dbhome_3/ctx/lib/ -lm -lsc_fa -lsc_ex -lsc_da -lsc_ca -lz -lctxhx -Wl,-rpath,/oracledata/product/11.2.0/dbhome_3/ctx/lib -lsnls11 -lnls11 -lcore11 -lsnls11 -lnls11 -lcore11 -lsnls11 -lnls11 -lxml11 -lcore11 -lunls11 -lsnls11 -lnls11 -lcore11 -lnls11 `cat /oracledata/pro
    INFO: duct/11.2.0/dbhome_3/lib/sysliblist`
    INFO: /usr/bin/ld: warning: libwv_core.so, needed by /oracledata/product/11.2.0/dbhome_3/ctx/lib//libsc_fa.so, not found (try using -rpath or -rpath-link)
    /usr/lib64/libstdc++.so.5: undefined reference to `__stack_chk_fail@GLIBC_2.4'
    /oracledata/product/11.2.0/dbhome_3/ctx/lib//libsc_fa.so: undefined reference to `SYSNativeFree'
    /oracledata/product/11.2.0/dbhome_3/ctx/lib//libsc_fa.so: undefined reference to `SNLoadLibrary'
    /oracledata/product/11.2.0/dbhome_3/ctx/lib//libsc_da.so: undefined reference to `Win32VIn
    INFO: it'
    /oracledata/product/11.2.0/dbhome_3/ctx/lib//libsc_fa.so: undefined reference to `SNDestroyCriticalSection'
    /oracledata/product/11.2.0/dbhome_3/ctx/lib//libsc_fa.so: undefined reference to `SNGetProcAddress'
    /oracledata/product/11.2.0/dbhome_3/ctx/lib//libsc_fa.so: undefined reference to `SYSNativeAlloc'
    /oracledata/product/11.2.0/dbhome_3/ctx/lib/libsc_ut.so: undefined reference to `Win32VCreateHandle'
    /oracledata/product/11.2.0/dbhome_3/ctx/lib//libsc_fa.so: undefined reference to `Win32VBailOut'
    /ora
    INFO: cledata/product/11.2.0/dbhome_3/ctx/lib//libsc_fa.so: undefined reference to `Win32VPushBailOutEx'
    /oracledata/product/11.2.0/dbhome_3/ctx/lib//libsc_fa.so: undefined reference to `SPStringConcat'
    /oracledata/product/11.2.0/dbhome_3/ctx/lib//libsc_da.so: undefined reference to `Win32VDeinit'
    /oracledata/product/11.2.0/dbhome_3/ctx/lib//libsc_fa.so: undefined reference to `SYSNativeLock'
    /oracledata/product/11.2.0/dbhome_3/ctx/lib//libsc_fa.so: undefined reference to `__gxx_personality_v0@CXXABI_1.2'
    /oracle
    INFO: data/product/11.2.0/dbhome_3/ctx/lib/libsc_ut.so: undefined reference to `Win32VGetOutputSolutionByName'
    /oracledata/product/11.2.0/dbhome_3/ctx/lib//libsc_fa.so: undefined reference to `SYSNativeUnlock'
    /oracledata/product/11.2.0/dbhome_3/ctx/lib//libsc_ex.so: undefined reference to `SYSNativeReAlloc'
    /oracledata/product/11.2.0/dbhome_3/ctx/lib//libsc_fa.so: undefined reference to `SNCreateCriticalSection'
    /oracledata/product/11.2.0/dbhome_3/ctx/lib/libsc_ut.so: undefined reference to `Win32VGetOutputVtabl
    INFO: e'
    /oracledata/product/11.2.0/dbhome_3/ctx/lib//libsc_fa.so: undefined reference to `SPStringToBytes'
    /oracledata/product/11.2.0/dbhome_3/ctx/lib//libsc_fa.so: undefined reference to `SPStringCopy'
    /oracledata/product/11.2.0/dbhome_3/ctx/lib//libsc_fa.so: undefined reference to `SCCExceptionTrap::~SCCExceptionTrap()'
    /oracledata/product/11.2.0/dbhome_3/ctx/lib//libsc_fa.so: undefined reference to `SNCompareTimes'
    /oracledata/product/11.2.0/dbhome_3/ctx/lib/libsc_ut.so: undefined reference to `Win32VInitBail
    INFO: Out'
    /oracledata/product/11.2.0/dbhome_3/ctx/lib/libsc_ut.so: undefined reference to `SPSubstringReplace'
    /oracledata/product/11.2.0/dbhome_3/ctx/lib//libsc_fa.so: undefined reference to `SNFindClose'
    /oracledata/product/11.2.0/dbhome_3/ctx/lib//libsc_fa.so: undefined reference to `SNEnterCriticalSection'
    /oracledata/product/11.2.0/dbhome_3/ctx/lib//libsc_fa.so: undefined reference to `SNFreeLibrary'
    /oracledata/product/11.2.0/dbhome_3/ctx/lib/libsc_ut.so: undefined reference to `Win32VOnAssertionFailure'
    INFO: oracledata/product/11.2.0/dbhome_3/ctx/lib//libsc_fa.so: undefined reference to `SNLeaveCriticalSection'
    /oracledata/product/11.2.0/dbhome_3/ctx/lib/libsc_ut.so: undefined reference to `SNGetLibrarySpec'
    /oracledata/product/11.2.0/dbhome_3/ctx/lib//libsc_fa.so: undefined reference to `SCCExceptionTrap::SCCExceptionTrap(int, char const*, int)'
    /oracledata/product/11.2.0/dbhome_3/ctx/lib/libsc_ut.so: undefined reference to `Win32VDebugString'
    /oracledata/product/11.2.0/dbhome_3/ctx/lib//libsc_fa.so: undefined
    INFO: reference to `SNFindFirstFile'
    /oracledata/product/11.2.0/dbhome_3/ctx/lib/libsc_ut.so: undefined reference to `SNSetCriticalSectionFactoryType'
    /oracledata/product/11.2.0/dbhome_3/ctx/lib/libsc_ut.so: undefined reference to `Win32VGetOutputSolutionByType'
    /oracledata/product/11.2.0/dbhome_3/ctx/lib/libsc_ut.so: undefined reference to `Win32VSetDefaultOutputSolutionForType'
    /oracledata/product/11.2.0/dbhome_3/ctx/lib/libsc_ut.so: undefined reference to `Win32VSetHandleUserData'
    /oracledata/product/11.2.0/d
    INFO: bhome_3/ctx/lib/libsc_ut.so: undefined reference to `Win32VPopBailOut'
    /oracledata/product/11.2.0/dbhome_3/ctx/lib//libsc_fa.so: undefined reference to `SPBytesToString'
    /oracledata/product/11.2.0/dbhome_3/ctx/lib//libsc_fa.so: undefined reference to `SNFindNextFile'
    collect2: ld a retourné 1 code d'état d'exécution
    INFO: make: *** [ctxhx] Erreur 1
    INFO: Arrêter la sortie à partir du processus généré dynamiquement.
    List of my RPM
    rpm -qa --qf '%{name}-%{version}-%{release}.%{arch}\n'|egrep 'compat|glibc|libstc|gcc'|sort
    avahi-compat-libdns_sd-0.6.16-9.el5_5.x86_64
    compat-dapl-2.0.25-2.el5_5.1.i386
    compat-dapl-2.0.25-2.el5_5.1.x86_64
    compat-dapl-devel-2.0.25-2.el5_5.1.i386
    compat-dapl-devel-2.0.25-2.el5_5.1.x86_64
    compat-dapl-utils-2.0.25-2.el5_5.1.x86_64
    compat-db-4.2.52-5.1.x86_64
    compat-gcc-34-3.4.6-4.1.x86_64
    compat-gcc-34-c++-3.4.6-4.1.x86_64
    compat-libgcc-296-2.96-138.i386
    compat-libstdc++-296-2.96-138.i386
    compat-libstdc++-33-3.2.3-61.i386
    compat-libstdc++-33-3.2.3-61.x86_64
    gcc-4.1.2-50.el5.x86_64
    gcc-c++-4.1.2-50.el5.x86_64
    gcc-gfortran-4.1.2-50.el5.x86_64
    gcc-java-4.1.2-50.el5.x86_64
    glibc-2.5-58.i686
    glibc-2.5-58.x86_64
    glibc-common-2.5-58.x86_64
    glibc-devel-2.5-58.i386
    glibc-devel-2.5-58.x86_64
    glibc-headers-2.5-58.x86_64
    java-1.4.2-gcj-compat-1.4.2.0-40jpp.115.x86_64
    java-1.4.2-gcj-compat-devel-1.4.2.0-40jpp.115.i386
    java-1.4.2-gcj-compat-devel-1.4.2.0-40jpp.115.x86_64
    java-1.4.2-gcj-compat-src-1.4.2.0-40jpp.115.x86_64
    libgcc-4.1.2-50.el5.i386
    libgcc-4.1.2-50.el5.x86_64
    My .bash_profile file
    # .bash_profile
    # Get the aliases and functions
    if [ -f ~/.bashrc ]; then
         . ~/.bashrc
    fi
    # User specific environment and startup programs
    PATH=$PATH:$HOME/bin
    export PATH
    # Oracle Settings
    TMP=/tmp; export TMP
    TMPDIR=$TMP; export TMPDIR
    ORACLE_HOSTNAME=rhel56.bonifay.san; export ORACLE_HOSTNAME
    ORACLE_UNQNAME=SID1; export ORACLE_UNQNAME
    ORACLE_BASE=/oracledata; export ORACLE_BASE
    ORACLE_HOME=/oraclebin/product/11.2.0/db_1; export ORACLE_HOME
    ORACLE_SID=SID1; export ORACLE_SID
    PATH=/usr/sbin:$PATH; export PATH
    PATH=$ORACLE_HOME/bin:$PATH; export PATH
    LD_LIBRARY_PATH=$ORACLE_HOME/lib:/lib:/usr/lib; export LD_LIBRARY_PATH
    CLASSPATH=$ORACLE_HOME/jlib:$ORACLE_HOME/rdbms/jlib; export CLASSPATH

    thanks Dude.
    But same result with /u01 and $PATH
    For info my variables environnement, if you have a idea
    HOSTNAME=OEL55.bonifay.sa
    SHELL=/bin/bash
    TERM=xterm
    HISTSIZE=1000
    ORACLE_UNQNAME=SID1
    TMPDIR=/tmp
    USER=oracle
    LD_LIBRARY_PATH=/u01/product/11.2.0/db_1/lib:/lib:/lib64:/usr/lib:/usr/lib64
    LS_COLORS=no=00:fi=00:di=00;34:ln=00;36:pi=40;33:so=00;35:bd=40;33;01:cd=40;33;01:or=01;05;37;41:mi=01;05;37;41:ex=00;32:*.cmd=00;32:*.exe=00;32:*.com=00;32:*.btm=00;32:*.bat=00;32:*.sh=00;32:*.csh=00;32:*.tar=00;31:*.tgz=00;31:*.arj=00;31:*.taz=00;31:*.lzh=00;31:*.zip=00;31:*.z=00;31:*.Z=00;31:*.gz=00;31:*.bz2=00;31:*.bz=00;31:*.tz=00;31:*.rpm=00;31:*.cpio=00;31:*.jpg=00;35:*.gif=00;35:*.bmp=00;35:*.xbm=00;35:*.xpm=00;35:*.png=00;35:*.tif=00;35:
    ORACLE_SID=SID1
    ORACLE_BASE=/u01
    ORACLE_HOSTNAME=OEL55.bonifay.sa
    MAIL=/var/spool/mail/oracle
    PATH=/u01/product/11.2.0/db_1/bin:/usr/sbin:/usr/kerberos/bin:/usr/local/bin:/bin:/usr/bin:/home/oracle/bin
    INPUTRC=/etc/inputrc
    PWD=/home/oracle
    LANG=fr_FR.UTF-8
    SSH_ASKPASS=/usr/libexec/openssh/gnome-ssh-askpass
    SHLVL=1
    HOME=/home/oracle
    TMP=/tmp
    LOGNAME=oracle
    CVS_RSH=ssh
    CLASSPATH=/u01/product/11.2.0/db_1/jlib:/u01/product/11.2.0/db_1/rdbms/jlib
    LESSOPEN=|/usr/bin/lesspipe.sh %s
    ORACLE_HOME=/u01/product/11.2.0/db_1
    G_BROKEN_FILENAMES=1
    _=/bin/env

  • OpenSolaris - oracle 11gR2 - MakefileException - Error in invoking target

    Hi,
    Thanks for reading this thread - When I tried to install oracle 11gR2 on openSolaris (64 bit), I run into the following error :
    INFO: ort/home/oracle/u01/app/oracle/product/11.2.0/dbhome_1/lib/sysliblist` -R /opt/SUNWcluster/lib:/export/home/oracle/u01/app/oracle/product/11.2.0/dbhome_1/lib:/opt/ORCLcluster/lib/ -Y P,:/opt/SUNWcluster/lib:/opt/ORCLcluster/lib/:/usr/ccs/lib/amd64:/usr/lib/amd64 -Qy -lc -lrt -laio -lposix4 -lkstat -lm /export/home/oracle/u01/app/oracle/product/11.2.0/dbhome_1/lib/prod/lib/amd64/crtn.o -lpthread
    INFO: *** Error code 1
    INFO: ld: fatal: mmap anon failed: Resource temporarily unavailable
    INFO: make: Fatal error: Command failed for target `/export/home/oracle/u01/app/oracle/product/11.2.0/dbhome_1/rdbms/lib/oracle'
    INFO: End output from spawned process.
    INFO: ----------------------------------
    INFO: Exception thrown from action: make
    Exception Name: MakefileException
    Exception String: Error in invoking target 'irman ioracle' of makefile '/export/home/oracle/u01/app/oracle/product/11.2.0/dbhome_1/rdbms/lib/ins_rdbms.mk'. See '/export/home/oracle/u01/app/oraInventory/logs/installActions2009-12-30_02-45-51AM.log' for details.
    Exception Severity: 1
    Thanks for your help.

    Werner Gross wrote:
    Dear Mister Forbrich,
    Thanks for your help.
    What do you mean by "But you may have a resolution"?It has been suggested that getting Solaris instead of OpenSolaris will solve your problem.
    Have you verified that? If 'yes', you have a solution. If 'no', then you may have a solution.
    >
    Of course I intend to be 'polite' and as respectfull to you as you deserve it. I also want to be respectfull to the rules as they are defined in these forums which, it's true, are new to me.That 'polite' comment was directed at the community, not specifically at you. There are no rules about closing threads, so people who want to be nice to the community will use the tactic I suggested. However, there are many instances of problems being resolved and neither being marked as solved nor having a summary.
    Following my understanding, these rules state that the "correct" button should be used if the original question is answered, otherwise "helpfull" should be used. Is there any misunderstanding on that?The marking of responses as 'correct' or 'helpful' is a strong suggestion. It is not an un-alterable rule. The suggestion is that you reward those who helped you resolve your problem or answer your question. How you reward them is up to you.
    Note, however, that not rewarding correct or helpful responses may result in not getting many responses in the future. Some of us only respond to get rewards. For others of us (including myself) the challenge of understanding the question and learning more during the resolution is reward in itself.
    Sadly, you can not revoke your reward if the answer is later found to be incorrect, so use the rewards wisely.
    Issuing rewards is independent of marking the question as answered.
    >
    Of course, I am going to follow your advise and post a final summary concerning the "resolution" as my last entry on the thread.That would be nice. It is not mandatory, and few people do it. If everyone provided that summary of correct answers to the questions or problems, these forums would be 100x as useful.
    Edited by: Hans Forbrich on Jan 1, 2010 2:27 PM
    Just wanted to thank you for the excellent summary. And do it in a way that leaves your summary as the last post.

  • Error in invoking target 'irman ioracle' of makefile '/opt/oragrid/rdbms/lib/ins_rdbms.mk'

    Hello all,
    I am attempting to install Oracle12c GI on two virtual nodes (in Fusion VMware) and am getting the following error message (Both nodes are configured exactly the same):
    INFO: Start output from spawned process:
    INFO: ----------------------------------
    INFO:
    INFO:
    INFO:  - Linking recovery manager (rman)
    INFO: rm -f /opt/oragrid/rdbms/lib/rman
    INFO: /opt/oragrid/bin/orald -o /opt/oragrid/rdbms/lib/rman -m64 -z noexecstack -Wl,--disable-new-dtags -L/opt/oragrid/rdbms/lib/ -L/opt/oragrid/lib/ -L/opt/oragrid/lib/stubs/   /opt/oragrid/lib/s0main.o /opt/oragrid/rdbms/lib/sskrmed.o /opt/oragrid/rdbms/lib/skrmpt.o -ldbtools12 -lclient12 -lsql12 -lpls12  -lrt -lplp12 -lsnls12 -lunls12 -lnls12 -lslax12 -lpls12  -lrt -lplp12 /opt/oragrid/lib/libplc12.a -lclntsh -lclntshcore  `cat /opt/oragrid/lib/ldflags`    -lncrypt12 -lnsgr12 -lnzjs12 -ln12 -lnl12 -lnro12 `cat
    INFO:  /opt/oragrid/lib/ldflags`    -lncrypt12 -lnsgr12 -lnzjs12 -ln12 -lnl12 -lnnz12 -lzt12 -lztkg12 -lztkg12 -lclient12 -lnnetd12  -lvsn12 -lcommon12 -lgeneric12 -lmm -lsnls12 -lnls12  -lcore12 -lsnls12 -lnls12 -lcore12 -lsnls12 -lnls12 -lxml12 -lcore12 -lunls12 -lsnls12 -lnls12 -lcore12 -lnls12 `cat /opt/oragrid/lib/ldflags`    -lncrypt12 -lnsgr12 -lnzjs12 -ln12 -lnl12 -lnro12 `cat /opt/oragrid/lib/ldflags`    -lncrypt12 -lnsgr12 -lnzjs12 -ln12 -lnl12 -lclient12 -lnnetd12  -lvsn12 -lcommon12 -lgeneric12   -lsn
    INFO: ls12 -lnls12  -lcore12 -lsnls12 -lnls12 -lcore12 -lsnls12 -lnls12 -lxml12 -lcore12 -lunls12 -lsnls12 -lnls12 -lcore12 -lnls12 -lclient12 -lnnetd12  -lvsn12 -lcommon12 -lgeneric12 -lsnls12 -lnls12  -lcore12 -lsnls12 -lnls12 -lcore12 -lsnls12 -lnls12 -lxml12 -lcore12 -lunls12 -lsnls12 -lnls12 -lcore12 -lnls12   `cat /opt/oragrid/lib/sysliblist` -Wl,-rpath,/opt/oragrid/lib -lm    `cat /opt/oragrid/lib/sysliblist` -ldl -lm   -L/opt/oragrid/lib
    INFO: test ! -f /opt/oragrid/bin/rman ||\
        mv -f /opt/oragrid/bin/rman /opt/oragrid/bin/rmanO
    INFO: mv /opt/oragrid/rdbms/lib/rman /opt/oragrid/bin/rman
    INFO: chmod 751 /opt/oragrid/bin/rman
    INFO: chmod 755 /opt/oragrid/bin
    INFO:
    INFO:  - Linking Oracle
    INFO: rm -f /opt/oragrid/rdbms/lib/oracle
    INFO: /opt/oragrid/bin/orald  -o /opt/oragrid/rdbms/lib/oracle -m64 -z noexecstack -Wl,--disable-new-dtags -L/opt/oragrid/rdbms/lib/ -L/opt/oragrid/lib/ -L/opt/oragrid/lib/stubs/   -Wl,-E /opt/oragrid/rdbms/lib/opimai.o /opt/oragrid/rdbms/lib/ssoraed.o /opt/oragrid/rdbms/lib/ttcsoi.o -Wl,--whole-archive -lperfsrv12 -Wl,--no-whole-archive /opt/oragrid/lib/nautab.o /opt/oragrid/lib/naeet.o /opt/oragrid/lib/naect.o /opt/oragrid/lib/naedhs.o /opt/oragrid/rdbms/lib/config.o  -lserver12 -lodm12 -lcell12 -lnnet12 -lskgx
    INFO: p12 -lsnls12 -lnls12  -lcore12 -lsnls12 -lnls12 -lcore12 -lsnls12 -lnls12 -lxml12 -lcore12 -lunls12 -lsnls12 -lnls12 -lcore12 -lnls12 -lclient12  -lvsn12 -lcommon12 -lgeneric12 -lknlopt `if /usr/bin/ar tv /opt/oragrid/rdbms/lib/libknlopt.a | grep xsyeolap.o > /dev/null 2>&1 ; then echo "-loraolap12" ; fi` -lskjcx12 -lslax12 -lpls12  -lrt -lplp12 -lserver12 -lclient12  -lvsn12 -lcommon12 -lgeneric12 `if [ -f /opt/oragrid/lib/libavserver12.a ] ; then echo "-lavserver12" ; else echo "-lavstub12"; fi` `if [ -f
    INFO: /opt/oragrid/lib/libavclient12.a ] ; then echo "-lavclient12" ; fi` -lknlopt -lslax12 -lpls12  -lrt -lplp12 -ljavavm12 -lserver12  -lwwg  `cat /opt/oragrid/lib/ldflags`    -lncrypt12 -lnsgr12 -lnzjs12 -ln12 -lnl12 -lnro12 `cat /opt/oragrid/lib/ldflags`    -lncrypt12 -lnsgr12 -lnzjs12 -ln12 -lnl12 -lnnzst12 -lzt12 -lztkg12 -lmm -lsnls12 -lnls12  -lcore12 -lsnls12 -lnls12 -lcore12 -lsnls12 -lnls12 -lxml12 -lcore12 -lunls12 -lsnls12 -lnls12 -lcore12 -lnls12 -lztkg12 `cat /opt/oragrid/lib/ldflags`    -lncrypt12
    INFO:  -lnsgr12 -lnzjs12 -ln12 -lnl12 -lnro12 `cat /opt/oragrid/lib/ldflags`    -lncrypt12 -lnsgr12 -lnzjs12 -ln12 -lnl12 -lnnzst12 -lzt12 -lztkg12   -lsnls12 -lnls12  -lcore12 -lsnls12 -lnls12 -lcore12 -lsnls12 -lnls12 -lxml12 -lcore12 -lunls12 -lsnls12 -lnls12 -lcore12 -lnls12 `if /usr/bin/ar tv /opt/oragrid/rdbms/lib/libknlopt.a | grep "kxmnsd.o" > /dev/null 2>&1 ; then echo " " ; else echo "-lordsdo12"; fi` -L/opt/oragrid/ctx/lib/ -lctxc12 -lctx12 -lzx12 -lgx12 -lctx12 -lzx12 -lgx12 -lordimt12 -lclsra12 -ldbc
    INFO: fg12 -lhasgen12 -lskgxn2 -lnnzst12 -lzt12 -lxml12 -locr12 -locrb12 -locrutl12 -lhasgen12 -lskgxn2 -lnnzst12 -lzt12 -lxml12  -lgeneric12 -loraz -llzopro -lorabz2 -lipp_z -lipp_bz2 -lippdcemerged -lippsemerged -lippdcmerged  -lippsmerged -lippcore  -lippcpemerged -lippcpmerged  -lsnls12 -lnls12  -lcore12 -lsnls12 -lnls12 -lcore12 -lsnls12 -lnls12 -lxml12 -lcore12 -lunls12 -lsnls12 -lnls12 -lcore12 -lnls12 -lsnls12 -lunls12  -lsnls12 -lnls12  -lcore12 -lsnls12 -lnls12 -lcore12 -lsnls12 -lnls12 -lxml12 -lcore12
    INFO:  -lunls12 -lsnls12 -lnls12 -lcore12 -lnls12 -lasmclnt12 -lcommon12 -lcore12  -laio -lons    `cat /opt/oragrid/lib/sysliblist` -Wl,-rpath,/opt/oragrid/lib -lm    `cat /opt/oragrid/lib/sysliblist` -ldl -lm   -L/opt/oragrid/lib
    INFO: /
    INFO: usr
    INFO: /
    INFO: bin
    INFO: /
    INFO: ld
    INFO: :
    INFO:
    INFO: cannot
    INFO: 
    INFO: find
    INFO: 
    INFO: -
    INFO: ljavavm12
    INFO:
    INFO: collect2:
    INFO: ld returned 1 exit status
    INFO:
    INFO: make: *** [/opt/oragrid/rdbms/lib/oracle] Error 1
    INFO: End output from spawned process.
    INFO: ----------------------------------
    INFO: Exception thrown from action: make
    Exception Name: MakefileException
    Exception String: Error in invoking target 'irman ioracle' of makefile '/opt/oragrid/rdbms/lib/ins_rdbms.mk'. See '/opt/oraInventory/logs/installActions2013-11-25_04-25-06PM.log' for details.
    Exception Severity: 1
    Below are my VM specs:
    **************************************************************Installed RPM's*****************************************************************
    cat /etc/redhat-release
    Red Hat Enterprise Linux Server release 6.4 (Santiago)
    rpm -qa gcc
    gcc-4.4.7-3.el6.x86_64
    rpm -qa make
    make-3.81-20.el6.x86_64
    rpm -qa|grep oracle
    oracleasmlib-2.0.4-1.el6.x86_64
    oracle-logos-60.0.14-1.0.1.el6.noarch
    oracle-rdbms-server-12cR1-preinstall-1.0-8.el6.x86_64
    kmod-oracleasm-2.0.6.rh1-2.el6.x86_64
    oraclelinux-release-notes-6Server-9.x86_64
    oraclelinux-release-6Server-4.0.4.x86_64
    oracleasm-support-2.1.8-1.el6.x86_64
    ***************************************************************JAVA***************************************************************************
    java version "1.7.0_45"
    Java(TM) SE Runtime Environment (build 1.7.0_45-b18)
    Java HotSpot(TM) 64-Bit Server VM (build 24.45-b08, mixed mode)
    *************************************************************SYSCTL**************************************************************************
    # Kernel sysctl configuration file for Red Hat Linux
    # For binary values, 0 is disabled, 1 is enabled.  See sysctl(8) and
    # sysctl.conf(5) for more details.
    # Controls IP packet forwarding
    net.ipv4.ip_forward = 0
    # Controls source route verification
    net.ipv4.conf.default.rp_filter = 1
    # Do not accept source routing
    net.ipv4.conf.default.accept_source_route = 0
    # Controls the System Request debugging functionality of the kernel
    kernel.sysrq = 0
    # Controls whether core dumps will append the PID to the core filename.
    # Useful for debugging multi-threaded applications.
    kernel.core_uses_pid = 1
    kernel.core_pattern=/var/adm/crash/cores/%e.sig%s
    # Controls the use of TCP syncookies
    net.ipv4.tcp_syncookies = 1
    # Disable netfilter on bridges.
    net.bridge.bridge-nf-call-ip6tables = 0
    net.bridge.bridge-nf-call-iptables = 0
    net.bridge.bridge-nf-call-arptables = 0
    # Controls the default maxmimum size of a mesage queue
    kernel.msgmnb = 65536
    # Controls the maximum size of a message, in bytes
    kernel.msgmax = 65536
    # Controls the maximum shared segment size, in bytes
    # Controls the maximum number of shared memory segments, in pages
    kernel.shmall = 4294967296
    # oracle-rdbms-server-12cR1-preinstall setting for fs.file-max is 6815744
    fs.file-max = 6815744
    # oracle-rdbms-server-12cR1-preinstall setting for kernel.sem is '250 32000 100 128'
    kernel.sem = 250 32000 100 128
    # oracle-rdbms-server-12cR1-preinstall setting for kernel.shmmni is 4096
    kernel.shmmni = 4096
    # oracle-rdbms-server-12cR1-preinstall setting for kernel.shmall is 1073741824 on x86_64
    # oracle-rdbms-server-12cR1-preinstall setting for kernel.shmmax is 4398046511104 on x86_64
    kernel.shmmax = 4398046511104
    # oracle-rdbms-server-12cR1-preinstall setting for net.core.rmem_default is 262144
    net.core.rmem_default = 262144
    # oracle-rdbms-server-12cR1-preinstall setting for net.core.rmem_max is 4194304
    net.core.rmem_max = 4194304
    # oracle-rdbms-server-12cR1-preinstall setting for net.core.wmem_default is 262144
    net.core.wmem_default = 262144
    # oracle-rdbms-server-12cR1-preinstall setting for net.core.wmem_max is 1048576
    net.core.wmem_max = 1048576
    # oracle-rdbms-server-12cR1-preinstall setting for fs.aio-max-nr is 1048576
    fs.aio-max-nr = 1048576
    # oracle-rdbms-server-12cR1-preinstall setting for net.ipv4.ip_local_port_range is 9000 65500
    net.ipv4.ip_local_port_range = 9000 65500
    # The below entries were added and deal with an r_filtering issue oracle wants private interconnects set loose
    net.ipv4.conf.eth4.rp_filter = 2
    net.ipv4.conf.eth6.rp_filter = 2
    net.ipv4.conf.eth1.rp_filter = 1
    *************************************************************Filesystem************************************************************************
    Filesystem            Size  Used Avail Use% Mounted on
    /dev/mapper/vg_oracle12c-lv_root
                          8.9G  3.5G  5.0G  42% /
    tmpfs                 2.2G     0  2.2G   0% /dev/shm
    /dev/sda1             485M  101M  359M  22% /boot
    /dev/mapper/vg_oracle12c-lv_home
                          2.0G   70M  1.9G   4% /home
    /dev/mapper/vg_oracle12c-lv_tmp
                          4.5G  541M  3.7G  13% /tmp
    /dev/mapper/vg_oracle12c-lv_var
                          5.0G  956M  3.8G  20% /var
    /dev/mapper/oracle_vg-oragrid
                           20G  5.0G   14G  27% /opt/oragrid
    .host:/               466G  137G  330G  30% /mnt/hgfs
    *******************************************************************CPU INFO*******************************************************************************
    cat /proc/cpuinfo
    processor : 0
    vendor_id : GenuineIntel
    cpu family : 6
    model : 70
    model name : Intel(R) Core(TM) i7-4850HQ CPU @ 2.30GHz
    stepping : 1
    cpu MHz : 2294.967
    cache size : 6144 KB
    fpu : yes
    fpu_exception : yes
    cpuid level : 13
    wp : yes
    flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts mmx fxsr sse sse2 ss syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts nopl xtopology tsc_reliable nonstop_tsc aperfmperf pni pclmulqdq ssse3 fma cx16 sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand hypervisor lahf_lm ida arat epb xsaveopt pln pts dts fsgsbase smep
    bogomips : 4589.93
    clflush size : 64
    cache_alignment : 64
    address sizes : 40 bits physical, 48 bits virtual
    power management:
    processor : 1
    vendor_id : GenuineIntel
    cpu family : 6
    model : 70
    model name : Intel(R) Core(TM) i7-4850HQ CPU @ 2.30GHz
    stepping : 1
    cpu MHz : 2294.967
    cache size : 6144 KB
    fpu : yes
    fpu_exception : yes
    cpuid level : 13
    wp : yes
    flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts mmx fxsr sse sse2 ss syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts nopl xtopology tsc_reliable nonstop_tsc aperfmperf pni pclmulqdq ssse3 fma cx16 sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand hypervisor lahf_lm ida arat epb xsaveopt pln pts dts fsgsbase smep
    bogomips : 4589.93
    clflush size : 64
    cache_alignment : 64
    address sizes : 40 bits physical, 48 bits virtual
    power management:
    processor : 2
    vendor_id : GenuineIntel
    cpu family : 6
    model : 70
    model name : Intel(R) Core(TM) i7-4850HQ CPU @ 2.30GHz
    stepping : 1
    cpu MHz : 2294.967
    cache size : 6144 KB
    fpu : yes
    fpu_exception : yes
    cpuid level : 13
    wp : yes
    flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts mmx fxsr sse sse2 ss syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts nopl xtopology tsc_reliable nonstop_tsc aperfmperf pni pclmulqdq ssse3 fma cx16 sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand hypervisor lahf_lm ida arat epb xsaveopt pln pts dts fsgsbase smep
    bogomips : 4589.93
    clflush size : 64
    cache_alignment : 64
    address sizes : 40 bits physical, 48 bits virtual
    power management:
    processor : 3
    vendor_id : GenuineIntel
    cpu family : 6
    model : 70
    model name : Intel(R) Core(TM) i7-4850HQ CPU @ 2.30GHz
    stepping : 1
    cpu MHz : 2294.967
    cache size : 6144 KB
    fpu : yes
    fpu_exception : yes
    cpuid level : 13
    wp : yes
    flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts mmx fxsr sse sse2 ss syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts nopl xtopology tsc_reliable nonstop_tsc aperfmperf pni pclmulqdq ssse3 fma cx16 sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand hypervisor lahf_lm ida arat epb xsaveopt pln pts dts fsgsbase smep
    bogomips : 4589.93
    clflush size : 64
    cache_alignment : 64
    address sizes : 40 bits physical, 48 bits virtual
    power management:
    *******************************************************************************Memory************************************************************************
    free -m
                 total       used       free     shared    buffers     cached
    Mem:          4331       3972        359          0         30       3412
    -/+ buffers/cache:        530       3801
    Swap:        14323          0      14323
    ****************************************************************************Network***************************************************************************
    Note eth0 is NAT and used for internet connectivity, eth1 is the public network (static and accessible to the hypervising machine running fusion ), eth4 and and eth6 are private, and eth3 is connected to an openfiler storage appliance (This is also a VM serving out ISCSI targets).
    eth0      Link encap:Ethernet  HWaddr 00:50:56:22:C6:91
              inet addr:192.168.90.140  Bcast:192.168.90.255  Mask:255.255.255.0
              inet6 addr: fe80::250:56ff:fe22:c691/64 Scope:Link
              UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
              RX packets:227 errors:0 dropped:0 overruns:0 frame:0
              TX packets:225 errors:0 dropped:0 overruns:0 carrier:0
              collisions:0 txqueuelen:1000
              RX bytes:24414 (23.8 KiB)  TX bytes:18545 (18.1 KiB)
    eth1      Link encap:Ethernet  HWaddr 00:50:56:3A:AE:95
              inet addr:192.168.3.2  Bcast:192.168.3.255  Mask:255.255.255.0
              inet6 addr: fe80::250:56ff:fe3a:ae95/64 Scope:Link
              UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
              RX packets:482561 errors:0 dropped:0 overruns:0 frame:0
              TX packets:450616 errors:0 dropped:0 overruns:0 carrier:0
              collisions:0 txqueuelen:1000
              RX bytes:483728272 (461.3 MiB)  TX bytes:501489666 (478.2 MiB)
    eth3      Link encap:Ethernet  HWaddr 00:50:56:24:40:AB
              inet addr:192.168.5.2  Bcast:192.168.5.255  Mask:255.255.255.0
              inet6 addr: fe80::250:56ff:fe24:40ab/64 Scope:Link
              UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
              RX packets:4944 errors:0 dropped:0 overruns:0 frame:0
              TX packets:3817 errors:0 dropped:0 overruns:0 carrier:0
              collisions:0 txqueuelen:1000
              RX bytes:6186232 (5.8 MiB)  TX bytes:346478 (338.3 KiB)
    eth4      Link encap:Ethernet  HWaddr 00:50:56:3F:77:AA
              inet addr:192.168.1.1  Bcast:192.168.1.255  Mask:255.255.255.0
              inet6 addr: fe80::250:56ff:fe3f:77aa/64 Scope:Link
              UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
              RX packets:1222 errors:0 dropped:0 overruns:0 frame:0
              TX packets:978 errors:0 dropped:0 overruns:0 carrier:0
              collisions:0 txqueuelen:1000
              RX bytes:205198 (200.3 KiB)  TX bytes:168464 (164.5 KiB)
    eth6      Link encap:Ethernet  HWaddr 00:50:56:22:72:E3
              inet addr:192.168.1.3  Bcast:192.168.1.255  Mask:255.255.255.0
              inet6 addr: fe80::250:56ff:fe22:72e3/64 Scope:Link
              UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
              RX packets:354 errors:0 dropped:0 overruns:0 frame:0
              TX packets:116 errors:0 dropped:0 overruns:0 carrier:0
              collisions:0 txqueuelen:1000
              RX bytes:54390 (53.1 KiB)  TX bytes:17992 (17.5 KiB)
    lo        Link encap:Local Loopback
              inet addr:127.0.0.1  Mask:255.0.0.0
              inet6 addr: ::1/128 Scope:Host
              UP LOOPBACK RUNNING  MTU:16436  Metric:1
              RX packets:194338 errors:0 dropped:0 overruns:0 frame:0
              TX packets:194338 errors:0 dropped:0 overruns:0 carrier:0
              collisions:0 txqueuelen:0
              RX bytes:920534042 (877.8 MiB)  TX bytes:920534042 (877.8 MiB)
    *****************************************************************************ORACLE ASM AND MULTIPATH INFO********************************************
    /etc/init.d/oracleasm listdisks
    VOTE1
    VOTE2
    VOTE3
    vote3 (14f504e46494c45523434517a65422d4b6364682d57544f65) dm-8 OPNFILER,VIRTUAL-DISK
    size=3.0G features='0' hwhandler='0' wp=rw
    `-+- policy='round-robin 0' prio=1 status=active
      `- 3:0:0:2 sdh 8:112 active ready running
    vote2 (14f504e46494c45526e6c6a48324a2d6a4347462d7a465074) dm-6 OPNFILER,VIRTUAL-DISK
    size=3.0G features='0' hwhandler='0' wp=rw
    `-+- policy='round-robin 0' prio=1 status=active
      `- 3:0:0:1 sdg 8:96  active ready running
    vote1 (14f504e46494c45525763646753422d594262512d414a6275) dm-7 OPNFILER,VIRTUAL-DISK
    size=3.0G features='0' hwhandler='0' wp=rw
    `-+- policy='round-robin 0' prio=1 status=active
      `- 3:0:0:0 sdf 8:80  active ready running
    If any more information is necessary please request and I will provide, as you can see there is more than enough memory and disk space for the installation. The only exception being that I am using a different 'oraInventory', 'gridhome', and 'oraBase'. I have looked closely at the output and the problem seems to be a file called 'ljavavm12', I have highlighted the line in bold above in the log output. Any help with this would be greatly appreciated.
    Regards,
    Alex

    Resolved my own issue,
    for anyone else having the same problem, here is how it was resolved:
    ljavavm12 is part of libjavavm12.a, for some reason this file was not copied into the $GRID_HOME, after doing so make went through fine.
    'cp /opt/oragrid/javavm/jdk/jdk7/lib/libjavavm12.a /opt/oragrid/lib/'
    Alex,

  • System Copy on NW 7.3

    Hi Guys,
    I am stuck with an issue from past few days. We are performing a system copy of a PI system from hardware server to a virtual box.
    The export was completed successfully. However, during import it is stuck on the 30th step "Perform Initial java engine configuration".
    Here are relevant details:
    Source SID: PIN
    Source Db: Oracle (11.2.0.2)
    Target SID: PIN
    Target Db: Oracle (11.2.0.2)
    Error which is displayed:
    Last error reported by the step: Creating a license signature failed: ===...could not load SSF library \\server name\saploc\\D00\exe\sapcrypto.dll .).
    Observation: From where it is picking D00 is unknown. The SID is PIN.
    Excerpts from the log dev_likey:
    OCIStmtExecute() failed with -1=OCI_ERROR
       SQL error 942:
    *** ERROR => ORA-942 when accessing table SAPUSER
    [dbsloci.c    14848]
    Disconnecting from connection 0 ...
    Closing user session (con=0, svc=0000000008B9D3E0, usr=0000000008BF2140)
    Now I'm disconnected from ORACLE
    Info: 99=DBSL_ERR_DB, oerr=942, try to connect with default password.
    Connecting as SAPSR3/<pwd>@PIN on connection 0 (nls_hdl 0) ... (dbsl 720 140910)
    Nls CharacterSet                 NationalCharSet              Env        Err        ErrBt    
      0 UTF8                                                      0000000008B6AD30 0000000008B9A4C8 0000000008B9B588
    Starting user session: OCISessionBegin(con=0, usr='SAPSR3', svc=0000000008B9D3E0, srv=0000000008B9DEC0, usr=0000000008BF2140)
       OCISessionBegin(OCI_DEFAULT) failed with SQL error 1017:
       ORA-01017: invalid username/password; logon denied                                                                       
    *** ERROR => CONNECT failed with sql error '1017'
    [dbsloci.c    14329]
    ***LOG BY2=> sql error 1017   performing CON [dblink       540]
    ***LOG BY0=> ORA-01017: invalid username/password; logon denied [dblink       540]
    *** ERROR => saplikey: failed to connect to the database. [saplikey_w.c 762]
    I have tried login through sqlplus via sapsr3 and it worked.
    Any clues?
    Regards,
    Ankit

    I was able to resolve the issye yesterday itself.
    Here is the resolution:
    1.  Updated the kernel
    2. OPS$mechanism is replaced by SSFS. Followed a link
    SSFS (Secure Storage in File System) configuration in Oracle db for SAP
    rsecssfx pf=<drive>:\usr\sap\<SID>\SYS\profile\DEFAULT.PFL put DB_CONNECT/DEFAULT_DB_USER SAPSR3 -plain
              rsecssfx pf=<drive>:\usr\sap\<SID>\SYS\profile\DEFAULT.PFL put DB_CONNECT/DEFAULT_DB_PASSWORD XXXXXXXX
    After the above steps were done, the installation moved.
    Regards,
    Ankit

  • SMON cleanup process taking longer time (cleaning temporary extents)

    Os info:     Solaris 5.8
    Oracle info:     9.2.0.8
    Message:     
    We are in the process of testing our upgrade from 9.2.0.8 to 11.2.0.3. As a part of this, we have cloned our production database and started cleaning up of unused objects on the new instance.
    Dropped an Audit Table (27g table size & 11g index size) from SYSTEM tablespace as a part of 11g upgrade tasks. As you know SYSTEM tablespace is under Dictionary managed tablespace and drop table ran for about 2 weeks.
    We are unable to bring this database gracefully, as SMON is still cleaning the temporary extents. This cleanup seems to be very slow and will take about 40+ days.
    Created SR regarding this issue, to speed up the SMON clean up process.. but no luck.
    At this moment we are looking for a solution to
    1#Is there a way to speed up the SMON cleanup process (temporary extents)?
    OR
    2# Is there a way to bypass the cleanup of this temporary segment and bring the database gracefully?
    No Luck from Oracle Support...
    Googled it but no luck.
    Just want to check with the folks over here and see if there is any solution for this issue.
    Thanks in advance for your time and efforts on this forum. Appreciate your assistance!
    Thanks,
    Raghu Yella.

    Just passing by.
    >
    If the data is not needed, drop the index, truncate the table and then drop the table (as rp0428 noted above)
    >
    Srini and rp0428, what do you guys know that I don't? A "drop table" (which is what the OP indicated was run) should drop any data (effectively the same thing as a truncate) and all associated indexes. Does the truncate offer some performance benefit in this case?
    And I'm still trying to wrap my head around a 40 day drop. The statement, "started cleaning up of unused objects" scares me if there is more backup tables in this bloated SYSTEM tablespace. If that is the case (and maybe regardless), I wonder if it would just be better to create a fresh "clean" database and then with transportable tablespaces reattach all the DATA tablespaces to this new database. Fresh start.

Maybe you are looking for

  • Error in CIF for Purchase Info Records

    Hi, I am trying to CIF Purchase Info record from R/3 to APO but its getting stuck during activation "generating delta Model". Can anyone please help in this regards, I have already read the link related to BD22 but which message type do we need to de

  • Migration eines Imac

    Maybe someone can help me. I am waiting so that the new iMac is finally order and configurable. There is November and December - but Apple has the year forgotten and which have no order and configuration is possible, is the hope of 2012 probably disa

  • Installing OS on 2nd internal HD

    Hi. I have a second internal hard drive that has data on it. Currently, there is no OS on this drive. I would like to install OS X 10.4 on it so that I can boot to it if needed (repair on 1st hard drive, etc). Is it possible to use my OS X install DV

  • Problem printing Acrobat.pdf files get a VMerror error. Upgraded to Mac OS X10.10 Yosemite

    I really need to be able to print Acrobat.pdf files and printer window indicates pdf is being sent to the printer. Printed a test page and Word documents but not Acrobat.pdf. Test page indicated I have Driver Name: HP338_6PPD and Driver Version: 19.8

  • Where do I download cs 5.5 from? I have a serial number.

    Where do I download cs 5.5 from? I have a serial number.