Error Installing OSB in SOA Suite Installing process

after install SOA, the guide for instalation says "Locate the JDK directory path within the installed middleware home. You use this path in the next command. The JDK location is jdk160_21. In a command window enter
cd c:\stageFMW\OSB\Disk1 setup -jreLoc D:\Middleware\SOASuite11gR1PS4\jdk160_24" i followed it, but the Oracle Universal Installer show in a black window the follow message "Iniciando Oracle Universal Installer...
Comprobando si la velocidad de CPU es superior a 300 MHz . 1596 MHz Reales
Aprobado
Comprobando el espacio de intercambio: debe ser mayor que 512 MB . Real 1943 M
B Aprobado
Comprobando el monitor: debe estar configurado para mostrar al menos 256 colores
Mayor que 256 . Real 4294967296 Aprobado
Preparando para iniciar Oracle Universal Installer desde C:\Users\ALEJAN~1\AppD
ata\Local\Temp\OraInstall2013-02-07_09-57-19PM. Espere...
Especifique la ubicación de JRE/JDK ( ej. /home/jre ), <ubicación>/bin/java deb
e existir:"
here i don't know what to do...
please help me

986118 wrote:
... The JDK location is jdk160_21. In a command window enter
... -jreLoc D:\Middleware\SOASuite11gR1PS4\jdk160_24Make sure you are passing the right JDK dir, is it 21 or 24 ???
Cheers,
Vlad

Similar Messages

  • Uanble to open the App server console after installing the Oracle soa suite

    Hello,
    after installing the oracle soa suite 10.3.1.0 we are unable to open the application server console. it gives "page not found" error.
    We have installed on a Win2000 server instance.
    We have selected all the default values while installing.
    any input is appreciated.
    regards

    We had the same problem today:
    1. From cmnd line, from your ...\opmn\bin directory run "opmnctl startall".
    2. That will tell you where the log files are and what they're called. If the log file error was like mine, "Could not reserve enough space for your object heap.", then you need to try setting your maxpermsize=128 in oc4j_opmn.xml and opmn.xml
    This resolved the issue for me, hope it helps.

  • OutOfMemoryException On SOA Suite installed in Linux on Amazon Cloud

    Hello, I need information about if exist any type of optimization for the SOA Suite Installed on Linux in a Cloud Aazon.
    The problem is that after working for a long time, the suite turns very slow and throws errors such as OutOfMemoryException.
    anyone knows how to fix this?
    Thankyou very much.

    Can you post the out-of-memory error's complete info here? There could be many reasons behind an out-of-memory error.
    For the benefit of other users of this community,
    If you see anything related to OutOfMemory due to Number of Threads, then set -Xss memory option to a higher value.
    If OutOfMemoryError thrown for the reason of PermGen Space size exceed then set -XX:MaxPermSize memory option to a higher value.
    -sever option helps to deal faster in thread context switching.
    -Xms and -Xmx options set starting heap size and maximum heap size respectively. Make these two values equal to get best performance in server mode and minimize GC cycle.
    Regards,
    Anuj

  • OSB to SOA suite package not forming correctly

    Setup is as follows:
    AIX 5.3 on the box, 10 gigs ram, installation of the latest releases of OSB and SOA suite on top of weblogic. I've built out a couple of simple database queries in BPEL based off wsdls, dropped them on to the SOA suite server, used EM to open a test console and plugged in some search data. Search returns successfully.
    I then open up OSB's console, create a business service to the endpoint on the soa server, and a proxy based off the same wsdl used in the BPEL construction which I then route to the business service. Both service and proxy are made with basic http for the protocol (not sure how to use the sb protocol, and not sure if that will fix the problem). Load the test console on the proxy service, which displays an xml form similar to what is used in the SOA suite. Fill out the same information, but the invoke returns BEA-380000. Following the invocation trace in OSB everything looks good in terms of package content.
    Wondering if it might simply be a problem with how the OSB interprets XML from a wsdl, I piped the XML from the SOA suite into the OSB's xml field, but to no luck, same error. After some more testing and frustration,I put the SOA suite XML straight in to the form field in the OSB test console, and it worked. However, the package itself seems oddly formed, consisting of:
    <soapenv:Envelope      xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
         <soap:Header      xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
         </soap:Header>
         <soapenv:Body>
         <soap:Envelope      xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
         <soap:Header/>
    Which I've been told is basically double wrapping the package, which shouldn't work, and more importantly wont be generated when someone uses say SOAPUI to access our service on the OSB.
    Now, on the SOA suite side of things. In EM console, I navigate to my BPEL process and can see the faults caused by the OSB. The same faults are also generated when binding to the OSB's endpoint with SOAPUI, but not when going directly to the SOA suite's endpoint. The error is the following:
    oracle.j2ee.ws.saaj.soap.SOAPVersionMismatchException: Mime Header Content-Type: text/xml requires SOAP envelope namespace: http://schemas.xmlsoap.org/soap/envelope/: Mime Header Content-Type: text/xml requires SOAP envelope namespace: http://schemas.xmlsoap.org/soap/envelope/
    And the payload sent shows as empty.
    So to my best uneducated guess, it looks like the OSB wraps the payload in an envelope, and then unwraps it before handing it to the SOA suite, which expects the payload to be wrapped. Sadly, I'm still pretty new to the wsdl/webservice/oracle world, so I'm not even sure if that's an accurate representation. Any insight on what might be happening or how to get OSB to talk with SOA suite correctly would be greatly appreciated. Included below are the XML payloads I've used (minus a bit for confidentiality reasons). Apologies if the formatting doesn't work so nice for it.
    OSB Generated (fails):
    SOAP Header:
    <soap:Header xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
    </soap:Header>
    Body:
    <ns2:SyncEmployeeIDRequest xmlns:ns="removed" xmlns:ns1="removed" xmlns:ns2="removed">
    <!--You have a CHOICE of the next 2 items at this level-->
    <ns:PersonIdentificationAssertion>
    <!--Optional:-->
    <ns1:PersonBirthDate>
    <ns1:Date>2008-09-28</ns1:Date>
    </ns1:PersonBirthDate>
    <!--Optional:-->
    <ns1:PersonGivenName>string</ns1:PersonGivenName>
    <ns1:PersonSurName>string</ns1:PersonSurName>
    </ns:PersonIdentificationAssertion>
    <ns1:DepartmentIDText>string</ns1:DepartmentIDText>
    </ns2:SyncEmployeeIDRequest>
    SOA Generated(works if plugged into OSB form field)
    SOAP Header:
    <soap:Header xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
    </soap:Header>
    <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
         <soap:Header></soap:Header>
         <soap:Body xmlns:ns1="removed">
              <ns1:SyncEmployeeIDRequest xmlns:ns2="removed">
                   <ns2:PersonIdentificationAssertion xmlns:ns3="removed">
                        <ns3:PersonBirthDate>
                             <ns3:Date>2008-09-28</ns3:Date>
    </ns3:PersonBirthDate>
                        <ns3:PersonGivenName>string</ns3:PersonGivenName>
                        <ns3:PersonSurName>string</ns3:PersonSurName>
    </ns2:PersonIdentificationAssertion>
    </ns1:SyncEmployeeIDRequest>
    </soap:Body>
    </soap:Envelope>
    Working Request Document in OSB:
    <soapenv:Envelope      xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
         <soap:Header      xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
         </soap:Header>
         <soapenv:Body>
         <soap:Envelope      xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
         <soap:Header/>
         <soap:Body      xmlns:ns1="removed">
         <ns1:SyncEmployeeIDRequest      xmlns:ns2="removed">
         <ns2:PersonIdentificationAssertion      xmlns:ns3="removed">
         <ns3:PersonBirthDate>
         <ns3:Date>2008-09-28</ns3:Date>
         </ns3:PersonBirthDate>
         <ns3:PersonGivenName/>
         <ns3:PersonSurName>ALastName</ns3:PersonSurName>
         </ns2:PersonIdentificationAssertion>
         </ns1:SyncEmployeeIDRequest>
         </soap:Body>
         </soap:Envelope>
         </soapenv:Body>
         </soapenv:Envelope>
    If I can provide anymore information that will help shed light on this issue please let me know.
    Thank you for your time.
    ~Nick

    Problem solved. When I originally created my business service inside of OSB, I created it based off an endpoint provided by the SOA server. Instead, I went and did a mass import from a url, pointed it at the SOA server wsdl, and then built the web service off of that wsdl resource in the OSB. Now it works like a charm.

  • OSB and SOA Suite in the Java Cloud

    Hi All -- the question is rather to a technical support personnel of the Oracle Cloud,
    Is it possible to deploy and run the OSB and SOA Suite applications on the Oracle Java Cloud? To be more precise:
    1. Is the WL server in the cloud configured to contain the Oracle Soa Suite?
    2. Is the WL server in the cloud configured to contain the Oracle Service Bus?
    If not: would it be possible to configure the Cloud WL domains the way that these are supported?
    What we need are two servers (or two clusters): a SOA Suite application runs on one, while the OSB application runs on the other.
    Thanks for help.

    Hi Chris,
    Oracle's statement of direction that you can find at
    http://www.oracle.com/technology/products/integration/service-bus/docs/Oracle-Service-Bus-SOD.pdf
    there will be convergence of the 2 products that basically address 2 different use cases (see Statement of Direction).
    In my opinion new tools will be added to Jdeveloper to develop and deploy on Oracle Service Bus (OSB). In present OSB version, OSB tools are not part of Jdeveloper and transformations use XQuery instead of XSLT (as for Oracle ESB).
    Hope this help you a little bit.
    Regards,
    Jean-Pierre

  • OSB vs SOA suite

    What is difference and relationship between OSB and SOA suite?
    I see much much overlap between the two.
    1.DB adapter, mq adapter, file adapter, app adapter,etc, exist in oracle service bus 10.3.1.Also SOA suite 11g has all theses components.
    2.OSB is a WL domain in running time, SOA suite is also a WL domain in running time.
    The difference is OSB does not support BPEL but SOA suite does.
    Seems most of things done by OSB can also been done by SOA suite.
    In what scenario we should use OSB and in what scenario we should use SOA suite instead?
    Can someone give some helps on this?
    Thanks
    Edited by: user11997125 on May 20, 2010 2:28 AM
    Edited by: user11997125 on May 20, 2010 2:29 AM

    OSB is like the name says a 'Service Bus' and the soa suite is a suite of components which can be used to create a service oriented architecture. In this suite there isn't and service bus available for you.
    So both products complement each other.
    It's true most actions can be done in both the products/suites, but you should see them both in 1 total solution. After that decide what you design in the osb and what you design in the soa suite components.
    if you check wikipedia for the definition of a service bus, you will see what the strengths are (or should be), some line virtualization/transformation/routing/etc.
    from my point of view i would say, you create your interface on the service bus, keep the flows in the service bus lightweigh, and route to the 'real' services. These could be modelled in the soa suite components, and in there do the business logic

  • Oracle SOA Suite Install Error on Vista 64 bit

    Hi All,
    I am trying to install SOA Suite 10.1.3.1.0 on Vista 64 bit windows. I downloaded Correct version from the Oracle Site. when I click on Setup exe it is throwing following error?
    "The Version of this is file is not compatible with the version of windows you're running. Check your computer system information to see whether you need x86(32bit) or (64bit) version o of the program " I saw couple of threads need to change the scripts to install.
    Please let me know which script file I need to change?
    Thanks in Advance,
    -Venkat

    Hi,
    Iam also facing the same problem, how did you resolve it?
    Pl let me know if you have a solution for this
    Thanks
    R.G

  • Single SOA Suite Install with multiple oc4j instances and java processes

    We right now have 5 BPEL processes and 5 ESB processes all running under one java.exe process. We would like to seperate some of
    them out into their own java.exe processes without having to install more
    %ORACLE_HOME% instances of SOA Suite. I can create an oc4j instance but of
    course it doesn't have any SOA Suite stuff deployed to it. I tried to see what
    the install would do with this new oc4j instance but it wants to create a new
    %ORACLE_HOME% with an entire installation of SOA Suite.
    Is there some sort of way to clone oc4j instances that have SOA Suite deployed to them so that you
    don't need multiple %ORACLE_HOME% instances?
    ### How is this Issue Impacting Your Business ###
    We really don't want to have a lot of %ORACLE_HOME% instances to have to maintain. We are
    migrating projects over from our current integration server product and we'll
    have potentially dozens more BPEL and ESB projects. We definitely want to
    group and isolate projects so that outages of one project do not bring down
    others that are unrelated.
    We are currently experiencing periodic problems with one BPEL project that requires recycling but all the other BPEL and ESB
    projects get recycled also. If we could put this project into it's own java
    process without creating another SOA SUITE instance, it would be a big
    help.
    ANSWER
    =======
    You can create multiple domains in BPEL or create multiple systems/groups in ESB to group different projects.
    MY REPLY:
    =========
    We have been using systems/groups in ESB but they all run under the save java.exe process. I would assume that having a seperate domain in BPEL would also run in that same java.exe process.
    Right now, the one BPEL project we have a problem with will gobble up all the JDBC connections from time to time and that requires a recycle of SOA Suite, which means all BPEL and ESB projects that run in that java.exe process get recycled also. We're working that issue in a different ticket.
    It would be nice if the SOA Suite installation would install against a new oc4j instance and not assume it has to create a complete %ORACLE_HOME% instance. The components of SOA Suite seem to be J2EE based components.
    Scenario: I already have an oc4j instance called oc4j_soa and a complete %ORACLE_HOME% installation of soa suite. I then create a new oc4j instance from Enterprise Manager. Then I would deploy the esb-dt, esb-rt, orabpel, etc. components of SOA Suite to that new oc4j instance and modify the necessary config file so that it can work with OHS and the SOA Suite Databases. Is this possible?
    Does anyone have any experience with this or do people typically install multiple complete installation of SOA Suite with mulitple Oracle Homes?

    Hi,
    yes, on metalink you get in touch with real experts....
    You have to install serveral application servers to get different ORACLE_HOMEs.
    For each one, you can install a BPEL PM.
    But: For each BPEL PM you need your own database instance, or you have to configure them as a clustered BPEL installation.... (but i do not know if this work with non RAC DBs)

  • Where is Oracle Lite DB installed? In Soa Suite inst. dir? Service needed?

    As far as I know Soa Suite can use a separate "full" Oracle (Express) DB.
    However user can omit this separate DB and use the built-in "Oracle lite" Database.
    Is this Oracle lite DB installed in the installation directory of Soa Suite or somewhere else on the hard disc?
    Does it need a Win service to run (similar to "full" Oracle DB) or does it run on-demand
    in AppServer?
    Peter

    you can go from olite to full DB, but not the other way round. When you do this change you may lose state in your inflight messages.
    to migrate from olite to Oracle DB do the following:
    1.) Ensure that the new target database is running.
    2.) Run IRCA script to create schemas for BPEL, ESB and OWSM in the new Database:
    Eg: irca all "localhost 1521 v102" welcome -overwrite3.) Make a backup of the file:
    ${OC4J_HOME}\config\data-sources.xml4.) Change the following ESB and BPEL connection pools to point to new DB resource.
    * BPELPM_CONNECTION_POOL
    * ESBAQJMSPool
    * ESBPool
    You can use either Enterprise Manager Console to perform this changes or edit the file: ${OC4J_HOME}\config\data-sources.xml
    Below is a sample of configuration for BPELPM_CONNECTION_POOL:
    <connection-pool name="BPELPM_CONNECTION_POOL">
    <connection-factory factory-class="oracle.jdbc.pool.OracleDataSource"
    user="orabpel_OracleAS_1"
    password="orabpel" url="jdbc:oracle:thin:@localhost:1521:xe"/>
    </connection-pool>5.) If you are changing from Olite DB to Oracle EE, look in the project's build.properties files for DB_URL and change DB_VENDOR from "olite" to "oracle"
    DB_VENDOR=oracleotherwise no change is neccesary.
    6.) Update ESB Metadata - Log into ESB schema (ORAESB) and change the value of DT_OC4J_HOST and DT_OC4J_HTTP_PORT to match your environment Hostname and Port and by running the following SQL script:
    insert into esb_parameter values('ACT_ID_RANGE', '400');
    insert into esb_parameter values('DT_OC4J_HOST', 'soainternal.mycompany.com');
    insert into esb_parameter values('DT_OC4J_HTTP_PORT', '7777');
    insert into esb_parameter values('PROP_NAME_INITIAL_CONTEXT_FACTORY', 'com.evermind.server.rmi.RMIInitialContextFactory');
    insert into esb_parameter values('PROP_NAME_DEFERRED_TCF_JNDI', 'OracleASjms/MyTCF');
    insert into esb_parameter values('PROP_NAME_DEFERRED_XATCF_JNDI', 'OracleASjms/MyXATCF');
    insert into esb_parameter values('PROP_NAME_DEFERRED_TOPIC_JNDI','OracleASjms/ESBDeferredTopic');
    insert into esb_parameter values('PROP_NAME_ERROR_TCF_JNDI', 'OracleASjms/MyTCF');
    insert into esb_parameter values('PROP_NAME_ERROR_XATCF_JNDI', 'OracleASjms/MyXATCF');
    insert into esb_parameter values('PROP_NAME_ERROR_TOPIC_JNDI', 'OracleASjms/ESBErrorTopic');
    insert into esb_parameter values('PROP_NAME_ERROR_RETRY_JNDI', 'OracleASjms/ESBErrorRetryTopic');
    insert into esb_parameter values('PROP_NAME_ERROR_RETRY_TCF_JNDI', 'OracleASjms/MyXATCF');
    insert into esb_parameter values('PROP_NAME_MONITOR_TCF_JNDI', 'OracleASjms/MyTCF');
    insert into esb_parameter values('PROP_NAME_MONITOR_TOPIC_JNDI', 'OracleASjms/ESBMonitorTopic');
    insert into esb_parameter values('PROP_NAME_CONTROL_TCF_JNDI', 'OracleASjms/MyXATCF');
    insert into esb_parameter values('PROP_NAME_CONTROL_TOPIC_JNDI', 'OracleASjms/ESBControlTopic');
    commit;
    select * from esb_parameter7.) Restart the SOA container and verify the opmn and J2EE container logs for any errors.
    cheers
    James

  • Issue w/SOA Suite Install 10.1.3.1

    I'm trying to install the SOA suite on Vista. I ran the install in admin mode and it was fine withe deploying the objects, however during the configuration part, I got an error on teh BPEL config.
    Failed at "could not get deployment manager"
    This is typically the result of an invalid URI format being supplied. the target server not bing in started state or incorrect authentication details being supplied.
    Any thoughts?
    Thanks in advance

    Hi,
    There are some Vista specific install instructions for installing SOA. Did you happen to follow them?
    I'm wondering if you don't have some network settings that need to be changed?
    Thanks.

  • Failure of SOA Suite install

    Installed SOA Suite (Win2K) - no problem, can access the SOA Suite.
    However, after reboot system and cannot access the SOA Suite. Error is The Page cannot be displayed.
    I have tried this three times - same problem.
    Loopback adapter has been installed and works for other product. In the Control panel there are no entries in the Services window for the SOA Suite.
    PLEASE let me know what the problem is or what to do to get it running.
    Thanks - Ken

    The Basic Install option does not create a Windows Service so you won't see the SOA Suite there (it was there in the May version of the beta but no longer). You do get Olite there.
    So, after rebooting, Olite is started but not the suite. You have to start the suite manually. Use the Windows Start menu and "Start SOA Suite" from the SOA Suite program group.
    Note that you have to have a status of Alive before you continue. If you get Init, just Start again for updated status (doesn't actually keep starting the server, just gives you new status).
    Heidi.

  • Installing B2B with SOA suite 10.3.1

    I have installed SOA suite 10.3.1 and Oracle XE as DB. Now, I want to install B2B, could anyone give me pointers as to where to download it from and how to go about the installation process. Thanks in advance

    Hello,
    The latest version of Oracle AS B2B is 10.1.2.0.2. Please download B2B from OTN Download site under Application server + Application Server 10g (10.1.2.0.2) + Application Server Integration(10.1.2.0.2).
    Please let us know if you have any questions.
    Also, you may be interested in taking a look at the Installation Best practices document for B2B and SOA suite in the following URL.
    http://www.oracle.com/technology/products/integration/b2b/pdf/B2B_SOA_Suite_Installation.pdf
    Rgds,Ramesh

  • Do I need IIS or Task Scheduler for a windows install of the SOA suite

    I am currently trying to set a R&D SOA environment up on a windows box. By default these services are disabled when we usually set up our application servers within dev. So do I need IIS and task scheduler to be running on the windows environment when I install the SOA suite?

    Hi,
    you do not need the IIS because SOA Suite is shipped with its own Apache.

  • Error while starting Oracle SOA Suite 10g

    Hi,
    I have installed Oracle SOA suite in my system.
    While i start the server , it shows the following error in log file.
    Configuration information
    Running in D:\product\10.1.3.1\OracleAS_1
    Operation mode:Startup, App Server, No Enterprise Manager, Single Instance
    Oracle home:D:\product\10.1.3.1\OracleAS_1
    Oracle home name:Unnamed
    Instance name:esbsoa.localhost
    Instance type:allProducts
    Version:10.1.3.1.0
    Uses infrastructure:false
    Not an infrastructure instance, no infrastructure information available
    Components:[j2ee, orabpel, oraesb, owsm, Wsil]
    2011-03-23 10:09:24.757--Begin log output for Mid-tier services (esbsoa.localhost)
    2011-03-23 10:09:24.757--Processing Step: starting OPMN
    2011-03-23 10:09:45.835--End log output for Mid-tier services (esbsoa.localhost)
    OPMN has thrown an unknown exception
    oracle.appserver.startupconsole.model.ConsoleException: OPMN has thrown an unknown exception
         at oracle.appserver.startupconsole.control.OPMNController.doStart(OPMNController.java:108)
         at oracle.appserver.startupconsole.control.Controller.start(Controller.java:69)
         at oracle.appserver.startupconsole.control.GroupController.doStart(GroupController.java:47)
         at oracle.appserver.startupconsole.control.Controller.start(Controller.java:69)
         at oracle.appserver.startupconsole.view.controller.ControllerAdapter.start(ControllerAdapter.java:30)
         at oracle.appserver.startupconsole.view.controller.MasterControlAdapter.run(MasterControlAdapter.java:94)
         at oracle.appserver.startupconsole.view.Runner.main(Runner.java:39)
    Caused by: oracle.ias.opmn.optic.OpticBadRequestException: Error starting opmn server: 2
         at oracle.ias.opmn.optic.OpmnAdmin.executeCommand(OpmnAdmin.java:147)
         at oracle.ias.opmn.optic.OpmnAdmin.startOpmnServer(OpmnAdmin.java:77)
         at oracle.appserver.startupconsole.control.OPMNController.doStart(OPMNController.java:90)
         ... 6 more
    Exception caused by
    Error starting opmn server: 2
    oracle.ias.opmn.optic.OpticBadRequestException: Error starting opmn server: 2
         at oracle.ias.opmn.optic.OpmnAdmin.executeCommand(OpmnAdmin.java:147)
         at oracle.ias.opmn.optic.OpmnAdmin.startOpmnServer(OpmnAdmin.java:77)
         at oracle.appserver.startupconsole.control.OPMNController.doStart(OPMNController.java:90)
         at oracle.appserver.startupconsole.control.Controller.start(Controller.java:69)
         at oracle.appserver.startupconsole.control.GroupController.doStart(GroupController.java:47)
         at oracle.appserver.startupconsole.control.Controller.start(Controller.java:69)
         at oracle.appserver.startupconsole.view.controller.ControllerAdapter.start(ControllerAdapter.java:30)
         at oracle.appserver.startupconsole.view.controller.MasterControlAdapter.run(MasterControlAdapter.java:94)
         at oracle.appserver.startupconsole.view.Runner.main(Runner.java:39)
    Also when i got the following error in command prompt
    D:\product\10.1.3.1\OracleAS_1\opmn\bin>opmnctl stopall
    Could not create process by
    F:\product\10.1.3.1\OracleAS_1\opmn\bin\opmn.exe -a -q ping
    with error The system cannot find the path specified.
    (GetLastError()=3
    I have renamed the F: directory to D: , is it the problem ?
    Edited by: Lalit on Mar 22, 2011 10:44 PM

    Got resolved

  • Error While Installation of SOA SUITE 11g

    Hi
    I am installing SOA SUITE 11g on Oracle Linux 4.
    I have already installed Oracle database 11g
    I have installed Weblogic server 10.3.x
    I have checked oracle database , i am able to run it successfully.
    I have checked weblogic server too, its too running successfully.
    I have logged into server as *"oracle" user* and trying to run runInstaller from command prompt
    the trace for error getting generated is below. plz let me know where i am making mistake.
    I am new to SOA SUITE n related technologies..
    ++[oracle@localhost ~]$ cd SOA_SUITE/Disk1++
    ++[oracle@localhost Disk1]$ ls++
    ++doc install runInstaller setup.exe stage++
    ++[oracle@localhost Disk1]$ ./runInstaller++
    ++Starting Oracle Universal Installer...++
    ++Checking if CPU speed is above 300 MHz. Actual 1992 MHz Passed++
    ++Checking Temp space: must be greater than 150 MB. Actual 233511 MB Passed++
    ++Checking swap space: must be greater than 500 MB. Actual 5023 MB Passed++
    ++Checking monitor: must be configured to display at least 256 colors++
    ++>>> Could not execute auto check for display colors using command /usr/X11R6/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/OraInstall2010-02-23_05-49-23PM. Please wait ...++
    ++Please specify JRE/JDK location ( Ex. /home/jre ), <location>/bin/java should exist :++
    ++Please specify a valid JRE/JDK location :/root/Oracle/Middleware/jdk160_14_R27.6.5-32++
    ++Please specify a valid JRE/JDK location :++
    I am trying to give JRE/JDK location which i got when i was installing weblogic server but its not accepting that and i am getting
    "Please specify a valid JRE/JDK location : " message again.
    Please let me know how i can i get out of this error.
    Thanks
    vishnu kumar

    Hi,
    check for some spaces or character which might be going while you specify the JRE locations, alternatively you can call runInstaller with
    -jreLoc ,i.e;have the path in the cmd.
    ./runInstaller -jreLoc /root/Oracle/Middleware/jdk160_14_R27.6.5-32
    which should work.
    regards,
    Jitendra

Maybe you are looking for