Installing j2sdk1.3 on Redhat Linux 7.0

I installed Redhat Linux 7.0 and now I'm trying to install the SDK 1.3. I downloaded the Linux version RPM shell script, but it is a .bin file and fails with unrecognized package when I issue the Linux command rpm -ivh filename. So then I downloaded the GNUZIP Tar shell script, but that gave me the same file name.(but the file lengths are different). I'm new to Linux. How do I install either of these versions?

When I tried to run some application, I received the
following error:
"Segmentation fault"
Is this error caused by Java Virtual Machine problem
on Linux ?From <http://java.sun.com/j2se/1.3/relnotes.html>
* For Linux users - The newer glibc-2.2.x libraries cannot correctly handle initial thread stack sizes larger than 6 MB. This can cause a segmentation fault on come Linux platforms that use the newer libraries. Such platforms include Red Hat 7.0, Mandrake 8.0, SuSe 7.2, and Debian 2.2. The problem will not occur on Linux platforms that are using glibc-2.1.x such as Red Hat 6.1 and 6.2. It will also not affect Red Hat 7.1 because it uses a different thread stack layout. This problem is being tracked as bug 4466587.
Workaround - Use "ulimit -s 2048" in bash shell or "limit stacksize 2048" in tcsh to limit the initial thread stack to 2 MB.
If you add the command to ~/.bash_profile, it should run each time you login.
Bhav

Similar Messages

  • Can't install 8i on redhat linux 7.3

    Hello can anyone help. I am unable to install 8i on redhat 7.3. i have untar glibc118-v3 to /usr/local and done a link to files. But when i run "./runInstaller". I get "please wait initializing Java virtual machine" and it just sits there..
    thanks

    Hi,
    Follow the steps, which is given by the URL
    http://www.idevelopment.info/data/DBA_tips/DBATIP_53.shtml
    Regds,
    Nathan .K

  • Error while installing OWB on Redhat Linux

    Hi,
    I installed Oracle database on Linux , while installing oracle i got error
    error while writing to directory /tmp/OraInstall<date> please ensure that this directory is writable and has atleast 60mb of disk space. Installation can not continue
    then i did some thing and it went thru, now i am trying to install the OWB again i am getting the same error and i was browsing net past 2 days for a solution but i din't get one
    while installing oracle i have not made any notes, that was my mistake
    Please suggest me the possible solution or the Document which can guide me
    Thanks in Advance
    Suresh

    Hi,
    the problem is the logfile for the installation. Every oracle installtion writes a log file with this name in a predefined directory. Make the directory /tmp writable for oracle and extend the disk quota at least 60 MB.
    Regards
    Detlef

  • Problems in Installing 9i or RedHat Linux

    Can anyone please tell me the steps to extract and install oracle 9i on linux platform..

    For downloading Oracle 9i on linux:
    http://www.oracle.com/technology/software/products/oracle9i/index.html
    For installation instructions:
    http://www.puschitz.com/InstallingOracle9i.shtml
    FYI, a simple google search can help!

  • Install oracle9204 in redhat linux es 3

    when i do "./runInstaller"
    then find a error :
    [oracle@wangcc Disk1]$ ./runInstaller
    [oracle@wangcc Disk1]$ Initializing Java Virtual Machine from /tmp/OraInstall2004-07-04_11-00-49PM/jre/bin/java. Please wait...
    Error occurred during initialization of VM
    Unable to load native library: /tmp/OraInstall2004-07-04_11-00-49PM/jre/lib/i386/libjava.so: symbol __libc_wait, version GLIBC_2.0 not defined in file libc.so.6 with link time reference
    what can i do to solve this?????

    Try installing Oracle patch 3006854. But do it in the order below. You will need a list of compat rpms. Most of these come from the RHEL 3.0 install CD.
    1)
    compat-db
    compat-gcc
    compat-gcc-c++
    compat-libstdc++
    compat-libstdc++-devel
    openmotif21
    setarch
    tcl
    2)
    You will also need to push aside gcc and g++ version 323 in place of version 296.
    cd /usr/bin
    mv gcc gcc323
    ln -s gcc296 gcc
    mv g++ g++323
    ln -s g++296 g++3)
    And then the Oracle patch 3006854.
    4)
    then export LD_ASSUME_KERNEL=2.4.1
    5)
    xhost +
    su - oracle
    ...../runInstaller

  • Redhat linux 6 VM - stop and  restart

    Hi,
    I've installed new HVM - Redhat Linux 6, standard installation. I have the problem with stop and restart initiated from the OVM console. Job is running, but the OS inside VM doesn't start the shutdown process.
    For example another VM running Oracle Linux 6 works. The same problem is with the restart and live migration - both works for Oracle Linux, but redhat no.
    Do you have an idea what are the requirements for stopping and restarting the VM from OVM console?

    DN,
    I take all your questions, don't I?
    Anyhow, this command adds your Report Server to the Oracle Process Manager and Notification Server's (opmn) and Enterprise Control:
    $OH/bin/addNewServerTarget.sh reports_server_name
    After that your Reports server will be started and stopped whenever you issue "opmnctl startall / stopall". Issue a opmnctl reload after running that script, or opmnctl restart.
    You can also start and stop it individual with: (the choice is yours)
    opmnctl startproc ias-component=reports_server_name
    opmnctl stopproc ias-component=reports_server_name
    opmnctl startproc process-type=reports_server_name
    opmnctl stopproc process-type=reports_server_name
    Check status with:
    opmnctl status

  • Installing JDK1.3 on Linux 7.1

    Hi all,
    Has anyone sucessfully installed j2sdk1.3 on Linux 7.1 from this j2sdk-1_3_1_02-linux-i386-rpm.bin file?
    I always get "The download file appears to be corrupted" everytime I try to install the file. I did a more on the file and notice that it uses
    tail +289 j2sdk-1_3_1_02-linux-i386-rpm.bin | sum
    I tried the command on Linux 7.1 and got 39588 24305 as a result.
    but the script is checking for 28844 and 24305. So, the script will never work on Linux.
    Has anyone got it installed? or Am I doing something wrong?
    Thanks in advance ....
    -Tn

    Hi,
    The error I most often see with those installs is when you try a slight deviation from the install procedures ;-).
    The issue is that the install script uses the $0 variable to get it's own filename. Then, it tries to tail itself into a temporary file. This fails if the program is called like that
    $ . j2sdk-1_3_1_02-linux-i386-rpm.bin
    (in this case, $0 will pass in the name of the shell you are in, for example "bash", and the program will fail).
    Instead, make sure to set the execute privileges
    chmod a+x j2sdk-1_3_1_02-linux-i386-rpm.bin
    and then call it like that
    $ ./j2sdk-1_3_1_02-linux-i386-rpm.bin
    ($0 now contains the filename)
    Good luck!
    Alex
    Hi all,
    Has anyone sucessfully installed j2sdk1.3 on Linux 7.1
    from this j2sdk-1_3_1_02-linux-i386-rpm.bin file?
    I always get "The download file appears to be
    corrupted" everytime I try to install the file. I did
    a more on the file and notice that it uses
    tail +289 j2sdk-1_3_1_02-linux-i386-rpm.bin | sum
    I tried the command on Linux 7.1 and got 39588 24305
    as a result.
    but the script is checking for 28844 and 24305. So,
    the script will never work on Linux.
    Has anyone got it installed? or Am I doing something
    wrong?
    Thanks in advance ....
    -Tn

  • Cannot find mio or .m files in the bankapp files in the eval version of tuxedo for redhat linux

    Hi,
    After having installed tuxedo in redhat linux and run the simpapp application
    said in the documentation,the next step was to put up the bankapp application.However
    I am not able to find the mio file,mentioned in the documentation nor any of the
    .m files which are required to make the menu for the bankapp client.is mio not
    a part of the eval distribution for linux? could anyone please help?

    "biji prathap" <[email protected]> wrote:
    >
    Hi,
    After having installed tuxedo in redhat linux and run the simpapp application
    said in the documentation,the next step was to put up the bankapp application.However
    I am not able to find the mio file,mentioned in the documentation nor
    any of the
    .m files which are required to make the menu for the bankapp client.is
    mio not
    a part of the eval distribution for linux? could anyone please help?Hello all,
    I'm not found references to mio(1) in Tuxedo 7.1, but they are
    exist in Tuxedo 6.5. May be mio(1) was removed from Tuxedo !?
    Best regards,
    Vladimir
    P.S. bankapp customized and works without mio(1).

  • Problem installing Oracle 11i in Linux

    I have been trying to install 11i in Redhat Linux. I followed the documentation provided by Oracle, by installing Java SDK 1.3, by creating stage area for installation. However, when I go to the selected directory u01/...../RapidWiz and type rapidwiz, I get the message "command not found". I checked the directory and there exists the command. (just to see if it works in Windows, I popped the first Cd and restarted on another machine.. it came back with all the welcome screen etc.,). Can someone help me... Pretty Please!!!!!!!!!

    How can I install Oracle apps using downloaded Oracle Apps 11.5.10.2 files? All the files in .zip format. The 'Rapid Install Start Here - Disk 1' is composed of 7 separate zip files (1 of 7 ... 7 of 7). Do I need to unzip the the files and burn DVD-R's first to compile them by disk?
    Is there another way?
    Has anyone tried installing from downloaded install files?
    Please help.

  • Jrockit-j2sdk1.4.2_05-linux-ia32 on RedHat 9 install fails

    Hi Robert/Steffan,
    I read the thread re: Null pointer exception in native code.
    It seems I have the same issue. I can't install the latest jrockit on
    RedHat 9. Are these issues the same? Is there a fix coming? I don't know
    what 'prelink' is and 'man prelink' produces nothing...
    TIA,
    -Allen
    rpm -qa | grep glibc
    glibc-kernheaders-2.4-8.10
    glibc-common-2.3.2-27.9.7
    glibc-2.3.2-27.9.7
    glibc-devel-2.3.2-27.9.7
    rpm -q --qf "%{name}-%{version}-%{release} Arch:%{arch}\n" glibc
    glibc-2.3.2-27.9.7 Arch:i686
    ./jrockit-j2sdk1.4.2_05-linux-ia32.bin -mode=console
    Extracting
    0%....................................................................................................100%
    ===== BEGIN DUMP
    =============================================================
    JRockit dump produced after 0 days, 00:00:00 on Mon Feb 7 13:20:02 2005
    Additional information is available in:
    /tmp/filephQgJD/jrockit.12971.dump
    No core file will be created because core dumps have been
    disabled. To enable core dumping, try "ulimit -c unlimited"
    before starting JRockit again.
    Please send the file(s), information about your system
    setup and the program you were running to [email protected]. Thank you.
    Error code: 52
    Error Message: Null pointer exception in native code
    Signal info : si_signo=11, si_code=1
    Version : BEA WebLogic JRockit(TM) 1.4.2_05 JVM R24.4.0-1
    ari-38120-20041118-1131-linux-ia32
    Threads / GC : Native Threads, GC strategy: parallel
    : mmHeap->data = 0x20000000, mmHeap->top = 0x24000000
    Number CPUs : 1
    Tot Phys Mem : 526057472
    OS version : Red Hat Linux release 9 (Shrike)
    Linux version 2.4.20-31.9 (root@websvr12) (gcc version 3.2.2 20030222
    (Red Hat Linux 3.2.2-5)) #4 Fri Aug 27 22:59:13 EDT 2004
    State : JVM is starting up
    Command Line : -Djava.class.path=.
    -Djrockit.launcher.type=jrockit.shipment -Djava.io.tmpdir=/tmp -Xmx256m
    -Djava.class.path=.:insta
    ller.jar:bids.jar:3rdparty.jar:castor-xml_0.9.4.jar:Ostermiller.jar:wlw-plaf.jar:comdev.jar:wizard.jar
    -Dsun.java.command=com.bea.pl
    ateng.wizard.WizardController -mode=console
    Environment : JAVA_HOME=(null),
    java.home=/tmp/filephQgJD/jre142_05/jre,
    java.class.path=.:installer.jar:bids.jar:3rdparty.jar:cast
    or-xml_0.9.4.jar:Ostermiller.jar:wlw-plaf.jar:comdev.jar:wizard.jar,
    java.library.path=/tmp/filephQgJD/jre142_05/jre/lib/i386/jrocki
    t:/tmp/filephQgJD/jre142_05/jre/lib/i386:/tmp/filephQgJD/jre142_05/jre/../lib/i386
    C Heap : Good; no memory allocations have failed
    Registers (from context struct at 0x80516bc/0x8051784):
    EAX = 00000000 EBX = 4001a740
    ECX = 0000000d EDX = 4001a741
    ESI = 00000000 EDI = 4027d500
    ESP = bfffd850 EIP = 4015c449
    EBP = bfffd868 EFL = 00010206
    CS = 0023 DS = 002b ES = 002b
    SS = 002b FS = 0033 GS = 0033
    Stack:
    bfffd850 :421328d4 4001a750 00000000 4013e321 00000003 bfffd968
    bfffd868 :bfffd8a8 42111654 bfffd880 00000010 00000000 421328d4
    bfffd880 :00000000 4001a738 42000034 40130008 00000003 00000004
    bfffd898 :421115bd bfffd968 bfffd968 4027d5a8 bfffd8c8 4015c4c1
    bfffd8b0 :4015c410 00000000 bfffd8c8 4015c4ad 00000012 0000008d
    bfffd8c8 :bfffd938 40127b6b bfffd968 bfffda5c 4027d5a8 4207378d
    bfffd8e0 :42133220 00000080 080602e8 00000080 00000000 4027d5a8
    bfffd8f8 :bfffd928 4013e279 00000080 00000004 bfffd938 40156cba
    bfffd910 :bfffd968 bfffda5c bfffd948 401588ce 4026f6cc 401974cc
    bfffd928 :bfffd948 40158927 00000080 00000008 bfffd978 40127d85
    bfffd940 :bfffd968 40208c62 bfffd978 40127d66 bfffd9d8 42133268
    bfffd958 :00000051 0804f7d0 bfffd9d8 bfffda5c 00000000 00000000
    bfffd970 :00000001 00000000 bfffd9a8 40167789 bfffd9d8 00000049
    bfffd988 :bfffd9d8 00000035 0804bf30 bfffda5c bfffd9d8 0804ae8e
    bfffd9a0 :0804efec 00000000 bfffd9e8 0804ae58 bfffda48 bfffda4c
    bfffd9b8 :bfffd9d8 0804b426 0804bf30 bfffda5c bfffda68 00ffda68
    bfffd9d0 :0804bf30 bfffda5c 00010002 00000006 0804f790 00000000
    bfffd9e8 :bffffa68 08049cf1 bfffda48 bfffda4c bfffda5c 0804efe8
    bfffda00 :421328d4 40015020 0804bb70 00000000 00000000 00000000
    bfffda18 :bffffa74 bfffea68 bfffda64 bfffda5c bfffda58 bfffda54
    bfffda30 :bfffda50 bfffda4c bfffda48 00000000 0804be80 00000000
    bfffda48 :00000000 00000000 00000000 bffffcdb 00000001 40167720
    bfffda60 :40167500 0804f1b9 706d742f 6c69662f 51687065 2f444a67
    bfffda78 :3165726a 305f3234 726a2f35 696c2f65 33692f62 6a2f3638
    bfffda90 :6b636f72 6c2f7469 766a6269 6f732e6d 00000000 00000000
    bfffdaa8 :00000000 00000000 00000000 00000000 00000000 00000000
    bfffdac0 :00000000 00000000 00000000 00000000 00000000 00000000
    bfffdad8 :00000000 00000000 00000000 00000000 00000000 00000000
    bfffdaf0 :00000000 00000000 00000000 00000000 00000000 00000000
    bfffdb08 :00000000 00000000 00000000 00000000 00000000 00000000
    bfffdb20 :00000000 00000000 00000000 00000000 00000000 00000000
    bfffdb38 :00000000 00000000 00000000 00000000 00000000 00000000
    bfffdb50 :00000000 00000000 00000000 00000000 00000000 00000000
    bfffdb68 :00000000 00000000 00000000 00000000 00000000 00000000
    bfffdb80 :00000000 00000000 00000000 00000000 00000000 00000000
    bfffdb98 :00000000 00000000 00000000 00000000 00000000 00000000
    bfffdbb0 :00000000 00000000 00000000 00000000 00000000 00000000
    bfffdbc8 :00000000 00000000 00000000 00000000 00000000 00000000
    bfffdbe0 :00000000 00000000 00000000 00000000 00000000 00000000
    bfffdbf8 :00000000 00000000 00000000 00000000 00000000 00000000
    bfffdc10 :00000000 00000000 00000000 00000000 00000000 00000000
    bfffdc28 :00000000 00000000 00000000 00000000 00000000 00000000
    bfffdc40 :00000000 00000000 00000000 00000000 00000000 00000000
    bfffdc58 :00000000 00000000 00000000 00000000 00000000 00000000
    bfffdc70 :00000000 00000000 00000000 00000000 00000000 00000000
    bfffdc88 :00000000 00000000 00000000 00000000 00000000 00000000
    bfffdca0 :00000000 00000000 00000000 00000000 00000000 00000000
    bfffdcb8 :00000000 00000000 00000000 00000000 00000000 00000000
    bfffdcd0 :00000000 00000000 00000000 00000000 00000000 00000000
    bfffdce8 :00000000 00000000 00000000 00000000 00000000 00000000
    bfffdd00 :00000000 00000000 00000000 00000000 00000000 00000000
    bfffdd18 :00000000 00000000 00000000 00000000 00000000 00000000
    bfffdd30 :00000000 00000000 00000000 00000000 00000000 00000000
    bfffdd48 :00000000 00000000 00000000 00000000 00000000 00000000
    bfffdd60 :00000000 00000000 00000000 00000000 00000000 00000000
    bfffdd78 :00000000 00000000 00000000 00000000 00000000 00000000
    bfffdd90 :00000000 00000000 00000000 00000000 00000000 00000000
    bfffdda8 :00000000 00000000 00000000 00000000 00000000 00000000
    bfffddc0 :00000000 00000000 00000000 00000000 00000000 00000000
    bfffddd8 :00000000 00000000 00000000 00000000 00000000 00000000
    bfffddf0 :00000000 00000000 00000000 00000000 00000000 00000000
    bfffde08 :00000000 00000000 00000000 00000000 00000000 00000000
    bfffde20 :00000000 00000000 00000000 00000000 00000000 00000000
    bfffde38 :00000000 00000000 00000000 00000000 00000000 00000000
    bfffde50 :00000000 00000000 00000000 00000000 00000000 00000000
    bfffde68 :00000000 00000000 00000000 00000000 00000000 00000000
    bfffde80 :00000000 00000000 00000000 00000000 00000000 00000000
    bfffde98 :00000000 00000000 00000000 00000000 00000000 00000000
    bfffdeb0 :00000000 00000000 00000000 00000000 00000000 00000000
    bfffdec8 :00000000 00000000 00000000 00000000 00000000 00000000
    bfffdee0 :00000000 00000000 00000000 00000000 00000000 00000000
    bfffdef8 :00000000 00000000 00000000 00000000 00000000 00000000
    bfffdf10 :00000000 00000000 00000000 00000000 00000000 00000000
    bfffdf28 :00000000 00000000 00000000 00000000 00000000 00000000
    bfffdf40 :00000000 00000000 00000000 00000000 00000000 00000000
    bfffdf58 :00000000 00000000 00000000 00000000 00000000 00000000
    bfffdf70 :00000000 00000000 00000000 00000000 00000000 00000000
    bfffdf88 :00000000 00000000 00000000 00000000 00000000 00000000
    bfffdfa0 :00000000 00000000 00000000 00000000 00000000 00000000
    bfffdfb8 :00000000 00000000 00000000 00000000 00000000 00000000
    bfffdfd0 :00000000 00000000 00000000 00000000 00000000 00000000
    bfffdfe8 :00000000 00000000 00000000 00000000 00000000 00000000
    bfffe000 :00000000 00000000 00000000 00000000 00000000 00000000
    bfffe018 :00000000 00000000 00000000 00000000 00000000 00000000
    bfffe030 :00000000 00000000 00000000 00000000 00000000 00000000
    bfffe048 :00000000 00000000 00000000 00000000 00000000 00000000
    Code:
    4015c349 :ec81e589 00000110 758b5356 f8c48308 00010068 009d8d00
    4015c361 :53ffffff eec856e8 10c483c7 0f75c085 68f8c483 40204d60
    4015c379 :8d904deb 83002674 858df8c4 fffffef8 e8046a50 01f7b47f
    4015c391 :8510c483 830b74c0 6853fcc4 40204dae 858b25eb fffffef8
    4015c3a9 :1374c085 75fff883 fcc4831e 4dc96853 0beb4020 8300768d
    4015c3c1 :e068f8c4 5640204d fcaa2ee8 500debff 4e766853 e8564020
    4015c3d9 :fffcaa1f fee8a58d 5e5bffff c35dec89 5500768d ec83e589
    4015c3f1 :0c558b08 8b084d8b 8b500842 a0685002 5140204e fca9f2e8
    4015c409 :5dec89ff 55f689c3 ec83e589 5356570c 6af8c483 08558b2f
    4015c421 :5004428b eec726e8 83c389c7 db8510c4 57eb3175 6b084d8b
    4015c439 :318b34c6 d500b88d b9fc4027 0000000d 74a1a5f3 8d4026f7
    4015c451 :15890150 4026f774 0f02f883 b60fc094 312aebc0 f768bff6
    4015c469 :8d904026 8b002674 f8c48307 b4e85350 8301f1ec c08510c4
    4015c481 :c783b275 fe834604 31e47e02 e8658dc0 895f5e5b 55c35dec
    4015c499 :ec83e589 932de808 f4a301eb e84027d4 01eb9303 27d4f8a3
    4015c4b1 :f8c48340 1068006a e84015c4 01fb50ef c35dec89 5500768d
    4015c4c9 :ec83e589 5356573c 6afcc483 4edf6804 5d8d4020 dce85310
    4015c4e1 :83c7eec5 c08510c4 458b1774 fcc4830c 4ee46850 458b4020
    4015c4f9 :fce85008 ebfffca8 dc458d7f 89d84589 fa7d8dc6 0f00768d
    4015c511 :685003b6 40204ef7 e856036a 01ef2fbf 8310c483 394302c6
    4015c529 :83e47efe b70ff4c4 0f504245 504045b7 3e45b70f 45b70f50
    4015c541 :b70f503c 0f503a45 503845b7 5034458b 5030458b 502c458b
    Loaded modules:
    (* denotes the module causing the exception)
    0x08048000-0x0804cd86 /tmp/filephQgJD/jre142_05/bin/java
    0x4001b000-0x400251df /lib/tls/libpthread.so.0
    0x40029000-0x40049b3f /lib/tls/libm.so.6
    0x4004b000-0x4004d1c3 /lib/libdl.so.2
    0x42000000-0x4212fbdb /lib/tls/libc.so.6
    0x40050000-0x4021f3ef*
    /tmp/filephQgJD/jre142_05/jre/lib/i386/jrockit/libjvm.so
    0x404b7000-0x404c142b /lib/libnss_files.so.2
    Java Thread ID = 0x00000080, lastJavaFrame = 0xfffffffc, Name = Noname
    Thread Stack Trace:
    at dlIterFindLibcCb+57()@0x4015c449
    --- End of stack trace
    Additional information is available in:
    /tmp/filephQgJD/jrockit.12971.dump
    No core file will be created because core dumps have been
    disabled. To enable core dumping, try "ulimit -c unlimited"
    before starting JRockit again.
    Please send the file(s), information about your system
    setup and the program you were running to [email protected]. Thank you.
    Extended, platform specific info:
    libc release: 2.3.2-stable
    Elf headers:
    libc ehdrs: failed.
    libpthread ehdrs: EI: 7f454c46010101000000000000000000 ET: 3 EM: 3 V: 1
    ENTRY: 0x00003f70 PHOFF: 0x00000034 SHOFF: 0x000135a8 EF: 0x
    0 HS: 52 PS: 32 PHN; 7 SS: 40 SHN: 33 STIDX: 32
    libjvm ehdrs: failed.
    ===== END DUMP
    ===============================================================
    ** Error during execution, error code = 6.

    Hi Allen,
    Well, RH9 is not a supported platform and has therefore received very
    limited or no testing whatsoever, but JRockit should not crash on it...
    To begin with, you can try a manual installation by doing a manual
    $unzip <jrockit-installer>.bin
    $unzip <jrockit-payload>.zip
    to get the files and copy/move them wherever you want them installed.
    You can also try different releases of JRockit, such as 1.4.2_04 or the
    new 1.5.0 release if they work better.
    The dump indicates that there might be a problem with glibc on your
    machine. This problem has been observed to be triggered by the installation
    and activation of the 'prelink' feature on some distros but can also be
    caused
    by other things such as an too old version of glibc.
    The closest info I can find on supported versions of the kernel and glibc
    that
    might match RH9 is for JRockit 1.4.2_05 on RHEL3.0-i686 which has
    been verified with QU3 with kernel-2.4.21-20 and glibc-2.3.2-95.27.
    Regarding prelink, you can check whether prelink is installed by
    "rpm -qa | grep prelink", and if it is installed also check the top of
    /etc/sysconfig/prelink to see if it is actually enabled or not.
    Best Regards
    /Robert Ottenhag
    Software Engineer, BEA Systems, Inc.
    "Allen Hewes" <[email protected]> wrote in message news:4207a053$1@mail...
    Hi Robert/Steffan,
    I read the thread re: Null pointer exception in native code.
    It seems I have the same issue. I can't install the latest jrockit on
    RedHat 9. Are these issues the same? Is there a fix coming? I don't know
    what 'prelink' is and 'man prelink' produces nothing...
    TIA,
    -Allen
    rpm -qa | grep glibc
    glibc-kernheaders-2.4-8.10
    glibc-common-2.3.2-27.9.7
    glibc-2.3.2-27.9.7
    glibc-devel-2.3.2-27.9.7
    rpm -q --qf "%{name}-%{version}-%{release} Arch:%{arch}\n" glibc
    glibc-2.3.2-27.9.7 Arch:i686
    ./jrockit-j2sdk1.4.2_05-linux-ia32.bin -mode=console
    Extracting
    0%..........................................................................
    ..........................100%
    ===== BEGIN DUMP
    =============================================================
    JRockit dump produced after 0 days, 00:00:00 on Mon Feb 7 13:20:02 2005
    Additional information is available in:
    /tmp/filephQgJD/jrockit.12971.dump
    No core file will be created because core dumps have been
    disabled. To enable core dumping, try "ulimit -c unlimited"
    before starting JRockit again.
    Please send the file(s), information about your system
    setup and the program you were running to [email protected]. Thank you.
    Error code: 52
    Error Message: Null pointer exception in native code
    Signal info : si_signo=11, si_code=1
    Version : BEA WebLogic JRockit(TM) 1.4.2_05 JVM R24.4.0-1
    ari-38120-20041118-1131-linux-ia32
    Threads / GC : Native Threads, GC strategy: parallel
    : mmHeap->data = 0x20000000, mmHeap->top = 0x24000000
    Number CPUs : 1
    Tot Phys Mem : 526057472
    OS version : Red Hat Linux release 9 (Shrike)
    Linux version 2.4.20-31.9 (root@websvr12) (gcc version 3.2.2 20030222
    (Red Hat Linux 3.2.2-5)) #4 Fri Aug 27 22:59:13 EDT 2004
    State : JVM is starting up
    Command Line : -Djava.class.path=.
    -Djrockit.launcher.type=jrockit.shipment -Djava.io.tmpdir=/tmp -Xmx256m
    -Djava.class.path=.:insta
    ller.jar:bids.jar:3rdparty.jar:castor-xml_0.9.4.jar:Ostermiller.jar:wlw-plaf
    .jar:comdev.jar:wizard.jar
    -Dsun.java.command=com.bea.pl
    ateng.wizard.WizardController -mode=console
    Environment : JAVA_HOME=(null),
    java.home=/tmp/filephQgJD/jre142_05/jre,
    java.class.path=.:installer.jar:bids.jar:3rdparty.jar:cast
    or-xml_0.9.4.jar:Ostermiller.jar:wlw-plaf.jar:comdev.jar:wizard.jar,
    java.library.path=/tmp/filephQgJD/jre142_05/jre/lib/i386/jrocki
    t:/tmp/filephQgJD/jre142_05/jre/lib/i386:/tmp/filephQgJD/jre142_05/jre/../li
    b/i386
    C Heap : Good; no memory allocations have failed
    Registers (from context struct at 0x80516bc/0x8051784):
    EAX = 00000000 EBX = 4001a740
    ECX = 0000000d EDX = 4001a741
    ESI = 00000000 EDI = 4027d500
    ESP = bfffd850 EIP = 4015c449
    EBP = bfffd868 EFL = 00010206
    CS = 0023 DS = 002b ES = 002b
    SS = 002b FS = 0033 GS = 0033
    Stack:
    bfffd850 :421328d4 4001a750 00000000 4013e321 00000003 bfffd968
    bfffd868 :bfffd8a8 42111654 bfffd880 00000010 00000000 421328d4
    bfffd880 :00000000 4001a738 42000034 40130008 00000003 00000004
    bfffd898 :421115bd bfffd968 bfffd968 4027d5a8 bfffd8c8 4015c4c1
    bfffd8b0 :4015c410 00000000 bfffd8c8 4015c4ad 00000012 0000008d
    bfffd8c8 :bfffd938 40127b6b bfffd968 bfffda5c 4027d5a8 4207378d
    bfffd8e0 :42133220 00000080 080602e8 00000080 00000000 4027d5a8
    bfffd8f8 :bfffd928 4013e279 00000080 00000004 bfffd938 40156cba
    bfffd910 :bfffd968 bfffda5c bfffd948 401588ce 4026f6cc 401974cc
    bfffd928 :bfffd948 40158927 00000080 00000008 bfffd978 40127d85
    bfffd940 :bfffd968 40208c62 bfffd978 40127d66 bfffd9d8 42133268
    bfffd958 :00000051 0804f7d0 bfffd9d8 bfffda5c 00000000 00000000
    bfffd970 :00000001 00000000 bfffd9a8 40167789 bfffd9d8 00000049
    bfffd988 :bfffd9d8 00000035 0804bf30 bfffda5c bfffd9d8 0804ae8e
    bfffd9a0 :0804efec 00000000 bfffd9e8 0804ae58 bfffda48 bfffda4c
    bfffd9b8 :bfffd9d8 0804b426 0804bf30 bfffda5c bfffda68 00ffda68
    bfffd9d0 :0804bf30 bfffda5c 00010002 00000006 0804f790 00000000
    bfffd9e8 :bffffa68 08049cf1 bfffda48 bfffda4c bfffda5c 0804efe8
    bfffda00 :421328d4 40015020 0804bb70 00000000 00000000 00000000
    bfffda18 :bffffa74 bfffea68 bfffda64 bfffda5c bfffda58 bfffda54
    bfffda30 :bfffda50 bfffda4c bfffda48 00000000 0804be80 00000000
    bfffda48 :00000000 00000000 00000000 bffffcdb 00000001 40167720
    bfffda60 :40167500 0804f1b9 706d742f 6c69662f 51687065 2f444a67
    bfffda78 :3165726a 305f3234 726a2f35 696c2f65 33692f62 6a2f3638
    bfffda90 :6b636f72 6c2f7469 766a6269 6f732e6d 00000000 00000000
    bfffdaa8 :00000000 00000000 00000000 00000000 00000000 00000000
    bfffdac0 :00000000 00000000 00000000 00000000 00000000 00000000
    bfffdad8 :00000000 00000000 00000000 00000000 00000000 00000000
    bfffdaf0 :00000000 00000000 00000000 00000000 00000000 00000000
    bfffdb08 :00000000 00000000 00000000 00000000 00000000 00000000
    bfffdb20 :00000000 00000000 00000000 00000000 00000000 00000000
    bfffdb38 :00000000 00000000 00000000 00000000 00000000 00000000
    bfffdb50 :00000000 00000000 00000000 00000000 00000000 00000000
    bfffdb68 :00000000 00000000 00000000 00000000 00000000 00000000
    bfffdb80 :00000000 00000000 00000000 00000000 00000000 00000000
    bfffdb98 :00000000 00000000 00000000 00000000 00000000 00000000
    bfffdbb0 :00000000 00000000 00000000 00000000 00000000 00000000
    bfffdbc8 :00000000 00000000 00000000 00000000 00000000 00000000
    bfffdbe0 :00000000 00000000 00000000 00000000 00000000 00000000
    bfffdbf8 :00000000 00000000 00000000 00000000 00000000 00000000
    bfffdc10 :00000000 00000000 00000000 00000000 00000000 00000000
    bfffdc28 :00000000 00000000 00000000 00000000 00000000 00000000
    bfffdc40 :00000000 00000000 00000000 00000000 00000000 00000000
    bfffdc58 :00000000 00000000 00000000 00000000 00000000 00000000
    bfffdc70 :00000000 00000000 00000000 00000000 00000000 00000000
    bfffdc88 :00000000 00000000 00000000 00000000 00000000 00000000
    bfffdca0 :00000000 00000000 00000000 00000000 00000000 00000000
    bfffdcb8 :00000000 00000000 00000000 00000000 00000000 00000000
    bfffdcd0 :00000000 00000000 00000000 00000000 00000000 00000000
    bfffdce8 :00000000 00000000 00000000 00000000 00000000 00000000
    bfffdd00 :00000000 00000000 00000000 00000000 00000000 00000000
    bfffdd18 :00000000 00000000 00000000 00000000 00000000 00000000
    bfffdd30 :00000000 00000000 00000000 00000000 00000000 00000000
    bfffdd48 :00000000 00000000 00000000 00000000 00000000 00000000
    bfffdd60 :00000000 00000000 00000000 00000000 00000000 00000000
    bfffdd78 :00000000 00000000 00000000 00000000 00000000 00000000
    bfffdd90 :00000000 00000000 00000000 00000000 00000000 00000000
    bfffdda8 :00000000 00000000 00000000 00000000 00000000 00000000
    bfffddc0 :00000000 00000000 00000000 00000000 00000000 00000000
    bfffddd8 :00000000 00000000 00000000 00000000 00000000 00000000
    bfffddf0 :00000000 00000000 00000000 00000000 00000000 00000000
    bfffde08 :00000000 00000000 00000000 00000000 00000000 00000000
    bfffde20 :00000000 00000000 00000000 00000000 00000000 00000000
    bfffde38 :00000000 00000000 00000000 00000000 00000000 00000000
    bfffde50 :00000000 00000000 00000000 00000000 00000000 00000000
    bfffde68 :00000000 00000000 00000000 00000000 00000000 00000000
    bfffde80 :00000000 00000000 00000000 00000000 00000000 00000000
    bfffde98 :00000000 00000000 00000000 00000000 00000000 00000000
    bfffdeb0 :00000000 00000000 00000000 00000000 00000000 00000000
    bfffdec8 :00000000 00000000 00000000 00000000 00000000 00000000
    bfffdee0 :00000000 00000000 00000000 00000000 00000000 00000000
    bfffdef8 :00000000 00000000 00000000 00000000 00000000 00000000
    bfffdf10 :00000000 00000000 00000000 00000000 00000000 00000000
    bfffdf28 :00000000 00000000 00000000 00000000 00000000 00000000
    bfffdf40 :00000000 00000000 00000000 00000000 00000000 00000000
    bfffdf58 :00000000 00000000 00000000 00000000 00000000 00000000
    bfffdf70 :00000000 00000000 00000000 00000000 00000000 00000000
    bfffdf88 :00000000 00000000 00000000 00000000 00000000 00000000
    bfffdfa0 :00000000 00000000 00000000 00000000 00000000 00000000
    bfffdfb8 :00000000 00000000 00000000 00000000 00000000 00000000
    bfffdfd0 :00000000 00000000 00000000 00000000 00000000 00000000
    bfffdfe8 :00000000 00000000 00000000 00000000 00000000 00000000
    bfffe000 :00000000 00000000 00000000 00000000 00000000 00000000
    bfffe018 :00000000 00000000 00000000 00000000 00000000 00000000
    bfffe030 :00000000 00000000 00000000 00000000 00000000 00000000
    bfffe048 :00000000 00000000 00000000 00000000 00000000 00000000
    Code:
    4015c349 :ec81e589 00000110 758b5356 f8c48308 00010068 009d8d00
    4015c361 :53ffffff eec856e8 10c483c7 0f75c085 68f8c483 40204d60
    4015c379 :8d904deb 83002674 858df8c4 fffffef8 e8046a50 01f7b47f
    4015c391 :8510c483 830b74c0 6853fcc4 40204dae 858b25eb fffffef8
    4015c3a9 :1374c085 75fff883 fcc4831e 4dc96853 0beb4020 8300768d
    4015c3c1 :e068f8c4 5640204d fcaa2ee8 500debff 4e766853 e8564020
    4015c3d9 :fffcaa1f fee8a58d 5e5bffff c35dec89 5500768d ec83e589
    4015c3f1 :0c558b08 8b084d8b 8b500842 a0685002 5140204e fca9f2e8
    4015c409 :5dec89ff 55f689c3 ec83e589 5356570c 6af8c483 08558b2f
    4015c421 :5004428b eec726e8 83c389c7 db8510c4 57eb3175 6b084d8b
    4015c439 :318b34c6 d500b88d b9fc4027 0000000d 74a1a5f3 8d4026f7
    4015c451 :15890150 4026f774 0f02f883 b60fc094 312aebc0 f768bff6
    4015c469 :8d904026 8b002674 f8c48307 b4e85350 8301f1ec c08510c4
    4015c481 :c783b275 fe834604 31e47e02 e8658dc0 895f5e5b 55c35dec
    4015c499 :ec83e589 932de808 f4a301eb e84027d4 01eb9303 27d4f8a3
    4015c4b1 :f8c48340 1068006a e84015c4 01fb50ef c35dec89 5500768d
    4015c4c9 :ec83e589 5356573c 6afcc483 4edf6804 5d8d4020 dce85310
    4015c4e1 :83c7eec5 c08510c4 458b1774 fcc4830c 4ee46850 458b4020
    4015c4f9 :fce85008 ebfffca8 dc458d7f 89d84589 fa7d8dc6 0f00768d
    4015c511 :685003b6 40204ef7 e856036a 01ef2fbf 8310c483 394302c6
    4015c529 :83e47efe b70ff4c4 0f504245 504045b7 3e45b70f 45b70f50
    4015c541 :b70f503c 0f503a45 503845b7 5034458b 5030458b 502c458b
    Loaded modules:
    (* denotes the module causing the exception)
    0x08048000-0x0804cd86 /tmp/filephQgJD/jre142_05/bin/java
    0x4001b000-0x400251df /lib/tls/libpthread.so.0
    0x40029000-0x40049b3f /lib/tls/libm.so.6
    0x4004b000-0x4004d1c3 /lib/libdl.so.2
    0x42000000-0x4212fbdb /lib/tls/libc.so.6
    0x40050000-0x4021f3ef*
    /tmp/filephQgJD/jre142_05/jre/lib/i386/jrockit/libjvm.so
    0x404b7000-0x404c142b /lib/libnss_files.so.2
    Java Thread ID = 0x00000080, lastJavaFrame = 0xfffffffc, Name = Noname
    Thread Stack Trace:
    at dlIterFindLibcCb+57()@0x4015c449
    --- End of stack trace
    Additional information is available in:
    /tmp/filephQgJD/jrockit.12971.dump
    No core file will be created because core dumps have been
    disabled. To enable core dumping, try "ulimit -c unlimited"
    before starting JRockit again.
    Please send the file(s), information about your system
    setup and the program you were running to [email protected]. Thank you.
    Extended, platform specific info:
    libc release: 2.3.2-stable
    Elf headers:
    libc ehdrs: failed.
    libpthread ehdrs: EI: 7f454c46010101000000000000000000 ET: 3 EM: 3 V: 1
    ENTRY: 0x00003f70 PHOFF: 0x00000034 SHOFF: 0x000135a8 EF: 0x
    0 HS: 52 PS: 32 PHN; 7 SS: 40 SHN: 33 STIDX: 32
    libjvm ehdrs: failed.
    ===== END DUMP
    ===============================================================
    ** Error during execution, error code = 6.

  • Installation j2sdk1.4.0 RedHat Linux 7.3

    Hi
    I downloaded the j2sdk-linux-i386-rpm.bin file.
    Then, i typed "sh j2sdk1.4.0-linux-i386.rpm.bin" in the bash
    I get a new file "j2sdk1.4.0-fcs-linux-i386.rpm"
    I installed this file with the following command:
    rpm -i j2sdk1.4.0-fcs-linux-i386.rpm
    Til here, it was all successfully.
    Now, the problem:
    When i type "javac" into the bash, the system do not find the java compiler....
    I do not now, how i can set the path to the compiler in RedHat Linux....
    Do i configure the path to the javacompiler in /root/.bash_profile ?
    And how can i do that?
    I am a newbie in Linux...and in java....:-))
    Can anyone help me..?
    Thanks you a lot...
    Pingu...:-))

    hello...
    Thank you a lot for information...but somtthing doesn t work ....:-((
    Here are the entries in my .bash_profile:
    # .bash_profile
    # Get the aliases and functions
    if [ -f ~/.bashrc ]; then
         . ~/.bashrc
    fi
    # User specific environment and startup programs
    PATH=$PATH:$HOME/bin
    BASH_ENV=$HOME/.bashrc
    USERNAME="root"
    export USERNAME BASH_ENV PATH
    The J2SDK 1.4.0 PATh is: /usr/java/j2sdk1.4.0
    I don`t know, how edit the .bash_profile that javac and java starts ....
    Can anyone help me ?
    Thank you a lot....! :-))
    pingu..:-))

  • J2sdk1.3 on redhat linux 7.3

    I recently installed j2sdk1.3.0 on redhat linux 7.3,
    but the problem is java or javac only runs when
    i used -green or -native parameters with
    it, without these parameters the system give the
    message .java_wrapper is not found.
    Is any way that I don't need to specify these
    parameters again and again.
    Regards
    Muhammad Ali

    I don't remember having this problem with j2sdk1.3.0 / Linux. What about using 1.3.1?

  • Missing files in j2sdk1.4.2_05 in RedHat Linux EL3

    After installing j2sdk1.4.2_05 using the rpm as available on Sun's site I get the following missing files:
    missing /usr/java/j2sdk1.4.2_05/jre/javaws/javaws.pack
    missing /usr/java/j2sdk1.4.2_05/jre/lib/charsets.pack
    missing /usr/java/j2sdk1.4.2_05/jre/lib/ext/localedata.pack
    missing /usr/java/j2sdk1.4.2_05/jre/lib/jsse.pack
    missing /usr/java/j2sdk1.4.2_05/jre/lib/plugin.pack
    missing /usr/java/j2sdk1.4.2_05/jre/lib/rt.pack
    missing /usr/java/j2sdk1.4.2_05/lib/tools.pack
    missing /usr/java/j2sdk1.4.2_05/lib/unpack
    The OS is RedHat Linux Enterprise Linux version 3.
    The result is the same if I use j2re1.4.2_05 using the Sun's rpm. Thn the result is:
    missing /usr/java/j2re1.4.2_05/javaws/javaws.pack
    missing /usr/java/j2re1.4.2_05/lib/charsets.pack
    missing /usr/java/j2re1.4.2_05/lib/ext/localedata.pack
    missing /usr/java/j2re1.4.2_05/lib/jsse.pack
    missing /usr/java/j2re1.4.2_05/lib/plugin.pack
    missing /usr/java/j2re1.4.2_05/lib/rt.pack
    missing /usr/java/j2re1.4.2_05/lib/unpack
    I shall be obliged if somebody can tell me how to get rid of these missing statements or if there is some workaround.
    Regards
    Joydev Lahiri
    mailto: [email protected]

    missing /usr/java/j2sdk1.4.2_05/jre/javaws/javaws.packDon't worry about this. This is an artifact of the way Sun put the package together.
    They install the ".pack" files, and then a post-install rule runs that unpacks these files and deletes the original .pack files. Unfortunately, RPM doesn't handle such a situation very well.
    But this is definitely not an error.

  • Can any one help me. I tried to install Oracel 8.1.5 on RedHat Linux 7.0 and failed.

    I am running my system with RedHat Linux 7.0 and tried to install Oracle 8.1.5.
    I extracted jre required files and when i tried to start ./runIns.sh from install/linux directory it is giving me an error Unable to initalize threads: cannot find class Java/lang/Thread
    Could not create JVM
    i tried 3 times and i ended up here and i need instruction to sort out the problem as earlier as possible.pls do advice me in this.
    pls send the solution ASAP to my email id - ([email protected])

    Make sure you have IBM's Java 1.1.8 JRE/JDK installed on your server and $JAVA_HOME set. Check the Oracle installation instructions. One other problem with Red Hat 7.0. is that
    there is a libc library incompatibility problem with Red Hat linux 7.0 and Oracle 8i. The database will not start after you install it. Go to MetaLink (if you have support) and search for document # 121176.1. Basically, you have to download an older version of glibc, modify your Oracle link environment files, re-link the database executables and all will work normally. I did it on my Red Hat Linux 7.0 server two weeks ago and everything is working fine. Only other alternative is downgrade to Red Hat 6.2.

  • Do any one help me. I tried to install Oracel 8.1.5 on RedHat Linux 7.0 and failed.

    I am running my system with RedHat Linux 7.0 and tried to install Oracle 8.1.5.
    I extracted jre required files and when i tried to start ./runIns.sh from install/linux directory it is giving me an error Unable to initalize threads: cannot find class Java/lang/Thread
    Could not create JVM
    i tried 3 times and i ended up here and i need instruction to sort out the problem as earlier as possible.pls do advice me in this.

    Oracle 8i is not compile/link time compatible with glibc 2.2. It
    requires the glibc 2.1 compatibility SDK, i386-glibc-2.1-linux.tar.gz,
    to install under systems based on glibc 2.2, like RedHat 7.0.
    RedHat 7.0 ships with glibc 2.2. Oracle compiles with glibc 2.1. See the problem here? The good folks at valinux.com have created a compatiblitly SDK that will "fix" Redhat so you can install Oracle 8i. Go to the following link to learn more:
    http://ftp.valinux.com/pub/support/hjl/glibc/sdk/2.1/readme.Oracle8i - This is the instructions for installing the patch. Return to this document at Step 4, where they tell you to "Install Oracle 8i." http://ftp.valinux.com/pub/support/hjl/glibc/sdk/2.1/i386-glibc-2.1-linux.tar.gz - This is the actual SDK.
    null

Maybe you are looking for