Error in installing SOA Composites step in Oracle GRC8.6.3 Installation

Hi all,
i am installing oracle grc8.6.3 in windows 64 bit.
i have installed database,rcu,weblogic,soa successfully.in next step i have to install SOA Composite.
when i am running the wlst from oracle_soa1/common/bin and passing the parameter in the wls:/offline i am getting following error
i have set JAVA_HOME,WL_HOME,SOA_HOME correctly
please help me
wls:/offline> sca_deployComposite("http://localhost:8001","
D:\oracle\dist\composites1.zip",overwrite=true,user="weblogic",password="Newuser")
serverURL = http://localhost:8001
sarLocation = D:\oracle\dist\composites1.zip
partition = default
overwrite = 1
user = weblogic
forceDefault = 1
configplan = None
keepInstancesOnRedeploy = 0
timeout = -1
set user and password...
Processing sar=D:\oracle\dist\composites1.zip
created temp dir =C:\Users\A-EXT-~4\AppData\Local\Temp\deploy_client_24c31e3a-db
09-43dd-92c7-cea134ccd56a
Adding sar file - C:\Users\A-EXT-~4\AppData\Local\Temp\deploy_client_24c31e3a-db
09-43dd-92c7-cea134ccd56a\sca_EmailComposite_rev2.0.jar
INFO: Creating HTTP connection to host:sfre001t.statoilfuelretail.com, port:8001
INFO: Received HTTP response from the server, response code=500
---->Response code=500, error:There was an error deploying the composite on soa_
server1: Deployment Failed: Error occurred during deployment of component: Email
Process to service engine: implementation.bpel, for composite: EmailComposite: O
RABPEL-05250
Error deploying BPEL suitcase.
error while attempting to deploy the BPEL component file "D:\oracle\app\product\
OFM\domain\user_projects\domains\grc_domain\servers\soa_server1\dc\soa_d7580aa1-
6af4-4360-b47a-ce198c3d1d89"; the exception reported is: java.lang.NoClassDefFou
ndError: Could not initialize class com.collaxa.cube.util.JavaHelper
This error contained an exception thrown by the underlying deployment module.
Verify the exception trace in the log (with logging level set to debug mode).
thanks
Edited by: 902535 on May 2, 2012 10:59 AM

I think you may have gotten confused with the installation guide.
If you're installing GRC, you should not be installing SOA or other components. There are 2 applications you can install from that distribution, GRCC or EGRCM. EGRCM is the one that refers to SOA's if needed, so even then you shouldn't need to install it for testing out the product.
I hope that helps!

Similar Messages

  • Error while deploying SOA composite via ant

    I am getting following error while deploying SOA composite through ant from SOA server (UNIX).It is unable to get mds configuration.
    Jdeveloper is not installed in SOA server.
    I am trying to copy the SOA project from local machine to SOA server and trying to deploy from SOA server.
    Error
    Parse of component type files failed, check the adf-config.xml file : "oracle.fabric.common.FabricException: oracle.mds.config.MDSConfigurationException: MDS-01330: unable to load MDS configuration document
    MDS-01329: unable to load element "persistence-config"
    MDS-01370: MetadataStore configuration for metadata-store-usage "mstore-usage_1" is invalid.
    MDS-00503: The metadata path "/u01/orasoa/Oracle/Middleware/Oracle_SOA1/integration" does not contain any valid directories.
    I checked /u01/orasoa/Oracle/Middleware/Oracle_SOA1 directory. Integretion directory is not available.
    Am I missing anything?
    *Please advise.*
    build.propeties
    ============
    # build file for HelloWorldComposite
    composite.name=AntScriptDeployPOCService
    # revision of the composite
    composite.revision=1.0
    # Set oracle.home to <JDEV_HOME>/jdeveloper, where <JDEV_HOME> is JDEV # installation directory
    #oracle.home=C:/Oracle/Middleware/jdeveloper
    oracle.home=/u01/orasoa/Oracle/Middleware/Oracle_SOA1
    # soa-server side oracle home directory - needed for deployment plan
    # and the weblogic sca library deployment
    soa.server.oracle.home=/u01/orasoa/Oracle/Middleware/Oracle_SOA1
    ###### Deployment server connection information
    # the admin server connection information
    admin.server.host=10.40.237.106
    admin.server.port=7001
    # the domain where soa infra is installed
    server.domain.name=soa_domain
    # connection information for the managed server, used for soa-deployment
    managed.server.host=10.40.237.106
    managed.server.port=8001
    # User and credentials for the servers
    server.user=weblogic
    server.password=<password>
    # wls server where soa is targeted.
    server.targets=soa_server1
    #local.java.home=C:/Oracle/Middleware/jdk160_14_R27.6.5-32
    local.java.home=/u01/orasoa/Oracle/Middleware/jdk160_14_R27.6.5-32
    Build.xml
    <?xml version="1.0" encoding="UTF-8" ?>
    <project name="AntScriptDeployPOCService" default="all">
    <!-- build.properties -->
    <property file="build.properties"/>
    <property name="deploy.dir" value="../deploy"/>
    <!-- Add targets here -->
    <target name="compile-package">
    <property name="sca-inf.classes.dir" value="../SCA-INF/classes"/>
    <mkdir dir="${sca-inf.classes.dir}"/>
    <ant antfile="${oracle.home}/bin/ant-sca-package.xml" target="package" inheritall="false">
    <property name="oracle.home" value="${oracle.home}"/>
    <property name="compositeDir" value="${basedir}/../"/>
    <!-- needed for adf config -->
    <property name="scac.application.home" value="${basedir}/../.."/>
    <!-- name of the composite -->
    <property name="compositeName" value="${composite.name}"/>
    <!-- revision of the composite -->
    <property name="revision" value="${composite.revision}"/>
    <!-- java.passed.home passed to scac, this property will be
    overwritten to the env.JAVA_HOME if such env variable is defined in OS level-->
    <property name="java.passed.home" value="${local.java.home}"/>
              <!--property name="java.passed.home" value="C:/Oracle/Middleware/jdk160_14_R27.6.5-32"-->
    </ant>
    </target>
    <target name="deploy">
    <condition property="deploymentplan.name" value="null">
    <not>
    <isset property="${deploymentplan.name}"/>
    </not>
    </condition>
    <echo>Deploying to http://${managed.server.host}:${managed.server.port}/soa-infra/deployer</echo>
    <ant antfile="${oracle.home}/bin/ant-sca-deploy.xml" target="deploy" inheritall="false">
    <!-- reformat of prop names -->
    <property name="user" value="${server.user}"/>
    <property name="password" value="${server.password}"/>
    <!-- create the url for deployment -->
    <property name="serverURL" value="http://${managed.server.host}:${managed.server.port}/soa-infra/deployer"/>
    <!-- location of the sar -->
    <property name="sarLocation" value="${deploy.dir}/sca_${composite.name}_rev${composite.revision}.jar"/>
    <!-- force overwrite if already there -->
    <property name="overwrite" value="true"/>
    <!-- configplan-->
    <property name="configplan" value="${deploymentplan.name}"/>
    </ant>
    </target>
    <target name="all" depends="compile-package,deploy"/>
    </project>

    Check whether the adf-config.xml file in your app is having proper mds path similar to this:
    <adf-mds-config xmlns="http://xmlns.oracle.com/adf/mds/config">
    <mds-config xmlns="http://xmlns.oracle.com/mds/config">
    <persistence-config>
    <metadata-namespaces>
    <namespace metadata-store-usage="mstore-usage_1" path="/soa/shared"/>
    </metadata-namespaces>
    <metadata-store-usages>
    <metadata-store-usage id="mstore-usage_1">
    <metadata-store class-name="oracle.mds.persistence.stores.file.FileMetadataStore">
    <property value="${oracle.home}/integration"
    name="metadata-path"/>
    <property value="seed" name="partition-name"/>
    </metadata-store>
    </metadata-store-usage>
    </metadata-store-usages>
    </persistence-config>
    </mds-config>
    </adf-mds-config>
    "

  • DHCP cofiguration error while installing SOA suit 10.1.3

    Hi can any one suggest how to resolve DHCP cofiguration error while installing SOA suit 10.1.3. I have win7 but getting this error . Please sort out................

    platGroup = WINDOWS
    Query Returned: true
    Calling Query soaNetQueries1.0 isDhcp
    Query Returned: true
    Calling Query soaNetQueries1.0 isLoopback
    Query Returned: false
    A DHCP configuration was detected on this host. The installer also detected that the local hostname and the network hostname differ. Please resolve the networking issues by referring the "Installing on DHCP Computers" section in the installation guide.
    Calling Query generalQueries10.1.0.3.0 getInstallType
    Query Returned: allProducts
    Calling Query generalQueries10.1.0.3.0 getInstallType
    Query Returned: allProducts
    Calling Query generalQueries10.1.0.3.0 getInstallType
    Query Returned: allProducts
    Calling Query generalQueries10.1.0.3.0 getInstallType
    Query Returned: allProducts
    *** Specify Database Connect Information Page***
    Warning:*** Alert: Do you really want to exit? ***
    User Selected: Yes/OK
    User Exit
    This is the error i am getting i have gone through docs also but did not able to resolve it i have window-7 platform can we install on this 10.1.3.........or i have to follow some other method as i am getting this error........

  • OS Package Error while installing SOA 11.1.1.5.0 on Oracle Linux

    Hi,
    I am trying to install SOA Suite 11.1.1.5.0 on Linux Environment.
    While doing the prerequisite checks, I am getting some errors wrt operating system packages and kernel parameters.
    The queries I have is:
    1) If these packages are not installed, will it have some adverse effect on my installation?
    2) Also, how from where can I download these packages and how do I install them?
    OS Version is: Oracle Linux 5 Update 7
    The log for the prerequisite checks is pasted below:
    Root
    Checking operating system certification
    Expected result: One of enterprise-5.4,enterprise-4,enterprise-5,redhat-5.4,redhat-4,redhat-5,SuSE-10,SuSE-11
    Actual Result: enterprise-5.4
    Check complete. The overall result of this check is: Passed
    Checking recommended operating system packages
    Checking for gcc-4.1.0-28.4; found gcc-4.1.2-51.el5-i386.           Passed
    Checking for gcc-c++-4.1.0-28.4; found gcc-c++-4.1.2-51.el5-i386.           Passed
    Checking for setarch-1.6-1; found setarch-2.0-1.1-i386.   Passed
    Checking for sysstat-5.0.5-1; Not found.  Failed <<<<
    Checking for libstdc++-4.1.0-28.4; found libstdc++-4.1.2-51.el5-i386.        Passed
    Checking for libstdc++-devel-4.1.0-28.4; found libstdc++-devel-4.1.2-51.el5-i386.  Passed
    Checking for compat-libstdc++-296-2.96-132.7.2; found compat-libstdc++-296-2.96-138-i386.         Passed
    Checking for compat-db-4.1.25-9; Not found.      Failed <<<<
    Checking for control-center-2.8.0-12; found control-center-1:2.16.0-16.el5-i386.  Passed
    Checking for glibc-common-2.3.4-2.9; found glibc-common-2.5-65-i386.   Passed
    Checking for binutils-2.16.91.0.5-23.4; found binutils-2.17.50.0.6-14.el5-i386.      Passed
    Checking for make-3.80-202.2; found make-1:3.81-3.el5-i386.    Passed
    Check complete. The overall result of this check is: Failed <<<<
    Problem: Some recommended packages are missing (see above).
    Recommendation: You may actually have installed packages which have obsoleted these, in which case you can successfully continue with the install. If you have not, it is recommended that you do not continue. Refer to the product release notes to find out how to get the missing packages and update the system.
    Checking kernel parameters
    Checking for VERSION=2.6.18; found VERSION=2.6.18-274.el5xen.           Passed
    Checking for hardnofiles=4096; hardnofiles=1024.            Failed <<<<
    Checking for softnofiles=4096; softnofiles=1024.  Failed <<<<
    Check complete. The overall result of this check is: Failed <<<<
    Problem: The kernel parameters do not meet the minimum requirements (see above).
    Recommendation: Perform operating system specific instructions to update the kernel parameters.
    Checking Recommended glibc version
    Expected result: ATLEAST=2.5-12
    Actual Result: 2.5-65
    Check complete. The overall result of this check is: Passed
    Checking physical memory
    Expected result: 1024MB
    Actual Result: 3336MB
    Check complete. The overall result of this check is: Passed
    Any help will be appreciated.
    Cheers,
    Varun

    Hi Avi,
    Thanks for your reply.
    I was able to install the packages, not eactly the same way as u told but I downloaded them from http://public-yum.oracle.com/ and installed them manually. Was also able to change parameters.
    And Bingo, there was no pre-requisite failures while installing SOA.
    One of the probs that I'm facing now is that when I try to access the WLS Console of SOA after creating domain, I'm able to open it on the local machine using IP and localhost. But it doesn't work the same way when I use hostname. It gives an error saying No Route to the Host. Also I'm not able to access WLS Console from any other machine using IP address of the machine.
    Any inputs that can be of any help.
    Cheers,
    Varun

  • Error while installing SOA suite

    Hi,
    These are the sequence of steps I did on my windows machine
    1. Installed Oracle XE 10.2.0.1.0 database
    2. Ran rcu 11.1.1.2 to create schemas required
    3. Installed WLS 10.3.1.0
    4. Installed Loop back adapter as I am using DHCP host.
    5. Installed SOA 11.1.1.2
    6. While installing JDEV 11.1.1.2 I am getting following error and not able to proceed..
    The product maintenance level of the current installer (weblogic10.3.2) is not compatibale with the maintenance level of the product installed on your system (Weblogic 10.3.1) please obtain a compatible installer or perform maintenance on your current system to achieve the desired result.
    Please let me know how to proceed?
    Thanks!!
    Edited by: user644377 on Jan 22, 2010 4:31 AM

    I want to use WLS 10.3.1 only, can i just uninstall SOA 11.1.1.2 and install SOA 11.1.1.1??
    Looks like I have to drop the repositories created by RCU 11.1.1.2 and re-create using RCU 11.1.1.1 to use SOA 11.1.1.1 ????
    Please let me know the optimal steps to do now (what to un-install and install) to get the SOA 11.1.1.1 environment.
    And I didnot see RCU/SOA/JDEV 11.1.1.1 software in OTN. So I used 11.1.1.2.
    Please provide me the link for 11.1.1.1 software.
    Thanks!!!

  • Error while deploying SOA composite

    Hi,
    I am getting the below error while deploying the SOA composite.
    Error(45,34): Failed to compile bpel generated classes.
    failure to compile the generated BPEL classes for BPEL process "ApprovalProcess" of composite "default/ResourceSerialApproval!1.0"
    The class path setting is incorrect.
    Ensure that the class path is set correctly. If this happens on the server side, verify that the custom classes or jars which this BPEL process is depending on are deployed correctly. Also verify that the run time is using the same release/version.
    I have copied "oimclient.jar" to SCA-INF/lib directory and placed "jps-manifest.jar" in the class path of the project. Also updated the BpelcClasspath with the path of both these jars on the server.
    Please suggest me how to resolve this.
    Thanks in Advance.
    -Hrushi

    This is resolved by placing all the jar files from "OIM_HOME/oracle_common/modules/oracle.jps_11.1.1" directory to the classpath of the project.

  • Error while installing SOA suite on solaris server

    Hi Experts,
    I am trying to install SOA on solaris box:
    SOA: 11.1.1.3.0, i am getting the below error while intalling:
    *./runInstaller -jreLoc /users/oim/jrockit/jre*
    Starting Oracle Universal Installer...+
    Checking if CPU speed is above 300 MHz.    Actual 1164 MHz    Passed+
    Checking Temp space: must be greater than 150 MB.   Actual 426 MB    Passed+
    Checking swap space: must be greater than 512 MB.   Actual 8192 MB    Passed+
    Checking monitor: must be configured to display at least 256 colors+
    *>>> Could not execute auto check for display colors using command /usr/openwin/bin/xdpyinfo. Check if the DISPLAY variable is set.    Failed <<<<*
    Some requirement checks failed. You must fulfill these requirements before+
    continuing with the installation,+
    *Continue? (y/n) [n] y*+
    *>>> Ignoring required pre-requisite failures. Continuing...*
    Preparing to launch Oracle Universal Installer from /tmp/OraInstall2012-09-03_09-41-13PM. Please wait ...iamoimdev-z1> Exception in thread "Main Thread" java.lang.InternalError: Can't connect to X11 window server using '10.68.74.83:0.0' as the value of the DISPLAY variable.+
    at sun.awt.X11GraphicsEnvironment.initDisplay(Native Method)+
    at sun.awt.X11GraphicsEnvironment.access$100(X11GraphicsEnvironment.java:52)+
    at sun.awt.X11GraphicsEnvironment$1.run(X11GraphicsEnvironment.java:155)+
    at sun.awt.X11GraphicsEnvironment.<clinit>(X11GraphicsEnvironment.java:131)+
    at java.lang.Class.forName0(Native Method)+
    at java.lang.Class.forName(Class.java:169)+
    at java.awt.GraphicsEnvironment.getLocalGraphicsEnvironment(GraphicsEnvironment.java:68)+
    at sun.awt.X11.XToolkit.<clinit>(XToolkit.java:89)+
    at java.lang.Class.forName0(Native Method)+
    at java.lang.Class.forName(Class.java:169)+
    at java.awt.Toolkit$2.run(Toolkit.java:834)+
    at java.awt.Toolkit.getDefaultToolkit(Toolkit.java:826)+
    at com.jgoodies.looks.LookUtils.isLowResolution(Unknown Source)+
    at com.jgoodies.looks.LookUtils.<clinit>(Unknown Source)+
    at com.jgoodies.looks.plastic.PlasticLookAndFeel.<clinit>(PlasticLookAndFeel.java:122)+
    at oracle.as.install.engine.modules.presentation.ui.common.dialogs.SpecifyInventoryDirectoryDialog.showDialog(SpecifyInventoryDirectoryDialog.java:702)+
    at oracle.sysman.oio.oioc.OiocOneClickInstaller.main(OiocOneClickInstaller.java:555)+

    Ketan, I am logging into the system as restricted user, and then switching to admin use using
    psh su - admin command and providing password
    can i check who is the root user? IS there a method to check this out? thanks in advance.
    Edited by: 955130 on Sep 4, 2012 4:05 AM

  • Error during deploying SOA Composite

    I have created a SOA Composite in which I am trying to access an External Web Service.
    The compilation goes fine but its failing at the time of deployment to Soa Server.
    My BPEL consists of following activities-> RecieveInput-> Assign -> Invoke -> Assign -> Callback client
    In my composite I have configured WS policies and in BPEL’s invoke activity , I have added headers and endpoint URI as an expression in properties tab.
    I am getting the following error at the time of deployment :-
    1)     Through Jdeveloper and Manually through Soa Server :-
    Caused By: ORABPEL-05250
    Error deploying BPEL suitcase.
    error while attempting to deploy the BPEL component file : the exception reported is: java.lang.Exception: BPEL 1.1 compilation failed
    This error contained an exception thrown by the underlying deployment module.
    Verify the exception trace in the log (with logging level set to debug mode).
    at com.collaxa.cube.engine.deployment.DeploymentManager.deployComponent(DeploymentManager.java:200)
    at com.collaxa.cube.ejb.impl.CubeServerManagerBean._deployOrLoadComponent(CubeServerManagerBean.java:876)
    at com.collaxa.cube.ejb.impl.CubeServerManagerBean.deployComponent(CubeServerManagerBean.java:122)
    at com.collaxa.cube.ejb.impl.bpel.BPELServerManagerBean.deployComponent(BPELServerManagerBean.java:88)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    Truncated. see log file for complete stacktrace
    2)     If I deploy manually through XML files, deployment happens successfully but while testing , I get the following error
    Caused by: java.net.ConnectException: Tried all: '1' addresses, but could not connect over HTTP to server: 'www.w3.org', port: '80'
    Kindly provide any suggestions to rectify the issue.
    Thanks.

    When starting SOA Suite after upgrading from 11.1.1.4 to 11.1.1.6, I experienced a similar error in the soa_server?.out logs:
    <Error> <oracle.soa.bpel.engine.deployment> <BEA-000000> <
    java.lang.Exception: BPEL 1.1 compilation failed
    Anyone have a suggestion on how to resolve this error?

  • Error in deploying SOA composite using ant

    Hi,
    When I try to deploy a SOA composite using ant utility, I am getting error as follows:
    C:\JDeveloper11\MiddlewareHome\jdeveloper\bin>ant -f ant-sca-deploy.xml -Dserver
    URL=http://gdiora001.in.ibm.com:7001 -DsarLocation=C:\po\POProcessing\POProcessi
    ng\deploy\sca_POProcessing_rev6-cmdline.jar -Doverwrite=true -Duser=weblogic -Dp
    assword=<<password>> -DforceDefault=true -Dconfigplan=C:\po\POProcessing\POProcessin
    g\POProcessing_dev_cfgplan.xml
    Buildfile: ant-sca-deploy.xml
    [echo] oracle.home = C:\JDeveloper11\MiddlewareHome\jdeveloper\bin/..
    deploy:
    [input] skipping input as property serverURL has already been set.
    [input] skipping input as property sarLocation has already been set.
    [deployComposite] setting user/password..., user=weblogic
    [deployComposite] Processing sar=C:\po\POProcessing\POProcessing\deploy\sca_POPr
    ocessing_rev6-cmdline.jar
    [deployComposite] Adding sar file - C:\po\POProcessing\POProcessing\deploy\sca_P
    OProcessing_rev6-cmdline.jar
    [deployComposite] Creating HTTP connection to host:gdiora001.in.ibm.com, port:70
    01
    [deployComposite] Received HTTP response from the server, response code=404
    [deployComposite] Problem in sending HTTP request to the server. Check standard
    HTTP response code for 404
    [deployComposite] ---->response code=404, error:null
    BUILD SUCCESSFUL
    Total time: 14 seconds
    C:\JDeveloper11\MiddlewareHome\jdeveloper\bin>
    Please note that I am able to successfully deploy the composite from EM, using same SAR and Config Plan files.
    The server URL is also correct.
    I am not sure what is wrong with above ant command.
    Can someone please help me.
    Thanks

    Hi,
    404 response indicates that soa-infra is not running in the host:port/gdiora001.in.ibm.com, port:7001
    Pl make sure that you have soa-infra running in that host/port.
    http://host:port/soa-infra
    For the logs,
    you can find the soa server logs under $DOMAIN_HOME/servers/soa_server1/logs

  • OS Package Error while installing SOA 11.1.1.5.0 on Linux

    Hi,
    I am trying to install SOA Suite 11.1.1.5.0 on Linux Environment.
    While doing the prerequisite checks, I am getting some errors wrt operating system packages and kernel parameters.
    The queries I have is:
    1) If these packages are not installed, will it have some adverse effect on my installation?
    2) Also, how from where can I download these packages and how do I install them?
    OS Version is: Oracle Linux 5 Update 7
    The log for the prerequisite checks is pasted below:
    Root
    Checking operating system certification
    Expected result: One of enterprise-5.4,enterprise-4,enterprise-5,redhat-5.4,redhat-4,redhat-5,SuSE-10,SuSE-11
    Actual Result: enterprise-5.4
    Check complete. The overall result of this check is: Passed
    Checking recommended operating system packages
    Checking for gcc-4.1.0-28.4; found gcc-4.1.2-51.el5-i386.           Passed
    Checking for gcc-c++-4.1.0-28.4; found gcc-c++-4.1.2-51.el5-i386.           Passed
    Checking for setarch-1.6-1; found setarch-2.0-1.1-i386.   Passed
    Checking for sysstat-5.0.5-1; Not found.  Failed <<<<
    Checking for libstdc++-4.1.0-28.4; found libstdc++-4.1.2-51.el5-i386.        Passed
    Checking for libstdc++-devel-4.1.0-28.4; found libstdc++-devel-4.1.2-51.el5-i386.  Passed
    Checking for compat-libstdc++-296-2.96-132.7.2; found compat-libstdc++-296-2.96-138-i386.         Passed
    Checking for compat-db-4.1.25-9; Not found.      Failed <<<<
    Checking for control-center-2.8.0-12; found control-center-1:2.16.0-16.el5-i386.  Passed
    Checking for glibc-common-2.3.4-2.9; found glibc-common-2.5-65-i386.   Passed
    Checking for binutils-2.16.91.0.5-23.4; found binutils-2.17.50.0.6-14.el5-i386.      Passed
    Checking for make-3.80-202.2; found make-1:3.81-3.el5-i386.    Passed
    Check complete. The overall result of this check is: Failed <<<<
    Problem: Some recommended packages are missing (see above).
    Recommendation: You may actually have installed packages which have obsoleted these, in which case you can successfully continue with the install. If you have not, it is recommended that you do not continue. Refer to the product release notes to find out how to get the missing packages and update the system.
    Checking kernel parameters
    Checking for VERSION=2.6.18; found VERSION=2.6.18-274.el5xen.           Passed
    Checking for hardnofiles=4096; hardnofiles=1024.            Failed <<<<
    Checking for softnofiles=4096; softnofiles=1024.  Failed <<<<
    Check complete. The overall result of this check is: Failed <<<<
    Problem: The kernel parameters do not meet the minimum requirements (see above).
    Recommendation: Perform operating system specific instructions to update the kernel parameters.
    Checking Recommended glibc version
    Expected result: ATLEAST=2.5-12
    Actual Result: 2.5-65
    Check complete. The overall result of this check is: Passed
    Checking physical memory
    Expected result: 1024MB
    Actual Result: 3336MB
    Check complete. The overall result of this check is: Passed
    Any help will be appreciated.
    Cheers,
    Varun

    Hi Avi,
    Thanks for your reply.
    I was able to install the packages, not eactly the same way as u told but I downloaded them from http://public-yum.oracle.com/ and installed them manually. Was also able to change parameters.
    And Bingo, there was no pre-requisite failures while installing SOA.
    One of the probs that I'm facing now is that when I try to access the WLS Console of SOA after creating domain, I'm able to open it on the local machine using IP and localhost. But it doesn't work the same way when I use hostname. It gives an error saying No Route to the Host. Also I'm not able to access WLS Console from any other machine using IP address of the machine.
    Any inputs that can be of any help.
    Cheers,
    Varun

  • Error after Installing SOA App server

    Installed SOA-Oracle Application Server 10.1.3.3 as a noraml instance(admin instance is another node and it fine) and started the services and everything is running fine. but when i type the url in browser http://<ip>:7778/em i am getting The requested URL /em was not found on this server.
    I check the logs in Apache and found some error in log file there like
    "[Fri Mar 5 14:27:27 2010] [error] [client system ip] [ecid: 1267779447:<IP>:6836:0:2,0] File does not exist: /oracle-home/Apache/Apache/htdocs/em"
    OS version is Red Hat Enterprise Linux ES release 4 (Nahant Update 8)
    Kernel \r on an \m
    any idea how to troubleshoot?

    First check the port for the Enterprise Mgr. The default port for EM is provided at the end of the Oracle Application Server installation, as well as in the following text file in the install directory of the application server Oracle home:
    readme.txt
    Also see if the ASControl service is up and running for this respective instance.
    To start it using opmn, go to this ORACLE_HOME and do this:
    $ORACLE_HOME/bin/emctl.bat start iasconsole

  • Error when install soa suite

    hi
    when i install soa suite in configuration bpel proocess manager this error show
    Failed at "Could not get DeploymentManager".
    i need help really.
    log file:
    The current status of Oracle Lite Multiuser Service:
    Current State : SERVICE_RUNNING
    Acceptable Control Code : (0x1) SERVICE_ACCEPT_STOP
    c:\product\10.1.3.1\OracleAS_1\bpel\install\bin>mkdir "c:\product\10.1.3.1\OracleAS_1\bpel\system\database\olite"
    c:\product\10.1.3.1\OracleAS_1\bpel\install\bin>del /f "c:\product\10.1.3.1\OracleAS_1\bpel\system\database\olite\orabpel.odb"
    c:\product\10.1.3.1\OracleAS_1\bpel\install\bin>"c:\product\10.1.3.1\OracleAS_1\bpel\..\Mobile\Sdk\BIN\createdb.exe" orabpel "c:\product\10.1.3.1\OracleAS_1\bpel\system\database\olite\orabpel.odb" manager
    Database C:\PRODUCT\10.1.3.1\ORACLEAS_1\BPEL\SYSTEM\DATABASE\OLITE\ORABPEL.odb created (VolID = 1736).
    c:\product\10.1.3.1\OracleAS_1\bpel\install\bin>exit 0
    Could Not Find c:\product\10.1.3.1\OracleAS_1\bpel\system\database\olite\orabpel.odb
    Oracle Lite CREATEDB Version 10.2.0.2.0.
    Copyright (c) 1997, 2005, Oracle. All rights reserved.
    Exit: 0
    TASK: oracle.tip.install.tasks.DeployApps
    Deploy applications and adapters
    Port value is 6003
    Buildfile: bpminstall.xml
    init-midtier:
    Trying to override old definition of datatype echoproperties
    common_update_server.xml:
    Adding shared library apache.junit ...
    Adding shared library oracle.db.lite ...
    Adding shared library apache.commons 10.1.3 ...
    Adding shared library apache.jdom ...
    Adding shared library apache.slide ...
    Running batch script by:
    java admin_client.jar deployer:oc4j:opmn://ALVAND:6003/home -script C:\product\10.1.3.1\OracleAS_1\bpel\system\services\install\ant-tasks/bpel_admin_client_script_sl.txt
    Failed at "Could not get DeploymentManager".
    This is typically the result of an invalid deployer URI format being supplied, the target server not being in a started state or incorrect authentication details being supplied.
    More information is available by enabling logging -- please see the Oracle Containers for J2EE Configuration and Administration Guide for details.
    update_server.xml:
    restart.container:
    Stopping home container ...
    opmnctl: stopping opmn managed processes...
    ================================================================================
    opmn id=alvand:6200
    no processes or applications matched this request
    Restarting home container ...
    opmnctl: starting opmn managed processes...
    ================================================================================
    opmn id=alvand:6200
    0 of 1 processes started.
    ias-instance id=SOASuite.ALVAND
    ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    ias-component/process-type/process-set:
    default_group/home/default_group/
    Error
    --> Process (index=1,uid=2066155171,pid=2968)
    failed to start a managed process after the maximum retry limit
    Log:
    c:\product\10.1.3.1\OracleAS_1\opmn\logs\\default_group~home~default_group~1.log
    init-midtier:
    Setting up the dehydration store [olite]...
    dehydrationStore:
    Configuring data sources for olite dehydration store ...
    Deploying ORABPEL Applications...
    deploy-applications:
    Deploying Oracle BPEL Process Manager ...
    Copying 1 file to C:\product\10.1.3.1\OracleAS_1\bpel\system\services\lib
    Copying 1 file to C:\product\10.1.3.1\OracleAS_1\bpel\system\services\lib
    Copying 1 file to C:\product\10.1.3.1\OracleAS_1\bpel\system\services\lib
    Updating jar: C:\product\10.1.3.1\OracleAS_1\bpel\system\services\lib\orabpel.ear
    Running batch script by:
    java admin_client.jar deployer:oc4j:opmn://ALVAND:6003/home -script C:\product\10.1.3.1\OracleAS_1\bpel\system\services\install\ant-tasks/bpel_deployapps.txt
    Failed at "Could not get DeploymentManager".
    This is typically the result of an invalid deployer URI format being supplied, the target server not being in a started state or incorrect authentication details being supplied.
    More information is available by enabling logging -- please see the Oracle Containers for J2EE Configuration and Administration Guide for details.

    hi
    thanks
    this is my opmn.xml
    <?xml version="1.0" encoding="UTF-8" ?>
    - <opmn xmlns="http://www.oracle.com/ias-instance">
    <log path="$ORACLE_HOME\opmn\logs\opmn.log" comp="internal;ons;pm" rotation-size="1500000" />
    <debug path="$ORACLE_HOME\opmn\logs\opmn.dbg" comp="internal" rotation-size="1500000" />
    - <notification-server>
    <port local="6100" remote="6200" request="6003" />
    <ssl enabled="true" wallet-file="$ORACLE_HOME\opmn\conf\ssl.wlt\default" />
    </notification-server>
    - <process-manager>
    - <process-modules>
    - <module path="$ORACLE_HOME\opmn\lib\libopmnohs">
    <module-id id="OHS" />
    </module>
    - <module path="$ORACLE_HOME\opmn\lib\libopmnoc4j">
    <module-id id="OC4J" />
    </module>
    - <module path="$ORACLE_HOME\opmn\lib\libopmncustom">
    <module-id id="CUSTOM" />
    </module>
    - <module path="$ORACLE_HOME\opmn\lib\libopmniaspt">
    <module-id id="IASPT" />
    </module>
    </process-modules>
    - <ias-instance id="SOASuite.ALVAND" name="SOASuite.ALVAND">
    - <environment>
    <variable id="TMP" value="C:\DOCUME~1\Ali\LOCALS~1\Temp" />
    </environment>
    - <module-data>
    - <category id="start-parameters">
    <data id="routing-id" value="g_rt_id" />
    </category>
    </module-data>
    - <ias-component id="IASPT" status="disabled">
    - <environment>
    <variable id="LD_LIBRARY_PATH" value="c:\product\10.1.3.1\OracleAS_1/lib" append="true" />
    </environment>
    - <process-type id="IASPT" module-id="IASPT" working-dir="c:\product\10.1.3.1\OracleAS_1/iaspt/bin">
    <port id="ajp" range="7501-7600" />
    <process-set id="IASPT" numprocs="1" />
    </process-type>
    </ias-component>
    - <ias-component id="ASG" status="enabled" id-matching="true">
    - <process-type id="ASG" module-id="CUSTOM">
    - <environment>
    <variable id="OS" value="Windows_NT" />
    </environment>
    <start timeout="600" />
    <stop timeout="120" />
    - <process-set id="ASG" numprocs="1">
    - <module-data>
    - <category id="start-parameters">
    <data id="start-executable" value="c:\product\10.1.3.1\OracleAS_1\jdk\bin\java" />
    <data id="start-args" value="-ms20m -Djava.library.path=c:\product\10.1.3.1\OracleAS_1\bin;c:\product\10.1.3.1\OracleAS_1\dsa\bin;c:\product\10.1.3.1\OracleAS_1\oui\lib\win32 -classpath c:\product\10.1.3.1\OracleAS_1\dsa\jlib;c:\product\10.1.3.1\OracleAS_1\dsa\jlib\duf.jar;c:\product\10.1.3.1\OracleAS_1\lib\dms.jar;c:\product\10.1.3.1\OracleAS_1\oui\jlib\OraInstaller.jar;c:\product\10.1.3.1\OracleAS_1\jlib\srvm.jar;c:\product\10.1.3.1\OracleAS_1\jlib\netcfg.jar;c:\product\10.1.3.1\OracleAS_1\lib\xmlparserv2.jar;c:\product\10.1.3.1\OracleAS_1\assistants\jlib\assistantsCommon.jar;c:\product\10.1.3.1\OracleAS_1\jdbc\lib\classes12.zip;c:\product\10.1.3.1\OracleAS_1\jdbc\lib\nls_charset12.zip;c:\product\10.1.3.1\OracleAS_1\jlib\share.jar;c:\product\10.1.3.1\OracleAS_1\opmn\lib\optic.jar;c:\product\10.1.3.1\OracleAS_1\j2ee\home\jazn.jar;c:\product\10.1.3.1\OracleAS_1\jlib\ldapjclnt10.jar oracle.duf.dufserver.DufServer c:\product\10.1.3.1\OracleAS_1\dsa\dsa.conf" />
    </category>
    </module-data>
    </process-set>
    </process-type>
    </ias-component>
    - <ias-component id="default_group">
    - <process-type id="home" module-id="OC4J" status="enabled">
    - <module-data>
    - <category id="start-parameters">
    <data id="java-options" value="-Xrs -server -XX:MaxPermSize=128M -ms512M -mx1024M -XX:AppendRatio=3 -Djava.security.policy=$ORACLE_HOME/j2ee/home/config/java2.policy -Djava.awt.headless=true -Dhttp.webdir.enable=false -Doraesb.home=c:\product\10.1.3.1\OracleAS_1\integration\esb -Dhttp.proxySet=false" />
    </category>
    - <category id="stop-parameters">
    <data id="java-options" value="-Djava.security.policy=$ORACLE_HOME/j2ee/home/config/java2.policy -Djava.awt.headless=true -Dhttp.webdir.enable=false" />
    </category>
    </module-data>
    <start timeout="600" retry="2" />
    <stop timeout="120" />
    <restart timeout="720" retry="2" />
    <port id="default-web-site" range="8888" protocol="http" />
    <port id="rmi" range="12401-12500" />
    <port id="rmis" range="12701-12800" />
    <port id="jms" range="12601-12700" />
    <process-set id="default_group" numprocs="1" />
    </process-type>
    </ias-component>
    </ias-instance>
    </process-manager>
    </opmn>

  • Error while compiling SOA composite using Jdeveloper

    Hi,
    I am getting below given error while compiling the SOA composite using Jdeveloper..
    I m referring this PDF to develop a custom workflow.
    http://st-curriculum.oracle.com/obe/fmw/oim/oim_11g/developing_oim_custom_approval_process_for_self_registration/developing_oim_custom_approval_process_for_self_registration.pdf
    Error(45,34): Failed to compile bpel generated classes.
    failure to compile the generated BPEL classes for BPEL process "ApprovalProcess" of composite "default/SelfRegistrationApproval!1.0"
    The class path setting is incorrect.
    Ensure that the class path is set correctly. If this happens on the server side, verify that the custom classes or jars which this BPEL process is depending on are deployed correctly. Also verify that the run time is using the same release/version.
    Can u please let me know what am I missing here.
    Regards,
    Ab

    Hi,
    If u have any custom jars..make sure to add them at SCA-INF/lib directory.
    Thanks,

  • Opmn related error while installing SOA suite

    hi
    I am trying to install SOA suite on Linux RHEL AS4.
    rapidwiz shows the following error
    launching /u01/oracle/product/10.1.3.1/OracleAS_2/opmn/bin/opmnctl startproc
    opmnctl: starting opmn managed processes...===============================================================================
    opmn id=soalgs.lgs.com:6200
    2 of 3 processes started.
    ias-instance id=soaps.soalgs.lgs.com
    ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    ias-component/process-type/process-set:
    default_group/oc4j_soa/default_group/
    Error
    --> Process (index=1,uid=10495449,pid=12555)
    time out while waiting for a managed process to start
    Log:
    /u01/oracle/product/10.1.3.1/OracleAS_2/opmn/logs//default_group~oc4j_soa~default_group~1.log
    Configuration assistant "Oracle Process Management and Notification Configuration Assistant" failed
    I have restarted opmn services, disabled the firewall also, but couldnot get rid of the problem. when i checked status through "/.opmnctl status" command, ASG was down...should i have to bring it up?
    how do i trobleshoot?
    Thanks
    JIL

    Do an opmnctl startall and an opmnctl status afterwards.
    It happens for me to when I install it on VMware images but these are slower. I usually don't stop the installation but retry the configuration assistant.
    --olaf                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Error While Installing SOA Suite 10.1.3

    Hi,
    I have uninstalled the SOA suite (advance installation) from M/C.I am trying to install SOA suite on my M/C but I am getting error message as
    Install has detected the OAS 10.13 is already installed in this oracle home.Please choose another Oracle Home.It is giving dependencies error.
    I am making sure that there is no directory which I am giving in the installation directory but as soon as I am giving the instance name and AS admin password with the Basic install option and clicking the Install tab
    It is giving the above message.I can clear the see that it is creating new directory and referring it.
    Can anyone please help me to resolve this issue?
    Thanks

    Hi,
    you are installing on Linux or Windows?
    There is a directory called oraInventory. You have to delete that one, because Oracle stores information about all installations in that directory. But be careful:
    If you have other Oracle products installed, you should not remove this directory.
    You can try to use the OUI to perform a uninstall. After that the oraInventory should be clean...

Maybe you are looking for

  • Multiplication error in DLLs created with SIT

    I have a problem with a multiplication in a DLL created with the Mathwork's Matlab/Simulink and National Instruments SIT. When multiplying two values of different types (fixed point types) I get really strange and unexplainable results. When I run th

  • Help with Acrobat problems!!

    ok, well we just got Acrobat for our computer, and for some reason, everytime we put it in, it sounds like its going to boot up and appear on the desktop, but then it ejects itself! We tried putting in other disks, and they worked perfectly! What sho

  • WS14000075 - Error in Change PO approval

    Hi,     We are on SRM 5.0 (Server 5.5) with SP 11 and the back end is ECC 6.0. Scenario is Extended Classic. Activated WS14000075 ( standard, nothing added) for events SAVED and CHANGEVERSIONSAVED. It works ok when PO is created. When the PO changed 

  • 1 policy-map for more than 1 physical interface

    Hi, the situation I want to achieve is, that 2 physical interfaces (here 2 TP GigbitEthernet Ports of a 3750) are limited together from one 'service-policy'/'policy-map'. In the example below I have 2 Ports on one switch and the traffic coming in on

  • Is this true about Trade Ins?

    I called my local Best Buy and the rep told me that the trade in phone had to be originally purchased at Best Buy?  Does anyone know if this is true?