Correct version of Java SDK for Red Hat 4 ES on x86_64

I need to install the Java SDK for Red Hat 4 ES on x86_64 and I'm unable to find the correct version to download.
Note 716604 says to download 1.4.2_13 at java.sun.com but the I can't find the Linux x86_64 bit version.  Note 941595 is for Windows and Solaris only.
Red Hat's site mentions two versions; java-1.4.2-ibm and java-1.4.2-bea.  I cannot find any SAP notes that mention those names.  Has anyone used these successfully on Red Hat 4 x86_64?
Does anyone know where I can download the correct version of Java SDK?
Thanks

<a href="https://www14.software.ibm.com/webapp/iwm/web/reg/download.do?source=lxdk&S_PKG=amd64142sr7&S_TACT=105AGX05&S_CMP=JDK&lang=en_US&cp=UTF-8">https://www14.software.ibm.com/webapp/iwm/web/reg/download.do?source=lxdk&S_PKG=amd64142sr7&S_TACT=105AGX05&S_CMP=JDK&lang=en_US&cp=UTF-8</a>
I can open that link without a problem.
Check again...
Markus

Similar Messages

  • Java(TM) 2 SDK needed for Red Hat Enterprise 4

    Hello List members,
    I am installing open-xchange on my Red Hat Enterprise 4 box but getting error "no acceptable java compiler found - please install at least the Java(TM) 2 SDK."
    JRE is installed in my system but even after a lot of research I am unable to find Java(TM) 2 SDK . Can anyone of you tell me where to download Java(TM) 2 SDK for Red Hat Enterprise 4. Its not in the SUN site as far as I know, I could be wrong.
    Please help me.
    Regards,
    Vishal

    I installed rhe4 and i have installed a lot of jsdk1.4.2-1.50 and later no any error and not collapsed java system but it has using GNOME consol avoid running system well you will changed GTK SYS.

  • Latest supported version of the Java SDK for XI R3.1

    Hi all,
                Does anyone have any ideas or views on the latest supported version of the Java SDK for 3.1 on windows ?
    We are using Tomcat which ships with SDK version 1.5.0_12, I know that updating this to a later version can result in a considerable performance boost for Infoview and its supported applications especially webintelligence.

    Hi Bashir, That's interesting  you're using a relatively up to date version of the java SDK. Business Objects documentation states that versions up to 1.5.0_xx are supported. Did you notice any improvements in performance of the system by using the later version 1.6.0_17 ?. There are generally very significant improvements in successive updates of the SDK in term of memory management, reliability and other general bug fixes, so it's something that we will take into consideration.
          Thanks

  • Configuring startWebLogic.sh for Red Hat Linux 7.2

    I was successful in configuring and executing startWeblogic.cmd, but have not been
    so lucky getting the equivalent to run on Red Hat 7.2 using startWebLogic.sh.
    For starters, even before I began editing startWeblogic.sh and just tried running
    I received the following error:
    : command not found
    : command not found
    : command not found
    : command not found
    startWebLogic.sh: line 59: syntax error near unexpected token `elif'
    'tartWebLogic.sh: line 59: `elif [ ! -f $WL_HOME/lib/weblogic.jar ]; then
    I've included both my startWebLogic.cmd and startWebLogic.sh files so that you
    can see what I'm trying to port to the sh file. I'm hoping I'm close to getting
    this to execute and run within Linux so please accept my thanks in advance to
    anyone who might have some suggestions. Interestingly enough I was able to get
    wls to start using ant, but that is obviously only good for my development env.
    The point being I'm hoping I'm close to reaching a solution.
    Below is what my startWebLogic.cmd file looks like:
    @echo off
    @rem This script can be used to start WebLogic Server. This script ensures that
    @rem the server is started using the config.xml file found in this directory and
    @rem that the CLASSPATH is set correctly. This script contains the following variables:
    @rem
    @rem JAVA_HOME - Determines the version of Java used to start
    @rem WebLogic Server. This variable must point to the
    @rem root directory of a JDK installation and will be set
    @rem for you by the WebLogic Server installer. Note that
    @rem this script uses the hotspot VM to run WebLogic Server.
    @rem If you choose to use a JDK other than the one
    @rem included in the disribution, make sure that the JDK
    @rem includes the hotspot VM. See the WebLogic platform support
    @rem page (http://e-docs.bea.com/wls/platforms/index.html)
    @rem for an up-to-date list of supported JVMs on Windows NT.
    @rem
    @rem When setting these variables below, please use short file names (8.3).
    @rem To display short (MS-DOS) filenames, use "dir /x". File names with
    @rem spaces will break this script.
    @rem
    @rem jDriver for Oracle users: This script assumes that native libraries
    @rem required for jDriver for Oracle have been installed in the proper
    @rem location and that your system PATH variable has been set appropriately.
    @rem For additional information, refer to Installing and Setting up WebLogic
    @rem Server (http://e-docs.bea.com/wls/docs61/install/index.html).
    SETLOCAL
    cd ..\..
    title WebLogic Server
    @rem Set user-defined variables.
    set JAVA_HOME=T:\bea\jdk131
    if "%CLOUDSCAPE_HOME%"=="" set CLOUDSCAPE_HOME=T:\Cloudscape_3.6
    if "%LOG_HOME%"=="" set LOG_HOME=T:\jakarta-log4j-1.2
    if "%JIKES_HOME%"=="" set JIKES_HOME=T:
    if "%BAS_ORACLE_HOME%"=="" (set ORAPATH=) else (set ORAPATH=%BAS_ORACLE_HOME%\ORA90\JDBC\LIB\classes12.zip;%BAS_ORACLE_HOME%\ORA90\JDBC\LIB\nls_charset12.zip;)
    @rem Check that script is being run from the appropriate directory
    if not exist lib\weblogic.jar goto wrongplace
    goto checkJDK
    :wrongplace
    echo startWebLogic.cmd must be run from the config\blueagave directory. 1>&2
    goto finish
    :checkJDK
    if exist "%JAVA_HOME%/bin/javac.exe" goto runWebLogic
    echo.
    echo Javac wasn't found in directory %JAVA_HOME%/bin.
    echo Please edit the startWebLogic.cmd script so that the JAVA_HOME
    echo variable points to the root directory of your JDK installation.
    goto finish
    :runWebLogic
    echo on
    set PATH=.\bin;%PATH%
    set CLASSPATH=.;%ORAPATH%.\lib\weblogic.jar;%CLOUDSCAPE_HOME%\lib\cloudscape.jar;%LOG_HOME%\dist\lib\log4j-1.2.jar;.\config\blueagave\serverclasses
    echo off
    echo.
    echo ***************************************************
    echo * To start WebLogic Server, use the password *
    echo * assigned to the system user. The system *
    echo * username and password must also be used to *
    echo * access the WebLogic Server console from a web *
    echo * browser. *
    echo ***************************************************
    @rem Set WLS_PW equal to your system password for no password prompt server startup.
    set WLS_PW=xxxx
    @rem Cloudscape-specific defines
    set CLOUDSCAPE_DEFINES=-Dcloudscape.system.home=./config/blueagave/data -Dcloudscape.storage.pageCacheSize=200
    -Dcloudscape.language.statementCacheSize=200
    @rem Set Production Mode. When set to true, the server starts up in production
    mode. When
    @rem set to false, the server starts up in development mode. The default is false.
    if "%STARTMODE%"=="" set STARTMODE=true
    @rem Add the following -D option to the JVM WL start-up command (after %CLASS_PATH%)
    to change
    @rem the query execute mode. The default is JDBC_ONLY and the other choices are
    EIS_ONLY,
    @rem BOTH_JDBC and BOTH_EIS (the two "BOTH_XXXX options internally execute both
    versions of the
    @rem query but only the results of the _XXXX form are returned to the query submitter).
    @rem -Dcom.blueagavesoft.query.ExecMode=BOTH_JDBC
    echo on
    "%JAVA_HOME%\bin\java" -hotspot -Xms192m -Xmx192m -XX:MaxPermSize=64m -classpath
    "%CLASSPATH%" -Dweblogic.Domain=blueagave -Dweblogic.Name=baserver -Dbea.home=T:\bea
    -Dweblogic.management.password=%WLS_PW% -Dweblogic.ProductionModeEnabled=%STARTMODE%
    %CLOUDSCAPE_DEFINES% -Djava.security.policy==T:\bea\wlserver6.1/lib/weblogic.policy
    %JAVA_DEBUG% weblogic.Server
    goto finish
    :finish
    cd config\blueagave
    ENDLOCAL
    [startWebLogic.sh]

    Thanks Micheal!
    "Michael Young" <[email protected]> wrote in message
    news:[email protected]..
    Hi.
    download here: http://commerce.bea.com/downloads/weblogic_server.jsp
    installation instructions here:
    http://edocs.bea.com/wls/docs61/install/index.html
    Regards,
    Michael
    Help Needed wrote:
    Hi All
    Where can i download weblogic for red hat linux 7.2? Does that come
    with
    instruction on how to install it and if not where can i find the
    instruction!!
    Any will will be appricated.
    Michael Young
    Developer Relations Engineer
    BEA Support

  • Can't install Oracle 9i for Red Hat Linux AS3

    I can't install Oracle Database 9i for Red Hat Enterprise Linux.
    Please see messages following:
    [oracle@rhas3 oracle]$ /mnt/cdrom/install/linux/runInstaller
    Initializing Java Virtual Machine from /tmp/OraInstall2004-01-30_03-31-11PM/jre/bin/java. Please wait...
    /tmp/OraInstall2004-01-30_03-31-11PM/jre/bin/i386/native_threads/java: error while loading shared libraries: libstdc++-libc6.1-1.so.2: cannot open shared object file: No such file or directory
    [oracle@rhas3 oracle]$rpm -qa|grep libstdc++|less
    libstdc++-3.2.3-20
    libstdc++-ssa-3.5ssa-0.20030801.41
    libstdc++-devel-3.2.3-20
    libstdc++-ssa-devel-3.5ssa-0.20030801.4
    anybody know how to install for RH AS3, I have tried many time to find out the libraries but still not work and I've plan for RAC also.
    Ched

    Did you carefully go through all pre-req steps for install?
    Oracle needs some "compatibility libraries" as well (compat-lib*). Here are packages for AS 10g, most or all of which apply to Database too.
    Checking operating system packages: gcc-3.2.3-20,compat-gcc-7.3-2.96.122,compat-gcc-c++-7.3-2.96.122,compat-libstdc++-7.3-2.96.122,compat-libstdc++-devel-7.3-2.96.122,setarch-1.3-1,pdksh-5.2.14,sysstat-4.0.7,gnome-libs-1.4.1.2.90-34.1,libstdc++-3.2.3,compat-libstdc++-devel-7.3-2.96.122,compat-glibc-7.x-2.2.4.32.5
    When required packages are in place, there's another error lurking, related to __libc_wait symbol.
    runInstaller "boots" OUI, which includes running a JRE from tmp. This JRE (build 02) is broken, but you can setup to run another one via oraparam.ini and JRE_LOCATION. Download build 10 from Sun (google "jre 1.3.1 download").

  • How can install java sdk for mac os x 10.6.8

    How can install java sdk for mac os x 10.6.8?

    Deanwdd wrote:
    I mean to update Quicktime for Mac Os X 10.6.8...
    If you're running 10.6.8, Apple menu > Software Update. What version of QT do you have?

  • Java SDK for windows 3.1

    I have an old 486 in my room. The computer that has the SDK is out where my parents can see me when I'm doing my late night programming. I want to be able to put the java SDK on my Packard Bell 486 running windows 98. I searched and searched and searched some more off of google for a Java SDK for windows 3.1. The only thing i can find is IBM's program which they no longer service or even give you links to download their past versions. I am wondering if any of you guys know of any java SDK that will work on my 486 with windows 3.1.

    "I think your parents should buy you a nicer machine for your room. ;-)
    Good luck with that."
    LOL
    I have begged my dad to get a new computer just for the regular comptuer. The computer that I will "get caught" on is over 4.5 years old. When I ask him for another one he always says the one we have works.

  • Need to enable java and correct version of Java to download

    Hi!
    I need help to find the correct version of Java to download for a Safari 6.0 for my Macbook Pro. Also, how do I enable Java in Safari?

    I would recommend reaching out to one of the global partners listed here, Adobe Connect Partners, and see if they can help you.

  • Downloading and Installing Java SDK for AIX

    Could anyone please tell me where can i download Java SDk for AIX and how to install it before installing SAP?
    Thanks in Advance

    Hi Mega,
    You can downloads Java SDK 1.4.2 from this location, just choose the OS,
    https://sdlc5d.sun.com/ECom/EComActionServlet;jsessionid=CA558AF3F6842F61D26641D9A6853DCA
    installation is very simple, just copy the downloaded file and execute by running <b>./<name of the file>.sh</b> at the command prompt.
    Regards
    Juan
    Please reward with points if helpful

  • Java SDK for RoboSapien RS Media

    I have heard that there was a Java SDK for RoboSapien RS Media. I talked to a Customer Support Rep at WowWee and they said that the current Java SDK would work in it. If not that I can obtain the right one from Sun? But I can't seem to find where I could contact sun about it? The chat rep kept referring me to their downloads section but it's not listed. I was told by WowWee it was a CD and not a download.
    Anyone know where I can get some help with this?

    TikaC wrote:
    I don't think that is what I'm looking for. I am told the robot itself (ie. movements and stuff) can be programmed in Java. But there was a CD for the RoboSapien RS Media SDK and only 300 of the RS media was sold with the CD. Now I can't find them (or the SDK anywhere). Just RS medias without the SDK CDs.
    Anyone know who I can contact about this and/or if anyone remembers these?I suspect you need both a standard JDK (probably) but you'll also be needing some libraries (jar files) of classes that you would be using in Java code to actually do things with the thing-a-bob.
    To be honest I think you could be screwed Google finds alot of things saying "Coming soon" from 2007 and not much since..

  • Why we have separate azure java SDK for linux and windows

    I saw different links for downloading azure java SDK for linux and windows.
    What difference does it actually have when java is platform independent? Or both are same jars?

    Hi,
    Thank you for your post.
    It contains the same jar files.
    Regards,
    Mekh.

  • Is there a Java SDK for Siebel Analytics/Oracle BI

    Hi, I want to integrate with Siebel Analytics (now known as Oracle Business Intelligence, right?) to our product. Is there a JAVA SDK for Siebel Analytics/Oracle BI? If so, can anyone point me to the right place to get them. Much appreciated.

    There is currently no JDK or any other API to work with OBI EE (formerly Siebel Analytics).
    The presentation component exposes some functionality via web services.
    You can interact with the BI Server via NQCMD so you could build your own application that executes NQCMDs but this is not well documented other than typing NQCMD ? at the command line.
    The OBI Metadata is captured in a .rpd file which can be manipulated via UDML but this is not supported - do a search on Google for UDML (which is a proprietary format) for some examples on using this. OWB recently rolled out with some integration with OBI - it accomplishes this by manipulating the .rpd file using UDML.
    The Oracle folks monitor this forum. If you can reply with some specifics as to what you want to accomplish, I'm sure they will consider your needs if they decide to publish an API.

  • Sun Java System Web Server support for Red Hat EL 5

    Does anyone have any information when the Sun Java System Web Server might be supported on Red Hat Enterprise Linux 5 Server?
    Thanks

    Certification of RHEL5 will likely happen with one of the upcoming Update releases.
    There is, as far as I know, no reason why Web Server won't run on RHEL5 today though (I use it on Fedora Core 7 without ill effect, and the RHEL trail the Fedora releases a bit in technology versions).

  • Download oracle 11g/10g for red hat linux

    hi,
    I have installed VM WARE on my laptop now want to download linux ISO and Oracle ISO.
    could you please tell me whcih linux version i have to install which support oracle for linux.
    from where i get that
    -linux installation files
    -oracle installation files
    both the above will install on oracle vm ware
    thanks
    Edited by: hard_stone on Sep 30, 2009 11:33 PM

    hard_stone wrote:
    hi,
    I have installed VM WARE on my laptop now want to download linux ISO and Oracle ISO. Red Hat, Centos and Oracle Enterprise Linux are almost identical. The major differences are:
    - Red Hat and Oracle Enterprise Linux are officially supported by Oracle to be used under Oracle products;
    - CentOS is NOT officially supported
    - the newer Oracle Enterprise Linux (OEL) includes an 'oracle-validate' rpm to reduce configuration guessing
    Each Distro has it's purpose. I use SUSE and OpenSUSE for my office. And for general servers I use RedHat (when I need commercial support) and CentOS. I fully support CentOS and the CentOS community effort.
    However, for the past year I have ONLY used Oracle Enteprise Linux under Oracle product. It is free, it is officially supported, if I need commercial support I can get it, and it has the Oracle Validated RPM to minimize my config effort. http://edelivery.oracle.com
    So, as compared to the other respondent - I encourage using OEL and NOT CentOS.

  • Kernel Params for Red Hat 6.0

    I've been assigned to put oracle on a Dell installed RED Hat 6.0
    box.
    The Kernel Params are driving me nutty.
    First of all, the docs are saying that SHMMAX needs to be
    4294967295. I can't understand why Oracle can't just tell you
    what to enter into the header straight and simple in HEX. My
    hex calculator can't manipulate this magnitude. Is this
    documentation even correct? It seems 2 digits too large from
    everything else I'm looking at.
    The rest of the kernel code is largley defined dynamically:
    It looks like this.
    Should I over ride all this?
    #define SHMID_BITS 7
    #define SHM_ID_MASK ((1<<_SHM_ID_BITS)-1)
    #define SHM_IDX_SHIFT (_SHM_ID_BITS)
    #define SHMIDX_BITS 15
    #define SHM_IDX_MASK ((1<<_SHM_IDX_BITS)-1)
    * SHMID_BITS + SHMIDX_BITS must be <= 24 on the i386 and
    * SHMMAX <= (PAGE_SIZE << SHMIDX_BITS).
    #define SHMMAX 0x2000000 /* max shared seg size
    (bytes) */
    /* Try not to change the default shipped SHMMAX - people rely on
    it */
    #define SHMMIN 1 /* really PAGE_SIZE */ /* min shared seg size
    (bytes) */
    #define SHMMNI (1<<_SHM_ID_BITS) /* max num of segs system
    wide */
    #define SHMALL /* max shm system wide
    (pages) */ \
    (1<<(_SHM_IDX_BITS+SHMID_BITS))
    #define SHMLBA PAGE_SIZE /* attach addr a multiple
    of this */
    #define SHMSEG SHMMNI /* max shared segs per
    process */
    #endif /* ASMI386SHMPARAM_H */
    null

    If the system cats back -1 (or -273 etc) for inputs that big, I
    don't how we are going to obtain a positive outcome.
    The hex is not the point. The point is that 4 gig ints echoed
    into the /proc directory return negitive integers.
    Ruben
    Mladen Gogala (guest) wrote:
    : Hexcalculator is for wimps. The real programmers use bc,
    : with scale, ibase and obase options. As bc is doing
    : packed decimal arithmetics, it can do calculations with
    : the numbers > 4GB. Increase SHMMAX to 0x4000000, relink
    : the kernel (make bzImage), restart & enjoy.
    : Ruben I Safir (guest) wrote:
    : : Thanks Robson
    : : That translates to -1 when you cat it back. That was the
    same
    : : thing the kde hexcalculator did. It seems that using that
    many
    : : bytes triggers a signed variable.
    : : Ruben
    : : Robson Miranda (guest) wrote:
    : : : You only need to do
    : : : echo 4294967295 > /proc/sys/kernel/shmmax (I think, I'm not
    : on
    : : : my Linux box, so can't check now).
    : : : With kernel > 2.2.x, there's no need to recompile it to
    : change
    : : : the maximum amount of shared memory.
    : : : Robson.
    : : : Ruben I Safir (guest) wrote:
    : : : : I've been assigned to put oracle on a Dell installed RED
    : Hat
    : : : 6.0
    : : : : box.
    : : : : The Kernel Params are driving me nutty.
    : : : : First of all, the docs are saying that SHMMAX needs to be
    : : : : 4294967295. I can't understand why Oracle can't just
    tell
    : : you
    : : : : what to enter into the header straight and simple in
    HEX.
    : My
    : : : : hex calculator can't manipulate this magnitude. Is this
    : : : : documentation even correct? It seems 2 digits too large
    : from
    : : : : everything else I'm looking at.
    : : : : The rest of the kernel code is largley defined
    dynamically:
    : : : : It looks like this.
    : : : : Should I over ride all this?
    : : : : #define SHMID_BITS 7
    : : : : #define SHM_ID_MASK ((1<<_SHM_ID_BITS)-1)
    : : : : #define SHM_IDX_SHIFT (_SHM_ID_BITS)
    : : : : #define SHMIDX_BITS 15
    : : : : #define SHM_IDX_MASK ((1<<_SHM_IDX_BITS)-1)
    : : : : * SHMID_BITS + SHMIDX_BITS must be <= 24 on the i386
    : and
    : : : : * SHMMAX <= (PAGE_SIZE << SHMIDX_BITS).
    : : : : #define SHMMAX 0x2000000 /* max shared seg
    : : size
    : : : : (bytes) */
    : : : : /* Try not to change the default shipped SHMMAX - people
    : rely
    : : : on
    : : : : it */
    : : : : #define SHMMIN 1 /* really PAGE_SIZE */ /* min shared seg
    : : size
    : : : : (bytes) */
    : : : : #define SHMMNI (1<<_SHM_ID_BITS) /* max num of
    segs
    : : : system
    : : : : wide */
    : : : : #define SHMALL /* max shm system
    : : wide
    : : : : (pages) */ \
    : : : : (1<<(_SHM_IDX_BITS+SHMID_BITS))
    : : : : #define SHMLBA PAGE_SIZE /* attach addr a
    : : : multiple
    : : : : of this */
    : : : : #define SHMSEG SHMMNI /* max shared
    segs
    : : per
    : : : : process */
    : : : : #endif /* ASMI386SHMPARAM_H */
    null

Maybe you are looking for

  • Help needed to extract a value from Textfield

    Hi, I am new to AWT prgramming . I have created a menu called " Menu System Test window " and it contains toplevel menu item "File" and File Menu contains subitems "Product Evaluation" and "Exit". When i click File->Product Evaluation it displays a n

  • After mandatory update of IPHOTO why did I lose all my photos

    After my harddrive died unexpectedly, apple installed a new harddrive.  As I was reinstalling from my backup drive, I received a message that I could not import my photos if I didn't update ILIFE-IPHOTO.  I followed directions and now have a blank IP

  • Webmail and inline attachment viewing

    Hi there, We're running a slightly older version of iMS, 5.2p1, and we have a quesetion about the webmail interface. We've put in an anti-spam beastie called the Barracuda. This box sends each user a spam summary and sends the report as a HTML. The w

  • How to install software from a purchased cd

    How do I install software on mac mini from a purchased cd without buying an external drive. The other Imac on my network does not have cd sharing- running Tiger. Any other possibilities?

  • Final Cut Pro x Exporting

    My final cut pro will not allow me to export to quicktime or youtube. It says " The operation couldn't be completed. (com.apple.Compressor.CompressorKit.ErrorDomain error -1.)" What does this mean? It has only down this for about a week. I have tried