Oracle 8.1.7 setup fails

When I try to start the Oracle 8.1.7 install (On an NT4 platform), I get a Java error in jrew.RPT as follows:
Exception code: C0000005 ACCESS_VIOLATION
Is this an Oracle issue?

I have a similiar problem, but only on one hardware platform (Acer). Optima, Compaq and Toshiba are all fine (all running NT).
The only other difference is the service pack - it's failing on 6a, the others are all earlier releases. The Acer is higher spec PC by far.
Any help gratefully appreciated!
Carol

Similar Messages

  • Oracle ADF task flow setup failing- deployment issue

    Hi Experts,
    We are facing issue while deploying the ADF taskflow to Oracle webcenter portal/application server.
    We will need your help to get any pointers from your Oracle network to help resolve.
    Details of issue are as below.
    Please help ASAP.
    Problem Statement: Issue in the ADF taskflow while it is deployed on Oracle Webcenter Portal/Application server (the ADF taskflow is fetching data from PL/SQL procedure using table/record objects as OUT parameter, which is running fine in Jdeveloper).
    Problem Description:
    From ADF task flow we are invoking a PL/SQL procedure, which is returning a PL/SQL objects as an OUT parameter, some of these objects are of TABLE TYPE and one of RECORD TYPE. We are invoking this oracle procedure and fetching the object using jdbc. The object to which we are mapping this PL/SQL object is a custom java type object. We are using Jdeveloper 11.1.1.4 and Oracle ADF for this and we are able to successfully fetch the object using the code snippet #1 attached below.
    However, when we deploying the same code, i.e. the above ADF task flow in the Webcenter Portal server 11.1.1.4, inside the Webcenter portal application, it doesn’t work and give the below error, error snippet #2 below.
    Options tried: Initially we were using oracle.sql.STRUCT to handle the PL/SQL object, we tried changing this to weblogic.jdbc.wrapper.Struct and also java.sql.Struct, however we are still getting same error.
    The objective is to get the data from PL/SQL procedure in objects (record, table) as OUT parameters in ADF taskflow deployed on Oracle webcenter portal/application server.
    ******Code Snippet #1**************************
    txn = getDBTransaction();
    Connection con =
    ((DBTransactionImpl) txn).getPersistManagerConnection();
    st = (OracleCallableStatement) con.prepareCall(callfetchOA);
    st.setString(1, so_number);
    st.setString(2,
    generate_pdf); //generate_pdf should be passed as N in case of FetchOA and Y in case of Generate PDF
    st.setString(3, so_line_id);
    st.registerOutParameter(4, OracleTypes.STRUCT, headerTrxObj);
    st.registerOutParameter(5, OracleTypes.ARRAY, lineTrxTypeObj);
    st.registerOutParameter(6, OracleTypes.ARRAY, fetchFeeLineTypeObj);
    st.registerOutParameter(7, OracleTypes.ARRAY, fetchAdSizeTypeObj);
    st.registerOutParameter(8, OracleTypes.ARRAY, fetchChannelTypeObj);
    st.registerOutParameter(9, OracleTypes.ARRAY, fetchMarketTypeObj);
    st.registerOutParameter(10, OracleTypes.ARRAY, slaTypeObj);
    st.registerOutParameter(11, OracleTypes.NUMBER);
    st.registerOutParameter(12, OracleTypes.VARCHAR);
    st.execute();
    Object[] header = st.getSTRUCT(4).getAttributes();
    ***** error snippet #2**********************
    java.lang.ClassCastException: weblogic.jdbc.wrapper.Struct_oracle_sql_JAVA_STRUCT cannot be cast to oracle.sql.STRUCT
    at weblogic.jdbc.wrapper.CallableStatement_oracle_jdbc_driver_OracleCallableStatementWrapper.getSTRUCT(Unknown Source)
    at com.valassis.service.BaseAppModuleImpl.fetchOrder(BaseAppModuleImpl.java:1496)
    at com.valassis.model.beans.vo.OrderVO.fetchOrder(OrderVO.java:177)
    at com.valassis.model.beans.vo.OrderVO.testSaveOrder(OrderVO.java:399)
    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.sun.el.parser.AstValue.invoke(Unknown Source)
    at com.sun.el.MethodExpressionImpl.invoke(Unknown Source)
    at org.apache.myfaces.trinidad.component.MethodExpressionMethodBinding.invoke(MethodExpressionMethodBinding.java:46)
    at com.sun.faces.application.ActionListenerImpl.processAction(ActionListenerImpl.java:102)
    at org.apache.myfaces.trinidad.component.UIXCommand.broadcast(UIXCommand.java:190)
    at oracle.adf.view.rich.component.fragment.UIXRegion.broadcast(UIXRegion.java:148)
    at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent$1.run(ContextSwitchingComponent.java:92)
    at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent._processPhase(ContextSwitchingComponent.java:361)
    at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent.broadcast(ContextSwitchingComponent.java:96)
    at oracle.adf.view.rich.component.fragment.UIXInclude.broadcast(UIXInclude.java:102)
    at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent$1.run(ContextSwitchingComponent.java:92)
    at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent._processPhase(ContextSwitchingComponent.java:361)
    at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent.broadcast(ContextSwitchingComponent.java:96)
    at oracle.adf.view.rich.component.fragment.UIXInclude.broadcast(UIXInclude.java:96)
    at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.broadcastEvents(LifecycleImpl.java:879)
    at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:312)
    at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:185)
    at javax.faces.webapp.FacesServlet.service(FacesServlet.java:265)
    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 oracle.portlet.client.adapter.adf.ADFPortletFilter.doFilter(ADFPortletFilter.java:32)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at oracle.webcenter.framework.events.dispatcher.EventDispatcherFilter.doFilter(EventDispatcherFilter.java:44)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:205)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:106)
    at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:446)
    at oracle.adfinternal.view.faces.activedata.AdsFilter.doFilter(AdsFilter.java:60)
    at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:446)
    at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:271)
    at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:177)
    at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at oracle.wcps.client.PersonalizationFilter.doFilter(PersonalizationFilter.java:75)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at oracle.webcenter.content.integration.servlets.ContentServletFilter.doFilter(ContentServletFilter.java:168)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at oracle.webcenter.lifecycle.filter.LifecycleLockFilter.doFilter(LifecycleLockFilter.java:151)
    Thanks
    Phani

    Maybe this can help you: http://mike.hostetlerhome.com/2007/02/12/weblogic-oracle-and-blobs-oh-my/
    It shows how to obtain a vendor object from the weblogic wrapped instance.
    From the blog
    weblogic.jdbc.wrapper.Blob cast1 = (weblogic.jdbc.wrapper.Blob) o;
    BLOB myblob = (BLOB) cast1.getVendorObj();

  • Failed to start Oracle VM Server 2.2.2 - IOMMU setup failed

    Hi, all!
    After successful installation of Oracle VM Server 2.2.2 on PC with Intel Core 7 i've got error
    Panic on CPU 0:
    IOMMU setup failed but x2apic have enabled.
    After 5 seconds system will be rebooted.
    Any ideas?

    No, i didn't.
    I think, new hardware is not supported well by old Linux 5.3, on which OVS 2.2.2 is based.
    I installed Oracle VM 3.0.3 + patch. After resolving few issues with VM memory & kernel parameter my HVM VM works.

  • PASSWORDLESS SSH SETUP fails during Grid installation

    Hello,
    OS and VM setup:
    There are 2 base physical Oracle servers ( Model # Oracle SPARC T4-2 , Solaris 11.1 ). On both machine “Oracle VM for SPARC “ software is installed and logical domains are configured with Solaris 11.1. Oracle RAC 2 node cluster is being setup between the Logical Domain in each servers.
    Objective:
    We are planning to install and configure Oracle RAC 11g R2 (11.2.0.4) on two Oracle VM machines. Pre-installation check script (runcluvfy.sh) on RAC node is completed without errors/warning.
    Issue:
    During oracle grid infrastructure installation, SSH setup failing and on shell prompt is showing JVM CRASH AT LIB.....
    I am not able to proceed with RAC setup due to this issue. 
    Your suggestions/assistance will be greatly appreciated.
    Thanks.

    Hello,
    Thanks for your reponse. Please find below OUI log:
    -------------------------------------------------------- OUI Log ---------------------------------------------------------
    Using paramFile: /u01/Stage/grid/install/oraparam.ini
    Checking Temp space: must be greater than 180 MB.   Actual 190266 MB    Passed
    Checking swap space: must be greater than 150 MB.   Actual 196682 MB    Passed
    Checking monitor: must be configured to display at least 256 colors    Failed <<<<
        >>> Could not execute /usr/bin/xdpyinfo
    Some requirement checks failed. You must fulfill these requirements before
    continuing with the installation,Continue? (y/n) [n]
    >>> Ignoring required pre-requisite failures. Continuing...
    The commandline for unzip:
    /u01/Stage/grid/install/unzip -qqqo ../stage/Components/oracle.jdk/1.5.0.51.10/1/DataFiles/\*.jar -d /tmp/OraInstall2013-10-30_10-00-46AM
    Using the umask value '022' available from oraparam.ini
    Execvp of the child jre : the cmdline is /tmp/OraInstall2013-10-30_10-00-46AM/jdk/jre/bin/java, and the argv is
    /tmp/OraInstall2013-10-30_10-00-46AM/jdk/jre/bin/java
    -Doracle.installer.library_loc=/tmp/OraInstall2013-10-30_10-00-46AM/oui/lib/solaris
    -Doracle.installer.oui_loc=/tmp/OraInstall2013-10-30_10-00-46AM/oui
    -Doracle.installer.bootstrap=TRUE
    -Doracle.installer.startup_location=/u01/Stage/grid/install
    -Doracle.installer.jre_loc=/tmp/OraInstall2013-10-30_10-00-46AM/jdk/jre
    -Doracle.installer.nlsEnabled="TRUE"
    -Doracle.installer.prereqConfigLoc=
    -Doracle.installer.unixVersion=5.11
    -Doracle.install.setup.workDir=/u01/Stage/grid
    -Dawt.toolkit=sun.awt.X11.XToolkit
    -d64
    -mx150m
    -cp
    /tmp/OraInstall2013-10-30_10-00-46AM::/tmp/OraInstall2013-10-30_10-00-46AM/ext/jlib/remoteinterfaces.jar:/tmp/OraInstall2013-10-30_10-00-46AM/ext/jlib/instcommon.jar:/tmp/OraInstall2013-10-30_10-00-46AM/ext/jlib/instcrs.jar:/tmp/OraInstall2013-10-30_10-00-46AM/ext/jlib/ssh.jar:/tmp/OraInstall2013-10-30_10-00-46AM/ext/jlib/installcommons_1.0.0b.jar:/tmp/OraInstall2013-10-30_10-00-46AM/ext/jlib/cvu.jar:/tmp/OraInstall2013-10-30_10-00-46AM/ext/jlib/OraPrereq.jar:/tmp/OraInstall2013-10-30_10-00-46AM/ext/jlib/jsch.jar:/tmp/OraInstall2013-10-30_10-00-46AM/ext/jlib/ojdbc5.jar:/tmp/OraInstall2013-10-30_10-00-46AM/ext/jlib/OraPrereqChecks.jar:/tmp/OraInstall2013-10-30_10-00-46AM/ext/jlib/prov_fixup.jar:/tmp/OraInstall2013-10-30_10-00-46AM/ext/jlib/orai18n-mapping.jar:/tmp/OraInstall2013-10-30_10-00-46AM/ext/jlib/orai18n-utility.jar:/tmp/OraInstall2013-10-30_10-00-46AM/oui/jlib/OraInstaller.jar:/tmp/OraInstall2013-10-30_10-00-46AM/oui/jlib/oneclick.jar:/tmp/OraInstall2013-10-30_10-00-46AM/oui/jlib/xmlparserv2.jar:/tmp/OraInstall2013-10-30_10-00-46AM/oui/jlib/share.jar:/tmp/OraInstall2013-10-30_10-00-46AM/oui/jlib/OraInstallerNet.jar:/tmp/OraInstall2013-10-30_10-00-46AM/oui/jlib/emCfg.jar:/tmp/OraInstall2013-10-30_10-00-46AM/oui/jlib/emocmutl.jar:/tmp/OraInstall2013-10-30_10-00-46AM/oui/jlib/OraPrereq.jar:/tmp/OraInstall2013-10-30_10-00-46AM/oui/jlib/jsch.jar:/tmp/OraInstall2013-10-30_10-00-46AM/oui/jlib/ssh.jar:/tmp/OraInstall2013-10-30_10-00-46AM/oui/jlib/remoteinterfaces.jar:/tmp/OraInstall2013-10-30_10-00-46AM/oui/jlib/http_client.jar:/tmp/OraInstall2013-10-30_10-00-46AM/oui/jlib/OraSuiteInstaller.jar:../stage/Components/oracle.swd.opatch/11.2.0.4.0/1/DataFiles/jlib/opatch.jar:../stage/Components/oracle.swd.opatch/11.2.0.4.0/1/DataFiles/jlib/opatchactions.jar:../stage/Components/oracle.swd.opatch/11.2.0.4.0/1/DataFiles/jlib/opatchprereq.jar:../stage/Components/oracle.swd.opatch/11.2.0.4.0/1/DataFiles/jlib/opatchutil.jar:/tmp/OraInstall2013-10-30_10-00-46AM/oui/jlib/OraCheckPoint.jar:/tmp/OraInstall2013-10-30_10-00-46AM/oui/jlib/InstImages.jar:/tmp/OraInstall2013-10-30_10-00-46AM/oui/jlib/InstHelp.jar:/tmp/OraInstall2013-10-30_10-00-46AM/oui/jlib/InstHelp_de.jar:/tmp/OraInstall2013-10-30_10-00-46AM/oui/jlib/InstHelp_es.jar:/tmp/OraInstall2013-10-30_10-00-46AM/oui/jlib/InstHelp_fr.jar:/tmp/OraInstall2013-10-30_10-00-46AM/oui/jlib/InstHelp_it.jar:/tmp/OraInstall2013-10-30_10-00-46AM/oui/jlib/InstHelp_ja.jar:/tmp/OraInstall2013-10-30_10-00-46AM/oui/jlib/InstHelp_ko.jar:/tmp/OraInstall2013-10-30_10-00-46AM/oui/jlib/InstHelp_pt_BR.jar:/tmp/OraInstall2013-10-30_10-00-46AM/oui/jlib/InstHelp_zh_CN.jar:/tmp/OraInstall2013-10-30_10-00-46AM/oui/jlib/InstHelp_zh_TW.jar:/tmp/OraInstall2013-10-30_10-00-46AM/oui/jlib/oracle_ice.jar:/tmp/OraInstall2013-10-30_10-00-46AM/oui/jlib/help4.jar:/tmp/OraInstall2013-10-30_10-00-46AM/oui/jlib/help4-nls.jar:/tmp/OraInstall2013-10-30_10-00-46AM/oui/jlib/ewt3.jar:/tmp/OraInstall2013-10-30_10-00-46AM/oui/jlib/ewt3-swingaccess.jar:/tmp/OraInstall2013-10-30_10-00-46AM/oui/jlib/ewt3-nls.jar:/tmp/OraInstall2013-10-30_10-00-46AM/oui/jlib/swingaccess.jar::/tmp/OraInstall2013-10-30_10-00-46AM/oui/jlib/jewt4.jar:/tmp/OraInstall2013-10-30_10-00-46AM/oui/jlib/jewt4-nls.jar:/tmp/OraInstall2013-10-30_10-00-46AM/oui/jlib/orai18n-collation.jar:/tmp/OraInstall2013-10-30_10-00-46AM/oui/jlib/orai18n-mapping.jar:/tmp/OraInstall2013-10-30_10-00-46AM/oui/jlib/ojmisc.jar:/tmp/OraInstall2013-10-30_10-00-46AM/oui/jlib/xml.jar:/tmp/OraInstall2013-10-30_10-00-46AM/oui/jlib/srvm.jar:/tmp/OraInstall2013-10-30_10-00-46AM/oui/jlib/srvmasm.jar
    oracle.install.ivw.crs.driver.CRSInstaller
    -scratchPath
    /tmp/OraInstall2013-10-30_10-00-46AM
    -sourceLoc
    /u01/Stage/grid/install/../stage/products.xml
    -sourceType
    network
    -timestamp
    2013-10-30_10-00-46AM
    -formCluster
    INFO: Loading data from: jar:file:/tmp/OraInstall2013-10-30_10-00-46AM/ext/jlib/installcommons_1.0.0b.jar!/oracle/install/driver/oui/resource/ConfigCommandMappings.xml
    INFO: Loading beanstore from jar:file:/tmp/OraInstall2013-10-30_10-00-46AM/ext/jlib/installcommons_1.0.0b.jar!/oracle/install/driver/oui/resource/ConfigCommandMappings.xml
    INFO: Restoring class oracle.install.driver.oui.ConfigCmdMappings from jar:file:/tmp/OraInstall2013-10-30_10-00-46AM/ext/jlib/installcommons_1.0.0b.jar!/oracle/install/driver/oui/resource/ConfigCommandMappings.xml
    INFO: Loading beans from Xml Bean Store. [BeanStoreName:config-data]
    INFO: Setting value for the property:id in the bean:configcmd
    INFO: Setting value for the property:platformcmdmap in the bean:configcmd
    INFO: Setting value for the property:id in the bean:configcmd
    INFO: Setting value for the property:platformcmdmap in the bean:configcmd
    INFO: Setting value for the property:id in the bean:configcmd
    INFO: Setting value for the property:platformcmdmap in the bean:configcmd
    INFO: Setting value for the property:id in the bean:configcmd
    INFO: Setting value for the property:platformcmdmap in the bean:configcmd
    INFO: Setting value for the property:id in the bean:configcmd
    INFO: Setting value for the property:platformcmdmap in the bean:configcmd
    INFO: Setting value for the property:id in the bean:configcmd
    INFO: Setting value for the property:platformcmdmap in the bean:configcmd
    INFO: Setting value for the property:id in the bean:configcmd
    INFO: Setting value for the property:platformcmdmap in the bean:configcmd
    INFO: Setting value for the property:id in the bean:configcmd
    INFO: Setting value for the property:platformcmdmap in the bean:configcmd
    INFO: Setting value for the property:id in the bean:configcmd
    INFO: Setting value for the property:platformcmdmap in the bean:configcmd
    INFO: Setting value for the property:id in the bean:configcmd
    INFO: Setting value for the property:platformcmdmap in the bean:configcmd
    INFO: Setting value for the property:id in the bean:configcmd
    INFO: Setting value for the property:platformcmdmap in the bean:configcmd
    INFO: Setting value for the property:id in the bean:configcmd
    INFO: Setting value for the property:platformcmdmap in the bean:configcmd
    INFO: Setting value for the property:configcmds in the bean:configcmdmappings
    INFO: Inventory exists: false
    INFO: Registering setup bean
    INFO: Building Flow
    INFO: Loading condition class oracle.install.commons.flow.condition.SystemPropertyCondition
    INFO: Building the flow graph
    INFO: Loaded state AutoUpdatesOptionsUI
    INFO: Loaded state UpdatesListUI
    INFO: Loaded state finishupdates
    INFO: Building the flow graph
    INFO: Loaded state init
    INFO: Loaded state autoupdatesDecider
    INFO: Loaded state AutoUpdatesOptionsUI
    INFO: Loaded state UpdatesListUI
    INFO: Loaded state supportedOSCheck
    INFO: Loaded state ClusterInfoUI
    INFO: Loaded state InstallOptionsUI
    INFO: Loaded state ChecklistUI
    INFO: Loaded state InstallTypeUI
    INFO: Loaded state QuickInstallUI
    INFO: Loaded state productLanguage
    INFO: Loaded state flowDecider
    INFO: Loaded state CRSNodeSelectionUI
    INFO: Loaded state SCANInformationUI
    INFO: Loaded state getASMSNMPPassword
    INFO: Loaded state GridPlugPlayInfoUI
    INFO: Loaded state CRSNodeInformationUI
    INFO: Loaded state getSubnetInformation
    INFO: Loaded state ConfigWizard
    INFO: Loaded state NetworkInterfaceUI
    INFO: Loaded state StorageOptionUI
    INFO: Loaded state ASMDiskGroupOption
    INFO: Loaded state CreateASMDiskGroup
    INFO: Loaded state ASMInstanceCredentialsGUI
    INFO: Loaded state OCRStorageUI
    INFO: Loaded state VDSKStorageUI
    INFO: Loaded state FailureIsolationUI
    INFO: Loaded state getPrivilegedOSGroups
    INFO: Loaded state preInstallLocation
    INFO: Loaded state InstallLocationUI
    INFO: Loaded state CRSInstallLocationUI
    INFO: Loaded state inventory
    INFO: Loaded state prereqExecutionDecider
    INFO: Loaded state performChecks
    INFO: Loaded state showSummary
    INFO: Loaded state setup
    INFO: Loaded state finish
    INFO: Linking states
    INFO: State[ASMDiskGroupOption]: route=createdg; to=CreateASMDiskGroup
    INFO: State[ASMDiskGroupOption]: route=nocreatedg; to=ASMInstanceCredentialsGUI
    INFO: Condition of state[ASMDiskGroupOption]: route=mismatched; to=CreateASMDiskGroup
    INFO: State[ASMInstanceCredentialsGUI]: route=FRESH_HA_INSTALL; to=getPrivilegedOSGroups
    INFO: State[ASMInstanceCredentialsGUI]: route=IPMI_SUPPORTED; to=FailureIsolationUI
    INFO: State[ASMInstanceCredentialsGUI]: route=IPMI_UNSUPPORTED; to=getPrivilegedOSGroups
    INFO: Condition of state[ASMInstanceCredentialsGUI]: route=inventory; to=inventory
    INFO: Condition of state[ASMInstanceCredentialsGUI]: route=prereq; to=prereqExecutionDecider
    INFO: State[AutoUpdatesOptionsUI]: route=NO_AUTO_UPDATES; to=supportedOSCheck
    INFO: State[AutoUpdatesOptionsUI]: route=success; to=UpdatesListUI
    INFO: State[CRSInstallLocationUI]: route=INVENTORY_ABSENT; to=inventory
    INFO: State[CRSInstallLocationUI]: route=success; to=prereqExecutionDecider
    INFO: Condition of state[CRSInstallLocationUI]: route=matched; to=prereqExecutionDecider
    INFO: State[CRSNodeInformationUI]: route=success; to=getSubnetInformation
    INFO: State[CRSNodeSelectionUI]: route=GI_HOME_UPGRADE; to=getPrivilegedOSGroups
    INFO: State[CRSNodeSelectionUI]: route=NON_GI_HOME_UPGRADE; to=SCANInformationUI
    INFO: State[CRSNodeSelectionUI]: route=wizard; to=ConfigWizard
    INFO: State[ChecklistUI]: route=success; to=InstallTypeUI
    INFO: State[ClusterInfoUI]: route=success; to=QuickInstallUI
    INFO: State[ConfigWizard]: route=config; to=NetworkInterfaceUI
    INFO: State[ConfigWizard]: route=giupgrade; to=prereqExecutionDecider
    INFO: State[ConfigWizard]: route=upgrade; to=SCANInformationUI
    INFO: State[CreateASMDiskGroup]: route=success; to=ASMInstanceCredentialsGUI
    INFO: State[FailureIsolationUI]: route=success; to=getPrivilegedOSGroups
    INFO: State[GridPlugPlayInfoUI]: route=success; to=CRSNodeInformationUI
    INFO: State[InstallLocationUI]: route=INVENTORY_ABSENT; to=inventory
    INFO: State[InstallLocationUI]: route=success; to=prereqExecutionDecider
    INFO: State[InstallOptionsUI]: route=crs; to=InstallTypeUI
    INFO: State[InstallOptionsUI]: route=success; to=productLanguage
    INFO: State[InstallTypeUI]: route=advanced; to=productLanguage
    INFO: State[InstallTypeUI]: route=typical; to=ClusterInfoUI
    INFO: Condition of state[InstallTypeUI]: route=matched; to=productLanguage
    INFO: State[NetworkInterfaceUI]: route=success; to=StorageOptionUI
    INFO: State[OCRStorageUI]: route=success; to=VDSKStorageUI
    INFO: State[QuickInstallUI]: route=ASM; to=CreateASMDiskGroup
    INFO: State[QuickInstallUI]: route=inventory; to=inventory
    INFO: State[QuickInstallUI]: route=prereq; to=prereqExecutionDecider
    INFO: State[SCANInformationUI]: route=noupgradeASM; to=getPrivilegedOSGroups
    INFO: State[SCANInformationUI]: route=upgradeASM; to=getASMSNMPPassword
    INFO: State[StorageOptionUI]: route=ASM; to=ASMDiskGroupOption
    INFO: State[StorageOptionUI]: route=SHARED_FILE_SYSTEM; to=OCRStorageUI
    INFO: State[UpdatesListUI]: route=success; to=supportedOSCheck
    INFO: State[VDSKStorageUI]: route=IPMI_SUPPORTED; to=FailureIsolationUI
    INFO: State[VDSKStorageUI]: route=IPMI_UNSUPPORTED; to=getPrivilegedOSGroups
    INFO: State[autoupdatesDecider]: route=AUTO_UPDATES_DISABLE; to=supportedOSCheck
    INFO: State[autoupdatesDecider]: route=AUTO_UPDATES_STATE_SKIP; to=supportedOSCheck
    INFO: State[autoupdatesDecider]: route=success; to=AutoUpdatesOptionsUI
    INFO: Condition of state[autoupdatesDecider]: route=matched; to=InstallOptionsUI
    INFO: State[flowDecider]: route=FRESH_CRS_INSTALL; to=GridPlugPlayInfoUI
    INFO: State[flowDecider]: route=FRESH_HA_INSTALL; to=CreateASMDiskGroup
    INFO: State[flowDecider]: route=SWONLY_INSTALL; to=getPrivilegedOSGroups
    INFO: State[flowDecider]: route=UPGRADE_CRS; to=CRSNodeSelectionUI
    INFO: State[flowDecider]: route=UPGRADE_HA; to=getASMSNMPPassword
    INFO: State[flowDecider]: route=UPGRADE_HA_NO_ASM_PASS; to=getPrivilegedOSGroups
    INFO: State[getASMSNMPPassword]: route=success; to=getPrivilegedOSGroups
    INFO: State[getPrivilegedOSGroups]: route=success; to=preInstallLocation
    INFO: Condition of state[getPrivilegedOSGroups]: route=matched; to=preInstallLocation
    INFO: State[getSubnetInformation]: route=success; to=NetworkInterfaceUI
    INFO: State[getSubnetInformation]: route=wizard; to=ConfigWizard
    INFO: State[init]: route=DOWNLOAD_UPDATES_ONLY; to=AutoUpdatesOptionsUI
    INFO: State[init]: route=success; to=autoupdatesDecider
    INFO: State[inventory]: route=success; to=prereqExecutionDecider
    INFO: State[performChecks]: route=success; to=showSummary
    INFO: State[preInstallLocation]: route=CRS_NO; to=InstallLocationUI
    INFO: State[preInstallLocation]: route=CRS_YES; to=CRSInstallLocationUI
    INFO: Condition of state[preInstallLocation]: route=matched; to=CRSInstallLocationUI
    INFO: State[prereqExecutionDecider]: route=executeprereqs; to=performChecks
    INFO: State[prereqExecutionDecider]: route=ignoreprereqs; to=showSummary
    INFO: State[productLanguage]: route=productlanguage_yes; to=flowDecider
    INFO: Condition of state[productLanguage]: route=matched; to=flowDecider
    INFO: State[setup]: route=success; to=finish
    INFO: State[showSummary]: route=success; to=setup
    INFO: State[supportedOSCheck]: route=success; to=InstallOptionsUI
    INFO: State[AutoUpdatesOptionsUI]: route=NO_AUTO_UPDATES; to=finishupdates
    INFO: State[AutoUpdatesOptionsUI]: route=success; to=UpdatesListUI
    INFO: State[UpdatesListUI]: route=DOWNLOAD_UPDATES_FINISHED; to=finishupdates
    INFO: Successfully built the flow
    INFO: Opening bean stores from which the beans can be loaded
    INFO: Loading beanstore from a given input stream
    INFO: Translating external format into raw format
    INFO: Loading flow data beans
    INFO: Loading beans from Properties Bean Store. [BeanStoreName:beanstore]
    INFO: Setting value for the property:oracle_install_crs_ClusterNodeList in the bean:CRSInstallSettings
    INFO: Setting value for the property:ORACLE_HOME in the bean:CRSInstallSettings
    INFO: Setting value for the property:ORACLE_BASE in the bean:CRSInstallSettings
    INFO: Setting value for the property:CRSInstallSettings in the bean:CRSSetupBean
    INFO: Setting value for the property:oracle_install_asm_DiskGroup in the bean:ASMSettings
    INFO: Setting value for the property:ASMSettings in the bean:CRSSetupBean
    INFO: Setting value for the property:ORACLE_HOME in the bean:HAInstallSettings
    INFO: Setting value for the property:ORACLE_BASE in the bean:HAInstallSettings
    INFO: Setting value for the property:HAInstallSettings in the bean:CRSSetupBean
    INFO: Setting value for the property:CentralInventorySettings in the bean:CRSSetupBean
    INFO: Setting value for the property:oracle_install_autoupdates_myOracleSupportCredentials in the bean:AutoUpdatesInstallSettings
    INFO: Setting value for the property:oracle_install_autoupdates_httpProxySettings in the bean:AutoUpdatesInstallSettings
    INFO: Setting value for the property:AutoUpdatesInstallSettings in the bean:CRSSetupBean
    INFO: Setting value for the property:OCMSettings in the bean:CRSSetupBean
    INFO: Loading beans from Xml Bean Store. [BeanStoreName:beanstore]
    INFO: Setting value for the property:oracle_install_crs_ClusterNodeList in the bean:CRSInstallSettings
    INFO: Setting value for the property:oracle_install_crs_SCANPortNumber in the bean:CRSInstallSettings
    INFO: Setting value for the property:oracle_install_crs_VotingDiskRedundancy in the bean:CRSInstallSettings
    INFO: Setting value for the property:oracle_install_crs_OCRRedundancy in the bean:CRSInstallSettings
    INFO: Setting value for the property:ORACLE_HOME in the bean:CRSInstallSettings
    INFO: Setting value for the property:ORACLE_BASE in the bean:CRSInstallSettings
    INFO: Setting value for the property:CRSInstallSettings in the bean:CRSSetupBean
    INFO: Setting value for the property:oracle_install_asm_DiskGroupAUSize in the bean:oracle_install_asm_DiskGroup
    INFO: Setting value for the property:oracle_install_asm_DiskGroup in the bean:ASMSettings
    INFO: Setting value for the property:ASMSettings in the bean:CRSSetupBean
    INFO: Setting value for the property:ORACLE_HOME in the bean:HAInstallSettings
    INFO: Setting value for the property:ORACLE_BASE in the bean:HAInstallSettings
    INFO: Setting value for the property:HAInstallSettings in the bean:CRSSetupBean
    INFO: Setting value for the property:CentralInventorySettings in the bean:CRSSetupBean
    INFO: Setting value for the property:oracle_install_autoupdates_myOracleSupportCredentials in the bean:AutoUpdatesInstallSettings
    INFO: Setting value for the property:oracle_install_autoupdates_httpProxySettings in the bean:AutoUpdatesInstallSettings
    INFO: Setting value for the property:AutoUpdatesInstallSettings in the bean:CRSSetupBean
    INFO: Set value for bean CRSSetupBean
    INFO: Loading beans from Properties Bean Store. [BeanStoreName:beanstore]
    INFO: Setting value for the property:ORACLE_HOME in the bean:HAInstallSettings
    INFO: Setting value for the property:ORACLE_BASE in the bean:HAInstallSettings
    INFO: Loading beans from Xml Bean Store. [BeanStoreName:beanstore]
    INFO: Loading beans from Properties Bean Store. [BeanStoreName:beanstore]
    INFO: Setting value for the property:oracle_install_crs_ClusterNodeList in the bean:CRSInstallSettings
    INFO: Setting value for the property:ORACLE_HOME in the bean:CRSInstallSettings
    INFO: Setting value for the property:ORACLE_BASE in the bean:CRSInstallSettings
    INFO: Loading beans from Xml Bean Store. [BeanStoreName:beanstore]
    INFO: Loading beans from Properties Bean Store. [BeanStoreName:beanstore]
    INFO: Setting value for the property:oracle_install_autoupdates_myOracleSupportCredentials in the bean:AutoUpdatesInstallSettings
    INFO: Setting value for the property:oracle_install_autoupdates_httpProxySettings in the bean:AutoUpdatesInstallSettings
    INFO: Loading beans from Xml Bean Store. [BeanStoreName:beanstore]
    INFO: Loading beans from Properties Bean Store. [BeanStoreName:beanstore]
    INFO: Loading beans from Xml Bean Store. [BeanStoreName:beanstore]
    INFO: Loading beans from Properties Bean Store. [BeanStoreName:beanstore]
    INFO: Loading beans from Xml Bean Store. [BeanStoreName:beanstore]
    INFO: Loading beans from Properties Bean Store. [BeanStoreName:beanstore]
    INFO: Loading beans from Xml Bean Store. [BeanStoreName:beanstore]
    INFO: Loading beans from Properties Bean Store. [BeanStoreName:beanstore]
    INFO: Loading beans from Xml Bean Store. [BeanStoreName:beanstore]
    INFO: Closing bean stores from which the beans can be loaded
    INFO: Registering the flow views
    INFO: Adding View[type: oracle.install.commons.base.interview.common.view.PrereqGUI viewId: null uiType: null]
    INFO: oracle.install.commons.base.interview.common.view.PrereqGUI added to View Type Registry with the key as [PrereqUI]
    INFO: Adding View[type: oracle.install.commons.base.interview.common.view.SummaryGUI viewId: null uiType: null]
    INFO: oracle.install.commons.base.interview.common.view.SummaryGUI added to View Type Registry with the key as [SummaryUI]
    INFO: Adding View[type: oracle.install.commons.base.interview.common.view.SetupGUI viewId: null uiType: null]
    INFO: oracle.install.commons.base.interview.common.view.SetupGUI added to View Type Registry with the key as [SetupUI]
    INFO: Adding View[type: oracle.install.ivw.common.view.InventoryUI viewId: null uiType: null]
    INFO: oracle.install.ivw.common.view.InventoryUI added to View Type Registry with the key as [InventoryUI]
    INFO: Adding View[type: oracle.install.ivw.common.view.ProductLanguageGUI viewId: ProductLanguageUI uiType: null]
    INFO: oracle.install.ivw.common.view.ProductLanguageGUI added to View Type Registry with the key as [ProductLanguageUI]
    INFO: Adding View[type: oracle.install.ivw.crs.view.FinishGUI viewId: null uiType: null]
    INFO: oracle.install.ivw.crs.view.FinishGUI added to View Type Registry with the key as [FinishUI]
    INFO: Adding View[type: oracle.install.ivw.crs.view.InstallOptionsUI viewId: null uiType: null]
    INFO: oracle.install.ivw.crs.view.InstallOptionsUI added to View Type Registry with the key as [InstallOptionsUI]
    INFO: Adding View[type: oracle.install.ivw.crs.view.ChecklistGUI viewId: ChecklistUI uiType: null]
    INFO: oracle.install.ivw.crs.view.ChecklistGUI added to View Type Registry with the key as [ChecklistUI]
    INFO: Adding View[type: oracle.install.ivw.crs.view.InstallTypeGUI viewId: InstallTypeUI uiType: null]
    INFO: oracle.install.ivw.crs.view.InstallTypeGUI added to View Type Registry with the key as [InstallTypeUI]
    INFO: Adding View[type: oracle.install.ivw.crs.view.QuickInstallGUI viewId: QuickInstallUI uiType: null]
    INFO: oracle.install.ivw.crs.view.QuickInstallGUI added to View Type Registry with the key as [QuickInstallUI]
    INFO: Adding View[type: oracle.install.ivw.crs.view.InstallLocationUI viewId: null uiType: null]
    INFO: oracle.install.ivw.crs.view.InstallLocationUI added to View Type Registry with the key as [InstallLocationUI]
    INFO: Adding View[type: oracle.install.ivw.crs.view.CRSInstallLocationGUI viewId: CRSInstallLocationUI uiType: null]
    INFO: oracle.install.ivw.crs.view.CRSInstallLocationGUI added to View Type Registry with the key as [CRSInstallLocationUI]
    INFO: Adding View[type: oracle.install.ivw.crs.view.GridPlugPlayInfoUI viewId: null uiType: null]
    INFO: oracle.install.ivw.crs.view.GridPlugPlayInfoUI added to View Type Registry with the key as [GridPlugPlayInfoUI]
    INFO: Adding View[type: oracle.install.ivw.crs.view.ClusterConfigGUI viewId: ClusterConfigUI uiType: null]
    INFO: oracle.install.ivw.crs.view.ClusterConfigGUI added to View Type Registry with the key as [ClusterConfigUI]
    INFO: Adding View[type: oracle.install.ivw.crs.view.NetworkInterfaceUI viewId: null uiType: null]
    INFO: oracle.install.ivw.crs.view.NetworkInterfaceUI added to View Type Registry with the key as [NetworkInterfaceUI]
    INFO: Adding View[type: oracle.install.ivw.crs.view.StorageOptionUI viewId: null uiType: null]
    INFO: oracle.install.ivw.crs.view.StorageOptionUI added to View Type Registry with the key as [StorageOptionUI]
    INFO: Adding View[type: oracle.install.ivw.crs.view.ASMDiskGroupCreationGUI viewId: ASMDiskGroupCreationUI uiType: null]
    INFO: oracle.install.ivw.crs.view.ASMDiskGroupCreationGUI added to View Type Registry with the key as [ASMDiskGroupCreationUI]
    INFO: Adding View[type: oracle.install.ivw.crs.view.OCRStorageUI viewId: null uiType: null]
    INFO: oracle.install.ivw.crs.view.OCRStorageUI added to View Type Registry with the key as [OCRStorageUI]
    INFO: Adding View[type: oracle.install.ivw.crs.view.VDSKStorageUI viewId: null uiType: null]
    INFO: oracle.install.ivw.crs.view.VDSKStorageUI added to View Type Registry with the key as [VDSKStorageUI]
    INFO: Adding View[type: oracle.install.ivw.crs.view.FailureIsolationUI viewId: null uiType: null]
    INFO: oracle.install.ivw.crs.view.FailureIsolationUI added to View Type Registry with the key as [FailureIsolationUI]
    INFO: Adding View[type: oracle.install.ivw.crs.view.ASMInstanceCredentialsGUI viewId: null uiType: null]
    INFO: oracle.install.ivw.crs.view.ASMInstanceCredentialsGUI added to View Type Registry with the key as [ASMInstanceCredentialsGUI]
    INFO: Adding View[type: oracle.install.ivw.crs.view.CRSNodeSelectionUI viewId: null uiType: null]
    INFO: oracle.install.ivw.crs.view.CRSNodeSelectionUI added to View Type Registry with the key as [CRSNodeSelectionUI]
    INFO: Adding View[type: oracle.install.ivw.crs.view.SCANInformationUI viewId: null uiType: null]
    INFO: oracle.install.ivw.crs.view.SCANInformationUI added to View Type Registry with the key as [SCANInformationUI]
    INFO: Adding View[type: oracle.install.ivw.crs.view.PrivilegedOSGroupsGUI viewId: null uiType: null]
    INFO: oracle.install.ivw.crs.view.PrivilegedOSGroupsGUI added to View Type Registry with the key as [PrivilegedOSGroupsUI]
    INFO: Adding View[type: oracle.install.ivw.crs.view.ClusterInfoUI viewId: ClusterInfoUI uiType: null]
    INFO: oracle.install.ivw.crs.view.ClusterInfoUI added to View Type Registry with the key as [ClusterInfoUI]
    INFO: Adding View[type: oracle.install.ivw.crs.view.ASMSNMPPasswordGUI viewId: ASMSNMPPasswordGUI uiType: null]
    INFO: oracle.install.ivw.crs.view.ASMSNMPPasswordGUI added to View Type Registry with the key as [ASMSNMPPasswordGUI]
    INFO: Adding View[type: oracle.install.ivw.common.view.AutoUpdatesOptionsUI viewId: AutoUpdatesOptionsUI uiType: null]
    INFO: oracle.install.ivw.common.view.AutoUpdatesOptionsUI added to View Type Registry with the key as [AutoUpdatesOptionsUI]
    INFO: Adding View[type: oracle.install.ivw.common.view.UpdatesListUI viewId: UpdatesListUI uiType: null]
    INFO: oracle.install.ivw.common.view.UpdatesListUI added to View Type Registry with the key as [UpdatesListUI]
    INFO: Adding View[type: oracle.install.ivw.common.view.FinishUpdatesUI viewId: FinishUpdatesUI uiType: null]
    INFO: oracle.install.ivw.common.view.FinishUpdatesUI added to View Type Registry with the key as [FinishUpdatesUI]
    INFO: Adding View[type: oracle.install.ivw.crs.view.ASMDiskGroupOptionGUI viewId: null uiType: null]
    INFO: oracle.install.ivw.crs.view.ASMDiskGroupOptionGUI added to View Type Registry with the key as [ASMDiskGroupOptionUI]
    INFO: Initial values of Setup Properties :
    PROPERTY                                               VALUE                                     
    ASMSettings                                            oracle.install.asm.bean.ASMSettings@6124e9
                                                            35                                        
    AutoUpdatesInstallSettings                             oracle.install.ivw.common.bean.AutoUpdates
                                                            InstallSettings@3c03dfcb                  
    COLLECTOR_IGNORE_CONFIGURATION                         false                                     
    COLLECTOR_IGNORE_FAILURES                              false                                     
    COLLECTOR_RESPONSE_FILE                                                                          
    CRSInstallSettings                                     oracle.install.ivw.crs.bean.CRSInstallSett
                                                            ings@1fbbc779                             
    CentralInventorySettings                               oracle.install.ivw.common.bean.CentralInve
                                                            ntorySettings@3435ec9                     
    ClusterNodes                                           {}                                        
    ClusterwareType                                        UNKNOWN                                   
    DECLINE_SECURITY_UPDATES                               false                                     
    FROM_LOCATION                                          /u01/Stage/grid/install/../stage/products.
                                                            xml                                       
    HAInstallSettings                                      oracle.install.ivw.ha.bean.HAInstallSettin
                                                            gs@1faac07d                               
    MYORACLESUPPORT_PASSWORD                               *Protected value, not to be logged*       
    MYORACLESUPPORT_USERNAME                                                                         
    OCMSettings                                            oracle.install.ivw.common.bean.OCMSettings
                                                            @411b1d80                                 
    ORACLE_BASE                                            /u01/app/oracle/product/11.2.0.4/base     
    ORACLE_HOME                                            /u01/app/oracle/product/11.2.0.4/grid     
    ORACLE_HOSTNAME                                        oradbracvm1.mrmwr.gov.om                  
    PROXY_HOST                                                                                       
    PROXY_PORT                                                                                       
    PROXY_PWD                                              *Protected value, not to be logged*       
    PROXY_USER                                                                                       
    SECURITY_UPDATES_VIA_MYORACLESUPPORT                   true                                      
    SELECTED_LANGUAGES                                     {"en"}                                    
    oracle_install_WindowsSystemDirectory                                                            
    oracle_install_asm_DiskGroup                           oracle.install.asm.bean.DiskGroupSettings@
                                                            3e4ac866                                  
    oracle_install_asm_DiskGroupAUSize                     1                                         
    oracle_install_asm_MigrateASM                          false                                     
    oracle_install_asm_UseExistingDG                       false                                     
    oracle_install_autoupdates_httpProxyPort               0                                         
    oracle_install_autoupdates_httpProxySettings           oracle.install.ivw.common.bean.HttpProxySe
                                                            ttings@2bf09a31                           
    oracle_install_autoupdates_myOracleSupportCredentials  oracle.install.ivw.common.bean.MyOracleSup
                                                            portSettings@2259a735                     
    oracle_install_autoupdates_selected                    false                                     
    oracle_install_crs_AdvancedInstall                     false                                     
    oracle_install_crs_AutoConfig                          false                                     
    oracle_install_crs_ClusterName                                                                   
    oracle_install_crs_ClusterNodeList                                                               
    oracle_install_crs_ConfigureGNS                        true                                      
    oracle_install_crs_LaunchASMCA                         false                                     
    oracle_install_crs_LaunchCRSInst                       false                                     
    oracle_install_crs_LaunchCRSUpgrd                      false                                     
    oracle_install_crs_LaunchCluvfy                        false                                     
    oracle_install_crs_LaunchRootBat                       false                                     
    oracle_install_crs_LaunchUpdateNodeList                false                                     
    oracle_install_crs_OCRLocations                        {}                                        
    oracle_install_crs_OCRRedundancy                       2                                         
    oracle_install_crs_SCANName                                                                      
    oracle_install_crs_SCANPortNumber                      0                                         
    oracle_install_crs_StorageOption                       0                                         
    oracle_install_crs_UseIPMI                             false                                     
    oracle_install_crs_VotingDiskLocations                 {}                                        
    oracle_install_crs_VotingDiskRedundancy                2                                         
    oracle_install_crs_isConfigWizard                      false                                     
    oracle_install_crs_isRolling                           true                                      
    INFO: Launching Oracle Grid Infrastructure
    INFO: Started executing the flow in INTERACTIVE mode
    INFO: Waiting for completion of background operations
    INFO: Finishing all forked tasks at state init
    INFO: Waiting for completion all forked tasks at state init
    INFO: All forked task are completed at state init
    INFO: Completed background operations
    INFO: Executing action at state init
    INFO: Completed executing action at state <init>
    INFO: Waiting for completion of background operations
    INFO: Completed background operations
    INFO: Moved to state <init>
    INFO: Waiting for completion of background operations
    INFO: Completed background operations
    INFO: Validating view at state <init>
    INFO: Completed validating view at state <init>
    INFO: Validating state <init>
    WARNING: Validation disabled for the state init
    INFO: Completed validating state <init>
    INFO: Verifying route success
    INFO: Checking condition at state <autoupdatesDecider>
    INFO: Successfully checked condition at state <autoupdatesDecider>
    INFO: Checking condition at state <InstallTypeUI>
    INFO: Successfully checked condition at state <InstallTypeUI>
    INFO: Waiting for completion of background operations
    INFO: Completed background operations
    INFO: Executing action at state autoupdatesDecider
    INFO: Completed executing action at state <autoupdatesDecider>
    INFO: Waiting for completion of background operations
    INFO: Completed background operations
    INFO: Moved to state <autoupdatesDecider>
    INFO: Waiting for completion of background operations
    INFO: Completed background operations
    INFO: Validating view at state <autoupdatesDecider>
    INFO: Completed validating view at state <autoupdatesDecider>
    INFO: Validating state <autoupdatesDecider>
    WARNING: Validation disabled for the state autoupdatesDecider
    INFO: Completed validating state <autoupdatesDecider>
    INFO: Reading shiphome metadata from /u01/Stage/grid/install/../stage/shiphomeproperties.xml
    INFO: Loading beanstore from file:/u01/Stage/grid/install/../stage/shiphomeproperties.xml
    INFO: Translating external format into raw format
    INFO: Restoring class oracle.install.driver.oui.ShiphomeMetadata from file:/u01/Stage/grid/install/../stage/shiphomeproperties.xml
    INFO: Loading beans from Xml Bean Store. [BeanStoreName:shiphome-metadata]
    INFO: Setting value for the property:properties in the bean:shiphome-metadata
    INFO: Verifying route success
    INFO: Get view named [AutoUpdatesOptionsUI]
    INFO: View for [AutoUpdatesOptionsUI] is oracle.install.ivw.common.view.AutoUpdatesOptionsUI[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=]
    INFO: Initializing view <AutoUpdatesOptionsUI> at state <AutoUpdatesOptionsUI>
    INFO: Completed initializing view <AutoUpdatesOptionsUI> at state <AutoUpdatesOptionsUI>
    INFO: Displaying view <AutoUpdatesOptionsUI> at state <AutoUpdatesOptionsUI>
    INFO: Completed displaying view <AutoUpdatesOptionsUI> at state <AutoUpdatesOptionsUI>
    INFO: Loading view <AutoUpdatesOptionsUI> at state <AutoUpdatesOptionsUI>
    INFO: Completed loading view <AutoUpdatesOptionsUI> at state <AutoUpdatesOptionsUI>
    INFO: Localizing view <AutoUpdatesOptionsUI> at state <AutoUpdatesOptionsUI>
    INFO: Completed localizing view <AutoUpdatesOptionsUI> at state <AutoUpdatesOptionsUI>
    INFO: Waiting for completion of background operations
    INFO: Completed background operations
    INFO: Executing action at state AutoUpdatesOptionsUI
    INFO: Completed executing action at state <AutoUpdatesOptionsUI>
    INFO: Waiting for completion of background operations
    INFO: Completed background operations
    INFO: Moved to state <AutoUpdatesOptionsUI>
    INFO: Waiting for completion of background operations
    INFO: Completed background operations
    INFO: Validating view at state <AutoUpdatesOptionsUI>
    INFO: Completed validating view at state <AutoUpdatesOptionsUI>
    INFO: Validating state <AutoUpdatesOptionsUI>
    INFO: Completed validating state <AutoUpdatesOptionsUI>
    INFO: No updates will be downloaded or applied
    INFO: Checking condition at state <InstallTypeUI>
    INFO: Successfully checked condition at state <InstallTypeUI>
    INFO: Verifying route NO_AUTO_UPDATES
    INFO: Checking condition at state <InstallTypeUI>
    INFO: Successfully checked condition at state <InstallTypeUI>
    INFO: Waiting for completion of background operations
    INFO: Completed background operations
    INFO: Executing action at state supportedOSCheck
    INFO: Completed executing action at state <supportedOSCheck>
    INFO: Waiting for completion of background operations
    INFO: Completed background operations
    INFO: Moved to state <supportedOSCheck>
    INFO: Waiting for completion of background operations
    INFO: Completed background operations
    INFO: Validating view at state <supportedOSCheck>
    INFO: Completed validating view at state <supportedOSCheck>
    INFO: Validating state <supportedOSCheck>
    INFO: Verifying target environment...
    INFO: Checking whether the IP address of the localhost could be determined...
    INFO: Completed verification of target environment.
    INFO: Verifying setup for installer validations
    INFO: Completed validating state <supportedOSCheck>
    INFO: Verifying route success
    INFO: Checking condition at state <InstallTypeUI>
    INFO: Successfully checked condition at state <InstallTypeUI>
    INFO: Get view named [InstallOptionsUI]
    INFO: View for [InstallOptionsUI] is oracle.install.ivw.crs.view.InstallOptionsUI@144683c2
    INFO: Initializing view <InstallOptionsUI> at state <InstallOptionsUI>
    INFO: Is CRS Installed false
    INFO: Completed initializing view <InstallOptionsUI> at state <InstallOptionsUI>
    INFO: Displaying view <InstallOptionsUI> at state <InstallOptionsUI>
    INFO: Completed displaying view <InstallOptionsUI> at state <InstallOptionsUI>
    INFO: Loading view <InstallOptionsUI> at state <InstallOptionsUI>
    INFO: Completed loading view <InstallOptionsUI> at state <InstallOptionsUI>
    INFO: Localizing view <InstallOptionsUI> at state <InstallOptionsUI>
    INFO: Completed localizing view <InstallOptionsUI> at state <InstallOptionsUI>
    INFO: Waiting for completion of background operations
    INFO: Completed background operations
    INFO: Executing action at state InstallOptionsUI
    INFO: InstallOption Action Entering and Exiting execute
    INFO: Completed executing action at state <InstallOptionsUI>
    INFO: Waiting for completion of background operations
    INFO: Completed background operations
    INFO: Moved to state <InstallOptionsUI>
    INFO: Waiting for completion of background operations
    INFO: Completed background operations
    INFO: CRS config selected
    INFO: Validating view at state <InstallOptionsUI>
    INFO: Completed validating view at state <InstallOptionsUI>
    INFO: Validating state <InstallOptionsUI>
    INFO: getInstallOption: CRS_CONFIG
    INFO: Is CRS Installed false
    INFO: isCRSInstalled: false
    INFO: isHAInstalled: false
    INFO: isCRSConfigured: false
    INFO: isHAConfigured: false
    INFO: isLocalCSSConfigured: false
    INFO: existingCRSOrLocalCSSVersion: null
    INFO: Completed validating state <InstallOptionsUI>
    INFO: Detecting system information
    INFO: InstallOptionsAction Actions.transition called
    INFO: Verifying route crs
    INFO: Checking condition at state <InstallTypeUI>
    INFO: Successfully checked condition at state <InstallTypeUI>
    INFO: Get view named [InstallTypeUI]
    INFO: View for [InstallTypeUI] is oracle.install.ivw.crs.view.InstallTypeGUI[,0,0,0x0,invalid,layout=java.awt.GridBagLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=]
    INFO: Initializing view <InstallTypeUI> at state <InstallTypeUI>
    INFO: Completed initializing view <InstallTypeUI> at state <InstallTypeUI>
    INFO: Displaying view <InstallTypeUI> at state <InstallTypeUI>
    INFO: Completed displaying view <InstallTypeUI> at state <InstallTypeUI>
    INFO: checking for 92 RAC existence
    INFO: Loading view <InstallTypeUI> at state <InstallTypeUI>
    INFO: Completed loading view <InstallTypeUI> at state <InstallTypeUI>
    INFO: Localizing view <InstallTypeUI> at state <InstallTypeUI>
    INFO: Gathering system details...
    INFO: Completed localizing view <InstallTypeUI> at state <InstallTypeUI>
    INFO: Waiting for completion of background operations
    INFO: Finishing all forked tasks at state InstallTypeUI
    INFO: Waiting for completion all forked tasks at state InstallTypeUI
    INFO: All forked task are completed at state InstallTypeUI
    INFO: Completed background operations
    INFO: Executing action at state InstallTypeUI
    INFO: Completed executing action at state <InstallTypeUI>
    INFO: Waiting for completion of background operations
    INFO: Completed background operations
    INFO: Moved to state <InstallTypeUI>
    INFO: Waiting for completion of background operations
    INFO: Completed background operations
    INFO: Validating view at state <InstallTypeUI>
    INFO: Completed validating view at state <InstallTypeUI>
    INFO: Validating state <InstallTypeUI>
    INFO: Completed validating state <InstallTypeUI>
    INFO: Verifying route advanced
    INFO: Checking condition at state <productLanguage>
    INFO: Successfully checked condition at state <productLanguage>
    INFO: Checking condition at state <getPrivilegedOSGroups>
    INFO: Successfully checked condition at state <getPrivilegedOSGroups>
    INFO: Checking condition at state <preInstallLocation>
    INFO: Successfully checked condition at state <preInstallLocation>
    INFO: Checking condition at state <CRSInstallLocationUI>
    INFO: Successfully checked condition at state <CRSInstallLocationUI>
    INFO: Get view named [ProductLanguageUI]
    INFO: View for [ProductLanguageUI] is oracle.install.ivw.common.view.ProductLanguageGUI@3ff5d699
    INFO: Initializing view <ProductLanguageUI> at state <productLanguage>
    INFO: Completed initializing view <ProductLanguageUI> at state <productLanguage>
    INFO: Displaying view <ProductLanguageUI> at state <productLanguage>
    INFO: Fetching Available Languages...
    INFO: Completed displaying view <ProductLanguageUI> at state <productLanguage>
    INFO: Loading view <ProductLanguageUI> at state <productLanguage>
    INFO: Completed loading view <ProductLanguageUI> at state <productLanguage>
    INFO: Localizing view <ProductLanguageUI> at state <productLanguage>
    INFO: Completed localizing view <ProductLanguageUI> at state <productLanguage>
    INFO: Waiting for completion of background operations
    INFO: Finishing all forked tasks at state productLanguage
    INFO: Waiting for completion all forked tasks at state productLanguage
    INFO: All forked task are completed at state productLanguage
    INFO: Completed background operations
    INFO: Executing action at state productLanguage
    INFO: Completed executing action at state <productLanguage>
    INFO: Waiting for completion of background operations
    INFO: Completed background operations
    INFO: Moved to state <productLanguage>
    INFO: Waiting for completion of background operations
    INFO: Completed background operations
    INFO: The languages in which the product will be installed are [ar, en]
    INFO: Validating view at state <productLanguage>
    INFO: Completed validating view at state <productLanguage>
    INFO: Validating state <productLanguage>
    INFO: Using default Validator configured in the Action class oracle.install.ivw.common.action.ProductLanguageAction
    INFO: Completed validating state <productLanguage>
    INFO: Verifying route productlanguage_yes
    INFO: Checking condition at state <getPrivilegedOSGroups>
    INFO: Successfully checked condition at state <getPrivilegedOSGroups>
    INFO: Waiting for completion of background operations
    INFO: Completed background operations
    INFO: Executing action at state flowDecider
    INFO: Completed executing action at state <flowDecider>
    INFO: Waiting for completion of background operations
    INFO: Completed background operations
    INFO: Moved to state <flowDecider>
    INFO: Waiting for completion of background operations
    INFO: Completed background operations
    INFO: Validating view at state <flowDecider>
    INFO: Completed validating view at state <flowDecider>
    INFO: Validating state <flowDecider>
    WARNING: Validation disabled for the state flowDecider
    INFO: Completed validating state <flowDecider>
    INFO: Verifying route FRESH_CRS_INSTALL
    INFO: Checking condition at state <getPrivilegedOSGroups>
    INFO: Successfully checked condition at state <getPrivilegedOSGroups>
    INFO: Checking condition at state <preInstallLocation>
    INFO: Successfully checked condition at state <preInstallLocation>
    INFO: Checking condition at state <CRSInstallLocationUI>
    INFO: Successfully checked condition at state <CRSInstallLocationUI>
    INFO: Get view named [GridPlugPlayInfoUI]
    INFO: View for [GridPlugPlayInfoUI] is oracle.install.ivw.crs.view.GridPlugPlayInfoUI@42293b53
    INFO: Initializing view <GridPlugPlayInfoUI> at state <GridPlugPlayInfoUI>
    INFO: GridPlugPlayInfoUI entering onEvent
    INFO: Gathering system details...
    INFO: Gathering system details...
    INFO: Gathering system details...
    INFO: Gathering system details...
    INFO: Gathering system details...
    INFO: checking for 92 RAC existence
    INFO: Gathering system details...
    INFO: Completed initializing view <GridPlugPlayInfoUI> at state <GridPlugPlayInfoUI>
    INFO: Displaying view <GridPlugPlayInfoUI> at state <GridPlugPlayInfoUI>
    INFO: Completed displaying view <GridPlugPlayInfoUI> at state <GridPlugPlayInfoUI>
    INFO: Loading view <GridPlugPlayInfoUI> at state <GridPlugPlayInfoUI>
    INFO: GridPlugPlayInfoUI entering onEvent
    INFO: Completed loading view <GridPlugPlayInfoUI> at state <GridPlugPlayInfoUI>
    INFO: Localizing view <GridPlugPlayInfoUI> at state <GridPlugPlayInfoUI>
    INFO: Completed localizing view <GridPlugPlayInfoUI> at state <GridPlugPlayInfoUI>
    INFO: Waiting for completion of background operations
    INFO: Completed background operations
    INFO: Executing action at state GridPlugPlayInfoUI
    INFO: Completed executing action at state <GridPlugPlayInfoUI>
    INFO: Waiting for completion of background operations
    INFO: Completed background operations
    INFO: Moved to state <GridPlugPlayInfoUI>
    INFO: Bad Chars Found :_
    INFO: Waiting for completion of background operations
    INFO: Completed background operations
    INFO: GridPlugPlayInfoUI entering processInput
    INFO: Validating view at state <GridPlugPlayInfoUI>
    INFO: Completed validating view at state <GridPlugPlayInfoUI>
    INFO: Validating state <GridPlugPlayInfoUI>
    INFO: Validating Cluster Name
    INFO: Validating SCAN Information
    INFO: validating SCAN name for emptiness and bad chars
    INFO: validating SCAN port for emptiness
    INFO: validating SCAN port for bad characters
    INFO: checking for 92 RAC existence
    INFO: Gathering system details...
    INFO: Environment variable SKIP_ALL_SCAN_VIP_VALIDATION is not set.
    INFO: Validating SCAN VIP
    INFO: Completed validating state <GridPlugPlayInfoUI>
    INFO: Verifying route success
    INFO: GridPlugPlayInfoUI entering onEvent
    INFO: Get view named [ClusterConfigUI]
    INFO: View for [ClusterConfigUI] is oracle.install.ivw.crs.view.ClusterConfigGUI@2a134eca
    INFO: Initializing view <ClusterConfigUI> at state <CRSNodeInformationUI>
    INFO: Completed initializing view <ClusterConfigUI> at state <CRSNodeInformationUI>
    INFO: Displaying view <ClusterConfigUI> at state <CRSNodeInformationUI>
    INFO: Completed displaying view <ClusterConfigUI> at state <CRSNodeInformationUI>
    INFO: Loading view <ClusterConfigUI> at state <CRSNodeInformationUI>
    INFO: Completed loading view <ClusterConfigUI> at state <CRSNodeInformationUI>
    INFO: Localizing view <ClusterConfigUI> at state <CRSNodeInformationUI>
    INFO: Completed localizing view <ClusterConfigUI> at state <CRSNodeInformationUI>
    INFO: Waiting for completion of background operations
    INFO: Completed background operations
    INFO: Executing action at state CRSNodeInformationUI
    INFO: Checking cluster configuration details
    INFO: checking for 92 RAC existence
    INFO: Gathering system details...
    INFO: Gathering system details...
    INFO: Completed executing action at state <CRSNodeInformationUI>
    INFO: Waiting for completion of background operations
    INFO: Completed background operations
    INFO: Moved to state <CRSNodeInformationUI>
    INFO: SSH Support Manager logs will be written to /tmp/OraInstall2013-10-30_10-00-46AM/sshsetup1_2013-10-30_10-00-46AM.log
    INFO: Establishing SSH connectivity between the selected nodes. This may take several minutes. Please wait...
    INFO: SSH Setup policy used: BIDIRECTIONAL
    ------------------------------------------------------------ End OUI Logs -----------------------------------------------------------------------------------
    Thanks.

  • Oracle 11g install failure, error, Failed to allocate port(s)

    I'm having a very hard time reinstalling Oracle 11gR1 x64 bit after the hard drive where I first installed it failed and had to be replaced. The database I'm trying to setup is for personal use on this system only. I'm running Windows XP professional 64 bit edition and have .net framework version 1.1.4322.573 installed.
    During installation the process hangs at the Database Configuration Assistant stage and will not progress till I manually end the lsnrctl.exe process in taskmanager. During the completing database process at the end I get this error -
    SEVERE: Failed to allocate port(s) in the specified range(s) for the following process(es): JMS [5540-5559],RMI [5520-5539],Database Control [5500-5519],EM Agent [3938] | [1830-1849]
    My first thoughts were the ports in question were in use or closed but I've been using both netbios and a port monitor program called currports to check and as far as I can tell the ports listed are open and not in use.
    I did reconfigure the tnsnames.ora and listener.ora files to include valid port addresses (1521) and I can get the lsnrctl.exe to start manually now but still can't connect to the database using an open SQL command prompt.
    I also tried running the emca.bat but still no change. I need help, I'm beating my head against the wall now.
    Here are my etc/hosts, etc/services, and emconfig.log files
    etc/hosts
    # Copyright (c) 1993-1999 Microsoft Corp.
    # This is a sample HOSTS file used by Microsoft TCP/IP for Windows.
    # This file contains the mappings of IP addresses to host names. Each
    # entry should be kept on an individual line. The IP address should
    # be placed in the first column followed by the corresponding host name.
    # The IP address and the host name should be separated by at least one
    # space.
    # Additionally, comments (such as these) may be inserted on individual
    # lines or following the machine name denoted by a '#' symbol.
    # For example:
    # 102.54.94.97 rhino.acme.com # source server
    # 38.25.63.10 x.acme.com # x client host
    127.0.0.1 localhost
    172.23.153.30     gcihq1

    emconfig.log
    Mar 22, 2010 5:48:04 PM oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag '-migrate' set to false
    Mar 22, 2010 5:48:04 PM oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag 'migrateFromDBControl' set to false
    Mar 22, 2010 5:48:04 PM oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag 'migrateToCentralAgent' set to false
    Mar 22, 2010 5:48:04 PM oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag 'migrateFromCentralAgent' set to false
    Mar 22, 2010 5:48:04 PM oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag 'migrateToDBControl' set to false
    Mar 22, 2010 5:48:04 PM oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag '-migrate' set to false
    Mar 22, 2010 5:48:04 PM oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag 'migrateFromDBControl' set to false
    Mar 22, 2010 5:48:04 PM oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag 'migrateToCentralAgent' set to false
    Mar 22, 2010 5:48:04 PM oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag 'migrateFromCentralAgent' set to false
    Mar 22, 2010 5:48:04 PM oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag 'migrateToDBControl' set to false
    Mar 22, 2010 5:48:04 PM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: LOG_FILE value: G:\MainDB\cfgtoollogs\dbca\MainDB\emConfig.log
    Mar 22, 2010 5:51:53 PM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: HOST value: gcihq1
    Mar 22, 2010 5:51:53 PM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: PORT value: 1521
    Mar 22, 2010 5:51:53 PM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: SID value: MainDB
    Mar 22, 2010 5:51:53 PM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: LISTENER value: LISTENER
    Mar 22, 2010 5:51:53 PM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: LISTENER_OH value: G:\MainDB\DBHousing
    Mar 22, 2010 5:51:53 PM oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag '-config' set to true
    Mar 22, 2010 5:51:53 PM oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag 'db' set to true
    Mar 22, 2010 5:51:53 PM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: EM_HOME value: G:\MainDB\DBHousing
    Mar 22, 2010 5:51:53 PM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: DB_UNIQUE_NAME value: MainDB
    Mar 22, 2010 5:51:53 PM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: SERVICE_NAME value: MainDB
    Mar 22, 2010 5:51:53 PM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: ORACLE_HOME value: G:\MainDB\DBHousing
    Mar 22, 2010 5:51:53 PM oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag 'dbcontrol' set to true
    Mar 22, 2010 5:51:53 PM oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag 'UPDATE_EMAIL' set to false
    Mar 22, 2010 5:51:53 PM oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag '-backup' set to false
    Mar 22, 2010 5:51:53 PM oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag 'create' set to false
    Mar 22, 2010 5:51:53 PM oracle.sysman.emcp.EMConfig restoreOuiLoc
    CONFIG: Restoring oracle.installer.oui_loc to G:\MainDB\DBHousing\oui
    Mar 22, 2010 5:51:53 PM oracle.sysman.emcp.EMConfig addEMCALogFile
    CONFIG: ORACLE_BASE :G:\MainDB
    Mar 22, 2010 5:51:53 PM oracle.sysman.emcp.util.FileUtil _copyFile
    CONFIG: Copying file G:\MainDB\cfgtoollogs\emca\emca_2010_03_22_17_48_04.log to G:\MainDB\cfgtoollogs\emca\MainDB\emca_2010_03_22_17_48_04.log
    Mar 22, 2010 5:51:53 PM oracle.sysman.emcp.EMConfig restoreOuiLoc
    CONFIG: Restoring oracle.installer.oui_loc to G:\MainDB\DBHousing\oui
    Mar 22, 2010 5:51:53 PM oracle.sysman.emcp.EMConfig restoreOuiLoc
    CONFIG: Restoring oracle.installer.oui_loc to G:\MainDB\DBHousing\oui
    Mar 22, 2010 5:51:53 PM oracle.sysman.emcp.EMConfig perform
    INFO: This operation is being logged at G:\MainDB\cfgtoollogs\dbca\MainDB\emConfig.log.
    Mar 22, 2010 5:51:53 PM oracle.sysman.emcp.util.ClusterUtil isCRSInstalled
    CONFIG: isCRSInstalled: false
    Mar 22, 2010 5:51:53 PM oracle.sysman.emcp.EMConfig restoreOuiLoc
    CONFIG: Restoring oracle.installer.oui_loc to G:\MainDB\DBHousing\oui
    Mar 22, 2010 5:51:53 PM oracle.sysman.emcp.EMConfig restoreOuiLoc
    CONFIG: Restoring oracle.installer.oui_loc to G:\MainDB\DBHousing\oui
    Mar 22, 2010 5:51:53 PM oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag 'CHECK_CONFIG' set to true
    Mar 22, 2010 5:51:53 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine connecting with SID: MainDB, oracleHome: G:\MainDB\DBHousing, and user: SYS
    Mar 22, 2010 5:51:53 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine created successfully and connected
    Mar 22, 2010 5:51:53 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine connecting with SID: MainDB, oracleHome: G:\MainDB\DBHousing, and user: DBSNMP
    Mar 22, 2010 5:51:54 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine created successfully and connected
    Mar 22, 2010 5:51:54 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter MODIFY_SID.
    Mar 22, 2010 5:51:54 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine connecting with SID: MainDB, oracleHome: G:\MainDB\DBHousing, and user: SYS
    Mar 22, 2010 5:51:54 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine created successfully and connected
    Mar 22, 2010 5:51:54 PM oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag 'asm_db' set to false
    Mar 22, 2010 5:51:54 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter MODIFY_SID.
    Mar 22, 2010 5:51:54 PM oracle.sysman.emcp.DatabaseChecks getDbServiceName
    CONFIG: No service name available. Will try to set db_unique_name.db_domain
    Mar 22, 2010 5:51:54 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine connecting with SID: MainDB, oracleHome: G:\MainDB\DBHousing, and user: SYS
    Mar 22, 2010 5:51:54 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine created successfully and connected
    Mar 22, 2010 5:51:54 PM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: DB_UNIQUE_NAME value:
    Mar 22, 2010 5:51:54 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter DB_UNIQUE_NAME.
    Mar 22, 2010 5:51:54 PM oracle.sysman.emcp.DatabaseChecks getDbUniqueName
    CONFIG: No Database unique name available. Will try to retrieve it from DB itself
    Mar 22, 2010 5:51:54 PM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: DB_UNIQUE_NAME value: MainDB
    Mar 22, 2010 5:51:54 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter DB_DOMAIN.
    Mar 22, 2010 5:51:54 PM oracle.sysman.emcp.DatabaseChecks getDbDomain
    CONFIG: No db domain available. Will query db for db_domain parameter
    Mar 22, 2010 5:51:54 PM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: DB_UNIQUE_NAME value: MainDB
    Mar 22, 2010 5:51:54 PM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: SERVICE_NAME value: MainDB
    Mar 22, 2010 5:51:54 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter MODIFY_SID.
    Mar 22, 2010 5:51:54 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter DBID.
    Mar 22, 2010 5:51:54 PM oracle.sysman.emcp.DatabaseChecks getDbid
    CONFIG: No dbid available. Will query db to extract it.
    Mar 22, 2010 5:51:54 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine connecting with SID: MainDB, oracleHome: G:\MainDB\DBHousing, and user: SYS
    Mar 22, 2010 5:51:54 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine created successfully and connected
    Mar 22, 2010 5:51:54 PM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: DBID value: 1536995688
    Mar 22, 2010 5:51:54 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine connecting with SID: MainDB, oracleHome: G:\MainDB\DBHousing, and user: SYSMAN
    Mar 22, 2010 5:51:54 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine created successfully and connected
    Mar 22, 2010 5:51:54 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter ORACLE_HOSTNAME.
    Mar 22, 2010 5:51:54 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter ORACLE_HOSTNAME.
    Mar 22, 2010 5:51:54 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine connecting with SID: MainDB, oracleHome: G:\MainDB\DBHousing, and user: SYS
    Mar 22, 2010 5:51:54 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine created successfully and connected
    Mar 22, 2010 5:51:54 PM oracle.sysman.emcp.EMDBPreConfig invoke
    CONFIG: Passed repository configuration check
    Mar 22, 2010 5:51:54 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter MODIFY_SID.
    Mar 22, 2010 5:51:54 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter MODIFY_SID.
    Mar 22, 2010 5:51:54 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter GLOBAL_DB_UNIQUE_NAME.
    Mar 22, 2010 5:51:54 PM oracle.sysman.emcp.DatabaseChecks getGlobalDbUniqueName
    CONFIG: No Global database unique name available. Will try to retrieve it from DB itself
    Mar 22, 2010 5:51:54 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine connecting with SID: MainDB, oracleHome: G:\MainDB\DBHousing, and user: SYS
    Mar 22, 2010 5:51:54 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine created successfully and connected
    Mar 22, 2010 5:51:54 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter DB_DOMAIN.
    Mar 22, 2010 5:51:54 PM oracle.sysman.emcp.DatabaseChecks getDbDomain
    CONFIG: No db domain available. Will query db for db_domain parameter
    Mar 22, 2010 5:51:54 PM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: GLOBAL_DB_UNIQUE_NAME value: MainDB
    Mar 22, 2010 5:51:54 PM oracle.sysman.emcp.util.FileUtil _copyFile
    CONFIG: Copying file G:\MainDB\DBHousing\sysman\config\emd.properties to G:\MainDB\DBHousing\sysman\config\emd.properties.emca.tmp
    Mar 22, 2010 5:51:54 PM oracle.sysman.emcp.util.FileUtil backupFile
    CONFIG: The original file G:\MainDB\DBHousing\sysman\config\emd.properties has been copied to G:\MainDB\DBHousing\sysman\config\emd.properties.emca.tmp
    Mar 22, 2010 5:51:54 PM oracle.sysman.emcp.util.FileUtil _copyFile
    CONFIG: Copying file G:\MainDB\DBHousing\sysman\config\emoms.properties to G:\MainDB\DBHousing\sysman\config\emoms.properties.emca.tmp
    Mar 22, 2010 5:51:54 PM oracle.sysman.emcp.util.FileUtil backupFile
    CONFIG: The original file G:\MainDB\DBHousing\sysman\config\emoms.properties has been copied to G:\MainDB\DBHousing\sysman\config\emoms.properties.emca.tmp
    Mar 22, 2010 5:51:54 PM oracle.sysman.emcp.util.FileUtil _copyFile
    CONFIG: Copying file G:\MainDB\DBHousing\sysman\emd\targets.xml to G:\MainDB\DBHousing\sysman\emd\targets.xml.emca.tmp
    Mar 22, 2010 5:51:54 PM oracle.sysman.emcp.util.FileUtil backupFile
    CONFIG: The original file G:\MainDB\DBHousing\sysman\emd\targets.xml has been copied to G:\MainDB\DBHousing\sysman\emd\targets.xml.emca.tmp
    Mar 22, 2010 5:51:54 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter ORACLE_HOSTNAME.
    Mar 22, 2010 5:51:54 PM oracle.sysman.emcp.util.ClusterUtil isCRSInstalled
    CONFIG: isCRSInstalled: false
    Mar 22, 2010 5:51:54 PM oracle.sysman.emcp.util.ClusterUtil getLocalNode
    CONFIG: Cluster.isCluster: false. Skip call to getLocalNode
    Mar 22, 2010 5:51:54 PM oracle.sysman.emcp.util.ClusterUtil getLocalNode
    CONFIG: isLocalNodeDone: true localNode: null
    Mar 22, 2010 5:51:54 PM oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag 'IS_CENTRAL_AGENT_RECONFIG' set to false
    Mar 22, 2010 5:51:54 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter ORACLE_HOSTNAME.
    Mar 22, 2010 5:51:54 PM oracle.sysman.emcp.util.ClusterUtil getLocalNode
    CONFIG: isLocalNodeDone: true localNode: null
    Mar 22, 2010 5:51:54 PM oracle.sysman.emcp.util.CentralAgentUtil isCentralAgentConfigured
    CONFIG: Sid: MainDB Host: 172.23.153.30 Node: null OH: G:\MainDB\DBHousing agentHome: null isCentral: false
    Mar 22, 2010 5:51:54 PM oracle.sysman.emcp.util.DBControlUtil isDBConsoleConfigured
    CONFIG: Sid: MainDB Host: 172.23.153.30 Node: null OH: G:\MainDB\DBHousing isDBC: false
    Mar 22, 2010 5:51:54 PM oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag 'IS_CENTRAL_AGENT_CONFIGURED' set to false
    Mar 22, 2010 5:51:54 PM oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag 'IS_DBCONTROL_CONFIGURED' set to false
    Mar 22, 2010 5:51:54 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter DBCONTROL_HTTP_PORT.
    Mar 22, 2010 5:51:54 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter AGENT_PORT.
    Mar 22, 2010 5:51:54 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter RMI_PORT.
    Mar 22, 2010 5:51:54 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter JMS_PORT.
    Mar 22, 2010 5:51:54 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter ORACLE_HOSTNAME.
    Mar 22, 2010 5:51:54 PM oracle.sysman.emcp.util.ClusterUtil getLocalNode
    CONFIG: isLocalNodeDone: true localNode: null
    Mar 22, 2010 5:51:54 PM oracle.sysman.emcp.util.DBControlUtil isDBConsoleConfigured
    CONFIG: Sid: MainDB Host: 172.23.153.30 Node: null OH: G:\MainDB\DBHousing isDBC: false
    Mar 22, 2010 5:51:54 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter ORACLE_HOSTNAME.
    Mar 22, 2010 5:51:54 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter PORTS_FILE.
    Mar 22, 2010 5:51:54 PM oracle.sysman.emcp.util.ClusterUtil getLocalNode
    CONFIG: isLocalNodeDone: true localNode: null
    Mar 22, 2010 5:51:54 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter JMS_PORT_MainDB.
    Mar 22, 2010 5:51:54 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter JMS_PORT.
    Mar 22, 2010 5:51:54 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter RMI_PORT_MainDB.
    Mar 22, 2010 5:51:54 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter RMI_PORT.
    Mar 22, 2010 5:51:54 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter DBCONTROL_HTTP_PORT_MainDB.
    Mar 22, 2010 5:51:54 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter DBCONTROL_HTTP_PORT.
    Mar 22, 2010 5:51:54 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter AGENT_PORT_MainDB.
    Mar 22, 2010 5:51:54 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter AGENT_PORT.
    Mar 22, 2010 5:51:54 PM oracle.sysman.emcp.util.OUIInventoryUtil setOUILoc
    CONFIG: Setting oracle.installer.oui_loc to G:\MainDB\DBHousing\oui
    Mar 22, 2010 5:51:54 PM oracle.sysman.emcp.util.OUIInventoryUtil setOUILoc
    CONFIG: Setting oracle.installer.oui_loc to G:\MainDB\DBHousing\oui
    Mar 22, 2010 5:51:54 PM oracle.sysman.emcp.util.PortManager markAllUsedPorts
    CONFIG: Homes to scan for used ports: [G:\MainDB\DBHousing]
    Mar 22, 2010 5:51:54 PM oracle.sysman.emcp.util.PortManager markAllUsedPorts
    CONFIG: Searching all DBConsole instances for used ports under ORACLE_HOME G:\MainDB\DBHousing
    Mar 22, 2010 5:51:55 PM oracle.sysman.emcp.util.PortManager markAllUsedPorts
    CONFIG: Marking JMS port: null from G:\MainDB\DBHousing\oc4j\j2ee\OC4J_DBConsole
    Mar 22, 2010 5:51:55 PM oracle.sysman.emcp.util.PortManager markAllUsedPorts
    CONFIG: Marking RMI port: null from G:\MainDB\DBHousing\oc4j\j2ee\OC4J_DBConsole
    Mar 22, 2010 5:51:55 PM oracle.sysman.emcp.util.PortManager markAllUsedPorts
    CONFIG: Marking HTTP port: null from G:\MainDB\DBHousing\oc4j\j2ee\OC4J_DBConsole
    Mar 22, 2010 5:51:55 PM oracle.sysman.emcp.util.PortManager getAgentPort
    CONFIG: Cannot parse EMD_URL correctly. No port identified
    Mar 22, 2010 5:51:55 PM oracle.sysman.emcp.util.PortManager markAllUsedPorts
    CONFIG: Marking Agent port: null from G:\MainDB\DBHousing\sysman\config\emd.properties
    Mar 22, 2010 5:51:55 PM oracle.sysman.emcp.util.PortManager markAllUsedPorts
    CONFIG: Cannnot parse EMD_URL correctly. No port identified
    Mar 22, 2010 5:51:55 PM oracle.sysman.emcp.util.FileUtil getProperties
    CONFIG: Error reading file G:\MainDB\DBHousing\install\staticports.ini
    Mar 22, 2010 5:51:55 PM oracle.sysman.emcp.EMConfig perform
    SEVERE: Failed to allocate port(s) in the specified range(s) for the following process(es): JMS [5540-5559],RMI [5520-5539],Database Control [5500-5519],EM Agent [3938] | [1830-1849]
    Refer to the log file at G:\MainDB\cfgtoollogs\dbca\MainDB\emConfig.log for more details.
    Mar 22, 2010 5:51:55 PM oracle.sysman.emcp.EMConfig perform
    CONFIG: Stack Trace:
    oracle.sysman.emcp.exception.EMConfigException: Failed to allocate port(s) in the specified range(s) for the following process(es): JMS [5540-5559],RMI [5520-5539],Database Control [5500-5519],EM Agent [3938] | [1830-1849]
         at oracle.sysman.emcp.EMDBPreConfig.checkPorts(EMDBPreConfig.java:2481)
         at oracle.sysman.emcp.EMDBPreConfig.performConfiguration(EMDBPreConfig.java:744)
         at oracle.sysman.emcp.EMDBPreConfig.invoke(EMDBPreConfig.java:251)
         at oracle.sysman.emcp.EMDBPreConfig.invoke(EMDBPreConfig.java:178)
         at oracle.sysman.emcp.EMConfig.perform(EMConfig.java:221)
         at oracle.sysman.assistants.util.em.EMConfiguration.run(EMConfiguration.java:460)
         at java.lang.Thread.run(Thread.java:595)
    Mar 22, 2010 5:51:55 PM oracle.sysman.emcp.EMConfig restoreOuiLoc
    CONFIG: Restoring oracle.installer.oui_loc to G:\MainDB\DBHousing\oui
    ------------------------------------------------------------------------------------------------------------------------------

  • What hardware is required to setup Fail over cluster using windows 2003 enterprise edition.

    I want to setup fail over cluster...i have already installed HP 350 G6 server in my environment. now i want to know which hardware i may require to setup failover cluster for statefull application. and secondly, does my existing server can be utilized .

    AN Update:
    The Oracle Universal Installer shows the following in the screen before the error appears:
    Starting Oracle Universal Installer...
    No pre-requisite checks found in oraparam.ini, no system pre-requisite checks w
    ill be executed.
    Preparing to launch Oracle Universal Installer from D:\DOCUME~1\ADMINI~1\LOCALS
    ~1\Temp\OraInstall2011-03-02_04-25-26PM. Please wait ... Oracle Universal Instal
    ler, Version 10.1.0.6.0 Production
    Copyright (C) 1999, 2007, Oracle. All rights reserved.
    ...............................................................Val: 0
    Val: 0
    Val: 0
    Val: 2
    Val: 0
    Val: 0
    Val: 0
    Val: 2
    Val: 0
    Val: 0
    Val: 0
    Val: 0
    Val: 0
    Val: 0
    Val: 2
    Val: 0
    Val: 0
    Val: 0
    Val: 0
    Val: 2
    Val: 0
    Val: 0
    path: D:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\OraInstall2011-03-02_04-25-26PM\jre\bin
    ;.;D:\WINDOWS\system32;D:\WINDOWS;D:\StageR12\startCD\Disk1\rapidwiz\unzip\NT;D:
    \MVS\VC\bin;D:\cygwin\bin;D:\WINDOWS\system32;D:\WINDOWS;D:\WINDOWS\System32\Wbe
    m
    toload is D:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\OraInstall2011-03-02_04-25-26PM\Win
    dowsGPortQueries.dll
    100% Done.
    Copying files in progress (Wed Mar 02 16:25:59 IST 2011)
    .................................................Val: 0
    . 79% Done.
    Copy successful
    Setup in progress (Wed Mar 02 16:26:05 IST 2011)
    .....Oracle JAAS [Wed Mar 02 16:26:28 IST 2011]: exception: 9
    opmnctl: opmn started
    Please help me.
    Thanks and regards,
    Adm

  • Deploying base setup failed while configure BI

    OBIEE Verion : 11.1.1.6
    OS : Redhat 5.6
    When i try to install OBIEE 11.1.1.6, I faced the below error while I'm configure BI setup
    Deploying Base setup failed, I checked in log files
    2013-02-25 23:44:04,524 INFO [main] com.oracle.cie.domain.script.ScriptExecutor - read domain from "/home/oracle/Oracle/Middleware/user_projects/domains/bifoundation_domain"
    2013-02-25 23:44:09,904 INFO [main] com.oracle.cie.domain.script.ScriptExecutor - succeed: read domain from "/home/oracle/Oracle/Middleware/user_projects/domains/bifoundation_domain"
    2013-02-25 23:44:10,138 INFO [main] com.oracle.cie.domain.script.ScriptExecutor - add template /home/oracle/Oracle/Middleware/Oracle_BI1/common/templates/applications/oracle.bi_base_template_11.1.1.jar to domain
    2013-02-25 23:44:10,156 INFO [main] com.oracle.cie.domain.template.catalog.impl.OracleHomeLocator - /home/oracle/Oracle/Middleware/oracle_common is already in the list
    2013-02-25 23:44:11,672 INFO [main] com.oracle.cie.domain.template.catalog.impl.ComponentsXMLConverter - /home/oracle/Oracle/Middleware/wlserver_10.3/common/lib/components.xml does not contain component elements and will be skipped
    2013-02-25 23:44:11,748 INFO [main] com.oracle.cie.domain.template.dependency.UncondPrereqsSelector - Found unresolved prerequisite VKey type [UNRESOLVED] domainState [NOTINSTALLED] selectionState [NOTSELECTED] details [DEP for Oracle BI:11.1.1.6.0 [/home/oracle/Oracle/Middleware/Oracle_BI1/common/templates/applications/oracle.bi_base_template_11.1.1.jar] (Oracle BI SYSMAN)]
    2013-02-25 23:44:11,749 INFO [main] com.oracle.cie.domain.template.dependency.UncondPrereqsSelector - Found unresolved prerequisite VKey type [UNRESOLVED] domainState [NOTINSTALLED] selectionState [NOTSELECTED] details [DEP for Oracle BI:11.1.1.6.0 [/home/oracle/Oracle/Middleware/Oracle_BI1/common/templates/applications/oracle.bi_base_template_11.1.1.jar] (Oracle BI JDBC)]
    2013-02-25 23:44:11,750 INFO [main] com.oracle.cie.domain.script.ScriptExecutor - fail: add template /home/oracle/Oracle/Middleware/Oracle_BI1/common/templates/applications/oracle.bi_base_template_11.1.1.jar to domain
    2013-02-25 23:44:11,750 ERROR [main] com.oracle.cie.domain.script.ScriptExecutor - fail: add template /home/oracle/Oracle/Middleware/Oracle_BI1/common/templates/applications/oracle.bi_base_template_11.1.1.jar to domain
    com.oracle.cie.domain.template.dependency.SelectionConflictException: The following prerequisites were found to be missing:
    Oracle BI SYSMANOracle BI JDBC
    at com.oracle.cie.domain.template.dependency.TemplateSelectionTarget.selectVertex(TemplateSelectionTarget.java:794)
    at com.oracle.cie.domain.template.dependency.TemplateSelectionTarget.selectWithPrerequisites(TemplateSelectionTarget.java:265)
    at com.oracle.cie.domain.script.ScriptExecutor.addTemplate(ScriptExecutor.java:547)
    at com.oracle.cie.domain.script.jython.WLScriptContext.addTemplate(WLScriptContext.java:416)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.lang.reflect.Method.invoke(Method.java:601)
    at org.python.core.PyReflectedFunction.__call__(Unknown Source)
    at org.python.core.PyMethod.__call__(Unknown Source)
    at org.python.core.PyObject.__call__(Unknown Source)
    at org.python.core.PyInstance.invoke(Unknown Source)
    at org.python.pycode._pyx3.addTemplate$20(/tmp/WLSTOfflineIni2235021489887898317.py:89)
    at org.python.pycode._pyx3.call_function(/tmp/WLSTOfflineIni2235021489887898317.py)
    at org.python.core.PyTableCode.call(Unknown Source)
    at org.python.core.PyTableCode.call(Unknown Source)
    at org.python.core.PyFunction.__call__(Unknown Source)
    at org.python.pycode._pyx47.f$0(/tmp/tmp1361825028587.py:15)
    at org.python.pycode._pyx47.call_function(/tmp/tmp1361825028587.py)
    at org.python.core.PyTableCode.call(Unknown Source)
    at org.python.core.PyCode.call(Unknown Source)
    at org.python.core.Py.runCode(Unknown Source)
    Please let me know Where I did mistake

    http://mohamedazar.com/2013/04/01/oracle-as-provisioning-weblogic-asdomain-_addtemplateasdomain-java4224/                                                                                                                                                                                                                   

  • ODI-1241: Oracle Data Integrator tool execution fails.

    Hi
    I'm getting the following error while running the OdiOSCommand command. I'm running dos2unix command to convert text files from dos to unix format.
    Application tier is on a different host to the ODI setup. Getting the following error. Please help resolve this issue.
    Error : ODI-1226: Step OdiOSCommand fails after 1 attempt(s).
    ODI-1241: Oracle Data Integrator tool execution fails.
    Caused By: com.sunopsis.dwg.function.SnpsFunctionBaseException: ODI-30038: OS command returned 1.

    The issue was with the value set for the OUTPUT_DIR variable. It was pointing to the wrong location.
    After setting it correctly the package completed successfully.
    Thanks for all your replies.
    To anwser your question. We are finding junk data and need to run the command to remove them from the input files which are coming from a different source.
    Edited by: user761125 on Jun 3, 2012 11:38 PM

  • Oracle Grid root.sh is failing onFirstNode configuration failed at /u01/app/grid/11.2.0.4/crs/instal due to ora.oc4j start timeout

    We have a 4 node Rac, oracle root.sh is failing on the First Node. when I looked at the logs I found the oc4j is timeout to start on Node1 whereas it is able to start on all other nodes with in 2 mins. this is causing to fail root.sh. Can you please help me what is the issue.
    Oracle Rac Node 1 oc4j failed on Node1 due to timeout able to start on other node.
     oracle:]/u01/app/grid/11.2.0.4/bin > ./crsctl start res ora.oc4j -n node1
    CRS-2672: Attempting to start 'ora.oc4j' node1
    CRS-2674: Start of 'ora.oc4j' on 'node1' failed
    CRS-2679: Attempting to clean 'ora.oc4j' on node1
    CRS-2681: Clean of 'ora.oc4j' on 'node1' succeeded
    CRS-4000: Command Start failed, or completed with errors.  [oracle:]/u01/app/grid/11.2.0.4/bin > ./crsctl start res ora.oc4j -n node2
    CRS-2672: Attempting to start 'ora.oc4j' on 'node2'
    CRS-2676: Start of 'ora.oc4j' on 'node2' succeeded

    Please follow Metalink Note 1050908.1.
    This might help
    Cheers
    FJFranken

  • Java 2 runtime Environment setup failed with a return code of -1

    Hi!
    I have tried to install sdk 1_3_1_01 on Windows 2000 with ServicePack 2 and the error "Java 2 runtime Environment setup failed with a return code of -1" occured. As I saw, a lot of people has the problem but couldn't find a solution on this page!
    Please help !
    Me

    I've installed 1.3.1_01 on both W2K Workstation and Server, no problem. There's a bug report, but no workaround or solution.
    http://developer.java.sun.com/developer/bugParade/bugs/4412291.html
    and it's supposedly 'fixed' in 1.4.0 beta.
    http://java.sun.com/j2se/1.4/fixedbugs/fixedbugs-beta2.html
    You might try installing the beta version
    http://java.sun.com/j2se/

  • Error while adding oracle database resource to the fail safe group

    Hi,
    we are installaing ERP 6.0 EHP4 , oracle10.2.04  in MSCS
    During the step, Adding the oracle Database Resource to the fail safe
    group , I am getting the error.
    28  13:21:57    ** WARNING : FS-10288: Parameter file C:\oracle\BCP\102\database\init<SID>_OFS.ora is not located on a cluster disk
    29  13:21:57    ** WARNING : FS-10404: The database uses a nonclustered disk in one of the system parameters.  Value of parameter is C:\ORACLE\<SID>\102\RDBMS\AUDIT
    30  13:21:58    ** ERROR : FS-10036: The resource uses disk SAP HDD, which is also used by cluster resource SAP VIP in another group
    31  13:21:58    ** ERROR : FS-10778: The Oracle Database resource provider failed to configure the cluster resource <SID>.WORLD
    32  13:21:58    ** ERROR : FS-10890: Oracle Services for MSCS failed during the add operation
    33  13:21:58    ** ERROR : FS-10497: Starting clusterwide rollback of the operation
    34  13:21:58  FS-10488:<primary node name> : Starting rollback of operation
    35  13:21:58   > FS-10090: Rolling back Oracle Net changes on node <primary node name>
    I am having one local disk C: one shared disk Z: and quorum disk Q:
    Shared disk Z: is already used for SAP<sid> group.
    Regards,
    Joel

    Joeldhanaraj wrote:>
    > Hi,
    >
    > we are installaing ERP 6.0 EHP4 , oracle10.2.04  in MSCS
    >
    > During the step, Adding the oracle Database Resource to the fail safe
    > group , I am getting the error.
    >
    > 28  13:21:57    ** WARNING : FS-10288: Parameter file C:\oracle\BCP\102\database\init<SID>_OFS.ora is not located on a cluster disk
    > 29  13:21:57    ** WARNING : FS-10404: The database uses a nonclustered disk in one of the system parameters.  Value of parameter is C:\ORACLE\<SID>\102\RDBMS\AUDIT
    > 30  13:21:58    ** ERROR : FS-10036: The resource uses disk SAP HDD, which is also used by cluster resource SAP VIP in another group
    > 31  13:21:58    ** ERROR : FS-10778: The Oracle Database resource provider failed to configure the cluster resource <SID>.WORLD
    > 32  13:21:58    ** ERROR : FS-10890: Oracle Services for MSCS failed during the add operation
    > 33  13:21:58    ** ERROR : FS-10497: Starting clusterwide rollback of the operation
    > 34  13:21:58  FS-10488:<primary node name> : Starting rollback of operation
    > 35  13:21:58   > FS-10090: Rolling back Oracle Net changes on node <primary node name>
    >
    > I am having one local disk C: one shared disk Z: and quorum disk Q:
    >
    > Shared disk Z: is already used for SAP<sid> group.
    Hi Joel,
    how about following the advice given by the error message and moving the mentioned files/folder (init<sid>_OFS.ora, AUDIT folder) to a clustered resource disk?
    just my 2 pence...

  • Satellite Pro A200 - Supervisor Password Utility Setup fails

    Hello,
    I own a Satellite Pro A200-PSAE7E and a retail license for Windows Vista Ultimate 32bit (with SP1) installed on it.
    Before installing Vista, I upgraded the BIOS to the most recent version available on the Toshiba site (http://it.computers.toshiba-europe.com/cgi-bin/ToshibaCSG/vista_drivers.jsp?service=IT).
    BIOS version is now 2.20-WIN32
    After the successful installation of the operating system, I started installing the various drivers and utilities downloading them from the Toshiba site.
    When I try to install the "Supervisor Password Utility" the setup fails showing a message box which says "The serial number is invalid".
    Same problem with another setup: "Flash Cards Support Utility"
    Does anybody know how to solve this problem and which serial number is invalid?
    Thanx in advance,
    mme000

    Hi,
    You are having the same trouble as other people on these forums.
    If you want to fix it yourself, you would need to look at the disk image on the disk that came with your toshiba, figure out which version of the application was included on that, you might be able to find that version on the website for a different model and different country (for instance, on the canadian website, for a totally different computer than my UK computer, i found a version of the flashcards support utility that works with mine.) But i don't think its possible to see what's on the restore disk without instaling it, i.e. wiping everything off your harddrive in the process.
    It really is extremely disappointing and frustrating. If anyone knows a way to communicate directly with toshiba about this problem without having to pay some sort of support fee, I would be very interested to hear about it. It seems noone from toshiba actually reads anything from these forum. It seems like a real wasted resource to me....
    Message was edited by: ADMIN

  • E-Mail Setup fails to launch on Nokia X6

    Hello folks,
    On my Nokia X6, when I try to configure an email account using Nokia Messaging, Email setup fails to launch.
    I tried configuring from "Messaging" and here after configuring, when I click on "Connect", it doesn't connect.
    If I select Settings for an already created mailbox, from "Messaging" --> Options --> Email Setup --> Mailbox --> Google --> Settings, I get the following message "Messaging: Feature not supported".
    Please help. Any advice would be appreciated.
    Thanks
    Solved!
    Go to Solution.

    I myself found the resolution found on other discussion threads,
    Do one of the following ( 2nd Option worked for me, Remember to take backup before going with the 2nd option as it erases all contacts)
    Try resetting the phone here is codes back up data
    start from top and work down
    1. *#7780# - Restore factory settings - resets all the settings to the default ( you will not lose any data)
    Make sure you back up your data as you will lose all of it when you perform option 2 or 3 on this list. The default code for all operations listed here is 12345
    2. *#7370# - Reformat your phone
    3. This you perform as a last resort. Nothing else is working.If the phone is not showing any activity, proceed with hard formatting , turn off your phone, hold the following buttons while pressing the power button. (the default code is 12345)
    hard reset - hold the following buttons *, 3 (number button) and talk/green key. turn on the phone and do not release those buttons until you see the Nokia boot up screen. once you feel the phone power up you can let go off the power button while still holding all three buttons ( for Nokia 5800XM - use the following buttons to do a hard reset, GREEN/RED/CAMERA keys pressed all at once on power up. this will only work on 5800's that have firmware version 20... and up. )

  • INS-20802 Oracle Private Interconnect Configuration Assistant failed

    Thought I would post what information I've gathered, after facing this error during install of RAC Grid Infrastructure 11.2.0.1 on Red Hat Enterprise Linux Server release 5.5 64-bit, as Oracle Support is once again unable to help. Maybe this will save someone else some time and the aggravation of dealing with lousy Oracle Support.
    The error occurs after root.sh has successfully completed on all nodes. Oracle Net Configuration Assistant runs successfully, then Oracle Private Interconnect Configuration Assistant launches and subsequently fails with the following.
    [INS-20802] Oracle Private Interconnect Configuration Assistant failed.
    /u01/app/oraInventory/logs/installActions2010-12-13_01-26-10PM.log
    INFO: Starting 'Oracle Private Interconnect Configuration Assistant'
    INFO: Starting 'Oracle Private Interconnect Configuration Assistant'
    INFO: PRIF-26: Error in update the profiles in the cluster
    INFO:
    WARNING:
    INFO: Completed Plugin named: Oracle Private Interconnect Configuration Assistant
    INFO: Oracle Private Interconnect Configuration Assistant failed.
    INFO: Oracle Private Interconnect Configuration Assistant failed.
    I was able to find another error that coincides with the PRIF-26 error: "CRS-2324:Error(s) occurred while trying to push GPnP profile. State may be inconsistent."
    I was also able to duplicate the PRIF-26 error by trying to add a non-existent network interface via oifcfg:
    ./oifcfg setif -global jjj1/192.167.1.0:cluster_interconnect
    PRIF-26: Error in update the profiles in the cluster
    My best guess is the Oracle Private Interconnect Configuration Assistant makes a call to oifcfg. When oifcfg makes an update or adds a public/private interface, some XML files are also updated or maybe cross-referenced. These files are located here: <grid_home>/gpnp/<host>/profiles/peer
    Any updates/changes/addtions to the private or public interfaces include changes for the Grid Plug-n-Play component, which uses the XML files. If the interface name is not contained in the XML files, my best guess is that triggers the "CRS-2324:Error(s) occurred while trying to push GPnP profile. State may be inconsistent.
    I verified everything was configured correctly; the cluster verification utility reported everything was ok. I also ran the cluster verifcation utility against the GP-nP:
    ./cluvfy comp gpnp -verbose
    I also reviewed the public and private interfaces via oifcfg and they are correct:
    [oracle@ryoradb1 bin]$ ./oifcfg getif -global
    eth0 10.10.2.0 global public
    eth1 192.167.1.0 global cluster_interconnect
    [oracle@ryoradb1 bin]$ ./oifcfg iflist -p
    eth0 10.10.2.0 PRIVATE
    eth1 192.167.1.0 UNKNOWN
    My conclusion is the environment is configured correctly, in spite of the error generated by the Oracle Private Configuration Assistant.

    I understand that you have installed 11.2.0.1 not 11.2.0.2 because multicating must be enabled if you have installed 11.2.0.2 and you may face these sort of problems because cluster nodes would not be able to communicate with each other.
    Please check ocssd.log especially on the first node because this file will give more inforamtion as to why first node is not able to push GPnP file. As you have executed cluvfy to confirm the GPnP but to confirm whether GPnP profile is accurate to just narrow down the problem, I would suggest you to try to start cluster in exclusive mode so that you can sure that GPnP profile is good.
    Shutdown CRS on all nodes, if there is any hung processes then kill them before executing the fllowing command to start cluster in exclusive mode.
    $GRID_HOME/bin/crsctl start crs -excl
    If you are able to start cluster in exclusive then it is sure that GPnP is correct and then next step would be to verify the private network.
    See how you goes.
    FYI, I was recently analyzing the same sort of problems where cluster was not able to access GPnP profile and finally I found issues on my private network. Customer had enabled IGMP snooping, which was avoiding multicast communication over the private network but it was 11.2.0.2, which is not the case here.
    Harish Kumar
    http://www.oraxperts.com

  • Office 365 Pro Plus - Setup Failed Error - Network Deployment Share Method

    Hello,
    We recently deployed Office 365 Pro Plus utilizing the network share method. The issue we are experiencing is occuring after uninstalling Office 365. When we try to reinstall 365 on the same PC, the setup states "Setup Failed - A newer version
    of Setup is required to install this product"
    Here is our currentl XML script:
    <Configuration>
      <Add SourcePath=\\WDS.contoso.com\O365Deployment OfficeClientEdition="32" >
        <Product ID="O365ProPlusRetail">
          <Language ID="en-us" />
        </Product>
       </Add>
      <Updates Enabled="TRUE" UpdatePath=\\WDS.contoso.com\O365Deployment />
      <Display Level="FULL" AcceptEULA="TRUE" />
      <!--Logging Path="\\WDS.contoso.com\O365Deployment\LOGS" Name=%computername%.txt-->
      <!--Property Name="AUTOACTIVATE" Value="1" /-->
    </Configuration>
    Any help would be greatly appreciated!

    Hi,
    Would you like to give me the whole error message? Please see the "Troubleshoot specific errors in Office 365 ProPlus",we can find the resolution of
    Internet Connection Required.
    Since you want to install or deploy the Office 365 pro plus, please read the following articles and check they are helpful.
    http://technet.microsoft.com/en-us/library/gg715562(v=office.15).aspx
    http://blogs.technet.com/b/office_resource_kit/archive/2013/08/08/how-to-deploy-office-365-proplus-from-an-on-premises-web-portal.aspx
    http://www.microsoftvirtualacademy.com/training-courses/office-365-deployment-for-it-pros
    http://community.office365.com/en-us/w/upgrade/installing-office-365-proplus-with-the-office-deployment-tool.aspx
    Regards,
    George Zhao
    TechNet Community Support

Maybe you are looking for

  • Touch pad

    dear sir/mam                In my laptop some time the touch pad is not working .when i try to move the cursor it is not moving  so please give me some advise to solve it thank you

  • My TM is backing up my external drive with iPhoto, iTunes, and other media, I don't want it to, but it persists even unless I disconnect the drive

    I have two external drives, one for TM and one for iphoto and itunes.  I don't want them backed up.  Why can't I get this to happen except when I disconnect the itunes/iphoto disks

  • What is the standard MPB battery capacity in mAh?

    After looking into the technical side of my MBP, i saw that my full charge capacity was 6567 mAh. I looked into this because it seemed as if my MBP's battery wasn't lasting as long as I thought it once was. I have a 15" 2.2 gHz MPB Thanks

  • Z Sort key not working

    Hi Sory Key Z02  field name AWKEY u2013 Reference  its assigned in GL Master data. Purpose : When billing document released for accounting then Billing Document number populated   in Assignment field of Accounting document, subsequently we can check

  • Production order with scrap

    Dear Gurus, i have a scenario like this: after every 150 EA production client dismental one piece for testing purpose,means 149 EA goes to finished stock & 1 EA dismentling piece produce scraps ,scrap is saleble so we have to maintain the stock with