Downgrading JDK of a remote Solaris to install WebLogic Server 10.0

Hello all,
I've been assigned a virtual machine at my intern that needs WebLogic installed on it as part of my training. While going through WebLogic 10.0 compatibility notes in the Oracle website I have found that it requirea a 1.5 JDK while the Solaris machine is running the following:
Java(TM) SE Runtime Environment (build 1.6.0_21-b06)
Java HotSpot(TM) Server VM (build 17.0-b16, mixed mode)
It's 1.6. And apparently I need to downgrade since, from what I've read, WebLogic Server 10.0 is only compatible with JDK 1.5 (5.0 and later).
The machine has the following specifications:
# uname -a && cat /etc/*release
SunOS ELSOLT01 5.10 Generic_142910-17 i86pc i386 i86pc
Oracle Solaris 10 9/10 s10x_u9wos_14a X86
Could someone who has encountered a similar problem give me a few pointers on how to downgrade a remote machine using SSH? I have .sh and .tar files of JDK 1.5
Much appreciated.

"...only compatible with JDK 1.5 (5.0 and later)."
I think this would include 1.6 too (5 and later).
If you want to use another Java version with WebLogic you have to adjust the setDomainEnv.sh.
Note that when you install WebLogic, you only have software there is not yet any runtime.
What you do is from this software you create a domain (which is still software). When you create
a domain, there is also a setDomainEnv.sh file create. In this file you find the following entries:
WL_HOME="/location/wlserver_10.3"
export WL_HOME
BEA_JAVA_HOME="/location/jrockit_160_24_D1.1.2-4"
export BEA_JAVA_HOME
SUN_JAVA_HOME="/location/some_version_of_the_JDK"
export SUN_JAVA_HOME
# added JAVA_VENDOR property
JAVA_VENDOR="Oracle"
export JAVA_VENDOR
# added USER_MEM_ARGS, which override the memory settings
# the following shows a JRockit example
USER_MEM_ARGS="-Xms512m -Xmx512m -Xns256m -XXkeepAreaRatio:25 -Xgcprio:pausetime -XpauseTarget:200ms"
export USER_MEM_ARGS
# the following shows a (Sun) HotSpot example
#USER_MEM_ARGS="-Xmx512m -Xms512m -Xmn256m -XX:SurvivorRatio=8 -XX:TargetSurvivorRatio=90 -XX:MaxTenuringThreshold=31 -XX:PermSize=128m -XX:MaxPermSize=128m -XX:+UseConcMarkSweepGC"
#export USER_MEM_ARGS
if [ "${JAVA_VENDOR}" = "Oracle" ] ; then
     JAVA_HOME="${BEA_JAVA_HOME}"
     export JAVA_HOME
else
     if [ "${JAVA_VENDOR}" = "Sun" ] ; then
          JAVA_HOME="${SUN_JAVA_HOME}"
          export JAVA_HOME
     else
          JAVA_VENDOR="Oracle"
          export JAVA_VENDOR
          JAVA_HOME="C:/bea/jrockit_160_24_D1.1.2-4"
          export JAVA_HOME
     fi
fi
# We need to reset the value of JAVA_HOME to get it shortened AND
# we can not shorten it above because immediate variable expansion will blank it
JAVA_HOME="${JAVA_HOME}"
export JAVA_HOMEBy letting the JAVA_HOME point to the right directory you can alter the JVM with which WebLogic runs.
The setDomainEnv.sh file is located in the <middleware-home>/user_projects/domains/<domain-name>/bin directory.
Copy the new JDK files to the Solaris machine (you could probably also you something like winscp (http://winscp.net/eng/index.php) when
you copy the files from a Windows machine).
Install the JDK (usually a JDK to be installed on Solaris constists of two steps install 32bits than install 64 bits)

Similar Messages

  • How to identify the installed Weblogic Server and JDK are 32bit or 64bit?

    Hi everyone,
    I have a question ~
    Both Weblogic Server and JAVA JDK are installed on the server already, but I only know the Weblogic Server is 10.3.4.0 and JAVA JDK version is 1.6.0_25.
    I know the 64bit Weblogic Server installation file is a wlsXXXX_generic.jar package and 64bit JAVA JDK needed also.
    But, since the Weblogic installed already, there are no such installation files on the Linux Server now.
    I have tried the "java -version" for java version and check the Weblogic version from Weblogic console.
    How to identify the installed Weblogic Server and JDK are 32bit or 64bit with Linux command? Or is there any way to check it?

    What you can try to do is use WLST (or an MBean browser, such as JConsole or JRockit Mission Control) and connect to the adminserver.
    For example when using WLST:
    # set the environment by using setWLSEnv.sh (located in the ${WL_HOME}/server/bin directory).
    # start WLST by using: java weblogic.WLST
    # connect to the adminserver
    connect('adminusername','adminpassword');
    # change to the serverruntime environment
    serverRuntime();
    # show the attributes
    ls();
    # Here an attribute is shown called WebLogicVersion that shows the version of WebLogic
    -r--   WeblogicVersion                              WebLogic Server 10.3.5.0  Fri Apr 1 20:20:06 PDT 2011 1398638
    # Note that this does not show if is 32 bits or 64 bits to retrieve this information you have obtain the JVM version
    # change the directory
    cd('JVMRuntime/AdminServer');
    # show the attributes
    ls();
    -r--   Version                                      R28.0.1-21-133393-1.6.0_20-20100512-2126-linux-x86_64
    # when you have something like x86 at the you are running a 32 bit version, if you have something like x86_64 you are running a 64 bits versionAs mentioned above you can also retrieve this information by using a MBean browser.

  • Unable to install Weblogic server 64 bit 10.3.0

    I am trying to install Weblogic server 64 bit 10.3.0.
    Downloaded the generic net installer zip file of 64 bit. And installing using the jar file installer.jar by pre-installed 64 bit JDK version 1.6.0_22.
    During installation, while installing the files I get "A fatal error has occurred. This application will terminate."
    While browsing through the installation logs the below is what I see:
    2011-04-13 01:54:53,358 ERROR [WizardController] com.bea.plateng.wizard.TargetWalker - An invalid task was encountered
    com.bea.plateng.wizard.tasks.InvalidTaskException: ------------------------------- InvalidTaskException -------------------------------
    WCF Task Name: determineScripts
    Class: com.bea.plateng.wizard.domain.silent.tasks.DetermineScriptsForComponentTask
    Unable to locate task class!
    java.lang.ClassNotFoundException: com.bea.plateng.wizard.domain.silent.tasks.DetermineScriptsForComponentTask
         at com.bea.plateng.wizard.tasks.TaskFactory.createTask(TaskFactory.java:36)
         at com.bea.plateng.wizard.TargetWalker.instantiateTask(TargetWalker.java:172)
         at com.bea.plateng.wizard.TargetWalker.next(TargetWalker.java:103)
         at com.bea.plateng.wizard.WizardController.nextTask(WizardController.java:664)
         at com.bea.plateng.wizard.WizardController.run(WizardController.java:519)
         at java.lang.Thread.run(Thread.java:662)
    Caused by: java.lang.ClassNotFoundException: com.bea.plateng.wizard.domain.silent.tasks.DetermineScriptsForComponentTask
         at java.net.URLClassLoader$1.run(URLClassLoader.java:202)
         at java.security.AccessController.doPrivileged(Native Method)
         at java.net.URLClassLoader.findClass(URLClassLoader.java:190)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:307)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:248)
         at com.bea.plateng.wizard.tasks.TaskFactory.createTask(TaskFactory.java:32)
         ... 5 more
    2011-04-13 01:54:53,359 ERROR [WizardController] com.bea.plateng.wizard.WizardController - Uncaught Exception
    java.lang.NullPointerException
         at com.bea.plateng.wizard.TargetWalker.configureTask(TargetWalker.java:273)
         at com.bea.plateng.wizard.TargetWalker.next(TargetWalker.java:104)
         at com.bea.plateng.wizard.WizardController.nextTask(WizardController.java:664)
         at com.bea.plateng.wizard.WizardController.run(WizardController.java:519)
         at java.lang.Thread.run(Thread.java:662)
    Please help with the installation. I doubt if there could be any missing files...

    It was my mistake that I was execuing the installer.jar. The downloaded zip file server103_generic.zip has to be renamed to a jar file server103_generic.jar and the same has to be executed.

  • Error occur when installing weblogic server 10.3.3?

    Hello,
    I try to install weblogic server 10.3.3 in REDHAT linux 5.4 x86_64 (64-bit) server.
    as installation manul direct (http://download.oracle.com/docs/cd/E14571_01/doc.1111/e14142/guimode.htm#BABIFBII) , run
    java -jar wls1033_generic.jar ( by the way, command "java -d64 -jar wlsversion_generic.jar" won't work at all)
    in the x window, I can see the first page (weblogic 10.3.3...)
    then before getting welcome page, I saw a dialog occured like
    "A fatal erro has occured, this application will terminate"
    What is wrong?
    Thanks
    Jerry
    cc:
    $ java -version
    java version "1.4.2"
    Java(TM) 2 Runtime Environment, Standard Edition (build 2.3)
    IBM J9 VM (build 2.3, J2RE 1.4.2 IBM J9 2.3 Linux amd64-64 j9vmxa64142-20080923 (JIT enabled)
    J9VM - 20080922_23329_LHdSMr
    JIT - 20080815_1845_r8
    GC - 200809_04)
    try to query JDK
    $rpm -qa | grep jdk
    (nothing appear... seems like I need to install 64 bit JDK), if yes, how?

    I think your Java environment is a little out of date. I believe JDK 1.6.0_11 or higher is required for Weblogic 10.3.3
    You can get an updated version at
    http://java.sun.com/javase/downloads/widget/jdk6.jsp
    Also recommend you uninstall the IBM Java build you currently have installed.

  • Install weblogic server 6 with sp1 failure in W2K

    When I install weblogic server 6 with sp1 in W2K,
    InstallAnyWhere display, when InstallAnyWhere process 100%,
    there is nothing in my display about the Install.
    there is weblogic600sp1_ and javaw in Windows Task manager->process.
    I have install JDK1.3

    If I remember correctly, you should make sure that the JDK is not in your
    path.
    Michael Girdley
    BEA Systems
    Learning WebLogic? http://learnweblogic.com
    "yshyang" <[email protected]> wrote in message
    news:[email protected]..
    When I install weblogic server 6 with sp1 in W2K,
    InstallAnyWhere display, when InstallAnyWhere process 100%,
    there is nothing in my display about the Install.
    there is weblogic600sp1_ and javaw in Windows Task manager->process.
    I have install JDK1.3

  • I can't install weblogic server 10.3 found error

    I have install to 65% and found error.
    i want to know why i can't install weblogic server 10.3 (may be error was create by jdk or anything else Please tell me! )
    and how many  problem  that can happen when install weblogic server 10.3
    ps. - OS that i install is windowsXP  sp2

    Without giving us any details about what error you got, or any circumstances of your environment (just the OS isn't enough), there is no way anyone could give you any help.

  • Problem installing weblogic server 8.11

    I have a problem while installing weblogic server 8.11 on a solaris 9 machine.
    I use the following instruction: ./filename.bin and I see the following message:
    Illegal instruction (memory dumped)
    (in french: instruction incorrecte (vidage memoire))
    A core file is generated but it doesn't help resolving this problem. It seems
    to be talking about unzip, as I found things like this message in this file:
    error: cannot allocate unzip buffers
    unzipsfx: cannot find myself! [%s]
    error [%s]: missing %ld bytes in zipfile
    I also tryed to install weblogic server 8.10 and no core file is generated but
    I have the following message:
    error [export/home/tleberre/net_server810_solaris32.bin]: missing 570 byes in
    zipfile
    (attempting to process anyway)
    ** Error during init, error code = 2.
    I first thought the file I downloaded was incomplete, so I downloaded it again
    but I still have the same problem. Can anyone help me? What have I forgotten to
    do?
    Thank you
    Tanguy Le Berre

    "Tanguy" == Tanguy Le Berre <[email protected]> writes:
    Tanguy> I have a problem while installing weblogic server 8.11 on a solaris 9 machine.
    Tanguy> I use the following instruction: ./filename.bin and I see the following message:
    Tanguy> Illegal instruction (memory dumped)
    Tanguy> (in french: instruction incorrecte (vidage memoire))
    Tanguy> A core file is generated but it doesn't help resolving this problem. It seems
    Tanguy> to be talking about unzip, as I found things like this message in this file:
    Tanguy> error: cannot allocate unzip buffers
    Tanguy> unzipsfx: cannot find myself! [%s]
    Tanguy> error [%s]: missing %ld bytes in zipfile
    Tanguy> I also tryed to install weblogic server 8.10 and no core file is generated but
    Tanguy> I have the following message:
    Tanguy> error [export/home/tleberre/net_server810_solaris32.bin]: missing 570 byes in
    Tanguy> zipfile
    Tanguy> (attempting to process anyway)
    Tanguy> ** Error during init, error code = 2.
    Tanguy> I first thought the file I downloaded was incomplete, so I downloaded it again
    Tanguy> but I still have the same problem. Can anyone help me? What have I forgotten to
    Tanguy> do?
    Well, perhaps one thing you've forgotten is that it's better to write notes
    about particular problems in the newsgroup or mailing list that is most
    appropriate to the problem. If people who read this newsgroup only know about
    the webserver, then they won't have any idea how to help you with installation
    problems with WebLogic server, which this clearly is (the "webserver" is not
    "WebLogic Server", but only part of the entire package).
    Have you made an attempt to contact BEA support? It seems likely that your zip
    file is corrupt.
    ===================================================================
    David M. Karr ; Java/J2EE/XML/Unix/C++
    [email protected] ; SCJP; SCWCD; SCBCD

  • Fetal error while installing weblogic server 12c on windows 64 bit

    Dear all,
    i have windows7 64bit, oracle 11g database, and my java version as i enter the JAVA -VERSION command at the cmd prompt is below
    C:\Users\Administrator>java -version
    java version "1.4.2_06"
    Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_06-b03)
    Java HotSpot(TM) Client VM (build 1.4.2_06-b03, mixed mode)i want to install weblogic server generic wls1211_generic.jar.
    when i enter the command
    java -Xmx1024m -jar wls1211_generic.jar
    or
    java -Xmx1206m -jar wls1211_generic.jar
    it try to open the installation but give a fatal error like below
    A fatal error occured, this application will terminate.
    any idea?

    Hi,
    i did the same as you said, i.e i add this path to the PATH variable C:\Program Files (x86)\Java\jdk1.7.0
    add the bin directory to this path, so you should have C:\Program Files (x86)\Java\jdk1.7.0\bintest it in the command prompt with java -version and it should prompt you java 1.7
    also be sure the generic jar is not corrupted.
    and one more thing you should use this command to install with generic jar:
    java -jar wls1211_generic.jar
    http://docs.oracle.com/cd/E24329_01/doc.1211/e24492/guimode.htm#autoId3
    Regards
    Carlos

  • Can't install weblogic server sp5(apache bridge) on linux

    Hi.
    I can't install weblogic server service pack 5(weblogic for apache
    bridge,mod_wl.so) on redhat linux 6.2,my apache server version is 1.3, and
    it work without sp5,when I use new mod_wl.so overwrite old one, apache
    server can't start.
    Please help,
    Thanks
    Jason Shi([email protected])

    What exact problems are you having? I'm using WLS 5.1 SP5 + apache
    1.3.12 + mod_ssl just fine.
    John Salvo
    Jason wrote:
    >
    Hi.
    I can't install weblogic server service pack 5(weblogic for apache
    bridge,mod_wl.so) on redhat linux 6.2,my apache server version is 1.3, and
    it work without sp5,when I use new mod_wl.so overwrite old one, apache
    server can't start.
    Please help,
    Thanks
    Jason Shi([email protected])

  • Problem installing weblogic server 7.0 in Mandrake Linux 10.1

    hi
    i am very new to Mandrake Linux ..i have installed Mandrake Linux 10.1 in my machine ...the problem is that when i try i to install weblogic server 7.0 it gives some error
    ** Error during execution, error code = 11
    my machine spec
    * 512MB RAM
    * 40GB HDD
    * P4 2.8GHZ
    can any one help me..
    the weblogic server i downloaded from bea site its version is weblogic server 7.0 with jrockit (sp6)
    regards
    babu

    Hi,
    first of all, unfortunately, WebLogic Server is not supported under Mandrivia (use the right name ;-) ), so you should use Novell Suse or Redhat AS, check this list
    Anyway, error code 11 should be related to permission issues, so you should check that the user you are using is allowed to write under the installation directory and under /var/log/
    Could you kindly post the log messages?
    Regards.
    Antenore Gatta
    Middleware Specialist
    Hequa S.r.l
    C.so Buenos Aires 77
    20124 Milano
    http://www.Hequa.it
    Tel +39(0)267493078
    Fax +39(0)267493079
    Mobile +39 3481537897
    ______________________________________

  • How to install  weblogic server in linux fedora 7  ...?

    hi.. Experts
    i am new to linux os .i am using fedora 7 version of linux. please tell me,,how to install weblogic server on fedora 7 os. i have to run my servlets , jsp pages. on weblogic server.
    plzz i m not able to do practice ...so please suggest me..
    please Reply...
    thanks a lot to all...

    Yes, they can. They installed in different directories and you have to use different ports.
    AFAIK for HTTP for APEX is either part of the installation (eg. in the Oracle Express Edition) or part of the Oracle Installation CDs. For more information see the Oracle Installation Documentation.
    --olaf                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • How to Install WebLogic Server 9.2 MP3 ?

    Hi,
    How to Install WebLogic Server 9.2 MP3 on Linux?
    and as which user we have to install WebLogic server. Whether we have to install as root user or we have to create different user to install weblogic server?
    Please provide me the document to do the installation.
    Thanks

    Just read through the installation guide: [http://e-docs.bea.com/common/docs92/install/index.html] . Look upward in that tree for all relevant WebLogic documentation.

  • Install WebLogic Server 7.0.1 on Solaris Intel (x86)

    I know WebLogic has never officially supported Solaris on Intel, but I was able
    to install and run version 6.1. However, it seems that I can no longer install
    WebLogic 7.0.1 on Solaris x86. Has anyone been able to do that?
    Eric

    Are you sure you have installed the Sun JDK, not the OpenJDK?

  • Installing Weblogic server 6.1 on solaris

    Hi
    Iam pretty new to installing Weblogic 6.1 on solaris platform. If any one
    has step by step instructions of doing this please pass it on to me.
    Thanks in advance
    S Gopikrishna

    The installation under Solaris is almost the same as on any other platform. Simply
    start the the setup programm. The a graphical Setup-Wizard will appear as on
    Windows.
    kind regards
    Falko Zurell
    S Gopikrishna schrieb:
    Hi
    Iam pretty new to installing Weblogic 6.1 on solaris platform. If any one
    has step by step instructions of doing this please pass it on to me.
    Thanks in advance
    S Gopikrishna

  • Error while installing weblogic server

    Dear all,
    i have install oracle database 11g r2 64bit on windows 7 64bit.
    i download weblogic server ofm_rcu_win32_11.1.1.3.3_disk1_1of1.
    i want to install it, i run the rcu from C:\ofm_rcu_win32_11.1.1.3.3_disk1_1of1\rcuHome\BIN directory.
    it give the following error
    windows cannot find "C:download", make sure you type the name correctly.
    why?

    Hi Maahjoor,
    this ofm_rcu_win32_11.1.1.3.3_disk1_1of1 is not the weblogic's installers, is RCU.
    If you want to install Weblogic you don't need RCU, RCU has been made to create schemas which are needed for some types of installation like SOA suite, BI Publisher etc.
    You can get Weblogic installer from this url:
    http://www.oracle.com/technetwork/middleware/weblogic/downloads/wls-for-dev-1703574.html
    To install Weblogic you only need a JDK 1.6 or a JRockit 1.6
    Hope this clarify your doubt :)
    Regards
    Carlos

Maybe you are looking for