JavaFX embedded application RedHat linux.

I have a self-signed javaFX application that is embedded in a web page.  I can run it on my Windows 8 machine, using FireFox 25 and Java 7_45, but when I try to run it on a RedHat Linux running FireFox 17.0.10 and Java 7_45 the application does not start.  All see is the wait circle in the middle of the browser window.  If I try to do a web start on the RedHat Linux the the browser closes.  Can anyone help me figure out what is causing this?
Thank you

Well at this point I am at a lost.  I have installed the most recent version of the FireFox browser(17.0.10) that is available for RedHat EL5 and I have installed the most current version of Java Version 7 Update 45 as verified by this page (java.com/download/installed.jsp).  I did have to manually link the the java plugin to the FireFox, but that step seems to be pretty common when it comes to the Linux OS. 

Similar Messages

  • Getting GTK error while running javaFX application on linux

    I developed an JavaFX application that works fine on Windows. So, I tried to run this same application on Linux (ubuntu x86) and it is not working. I setup all the environment with following this article : http://docs.oracle.com/javafx/2.0/release_notes_linux/jfxpub-release_notes_linux.htm. The Sample JavaFX applications available at http://www.oracle.com/technetwork/java/javafx/downloads/devpreview-1429449.html work great on Linux. But when I run my application, I got this error:
    java -jar prototipoGui.jar
    Exception in thread "main" java.lang.RuntimeException: Application launch error
    at com.sun.javafx.application.LauncherImpl$1.run(LauncherImpl.java:122)
    at java.lang.Thread.run(Thread.java:722)
    Caused by: java.lang.UnsatisfiedLinkError: com.sun.glass.ui.gtk.GtkApplication._invokeLater(Ljava/lang/Runnable;)V
    at com.sun.glass.ui.gtk.GtkApplication._invokeLater(Native Method)
    at com.sun.glass.ui.Application.invokeLater(Application.java:336)
    at com.sun.javafx.tk.quantum.QuantumToolkit.defer(QuantumToolkit.java:617)
    at com.sun.javafx.application.PlatformImpl.runLater(PlatformImpl.java:138)
    at com.sun.javafx.application.PlatformImpl.runAndWait(PlatformImpl.java:171)
    at com.sun.javafx.application.PlatformImpl.tkExit(PlatformImpl.java:264)
    at com.sun.javafx.application.LauncherImpl.launchApplication1(LauncherImpl.java:417)
    at com.sun.javafx.application.LauncherImpl.access$000(LauncherImpl.java:47)
    at com.sun.javafx.application.LauncherImpl$1.run(LauncherImpl.java:115)
    ... 1 more

    I get the same message, when running my application in stand alone.
    May be there is a problem when running in aa KDE environment.
    But I developed my app in Eclipse under KDE4. If the app is started by IDE it runs.

  • Gdb gets SIGSEGV from JVM in JDK 1.3.1_01 on RedHat Linux 6.2

    Hi all,
    I'd love to know if anyone has a fix for this problem? I am also posting it as a bug.
    Thanks in advance!
    OVERVIEW:
    When running Tomcat 4.0 via the Java launcher in a gdb debugging session (Red Hat Linux 6.2), I get a SIGSEGV signal (Segmentation fault) when I execute some of the example JSPs/servlets. Since Tomcat is pure Java, I'm assuming the problem is most likely with the JVM and the way it handles signals, or possibly with gdb since I only see this behavior with gdb. The problem is fairly reproducible; I usually get it when I execute the "ErrorPage" JSP sample in Tomcat's "examples" webapp.
    Note that I don't see these signals when running the JVM standalone (outside of gdb). What's also weird is that I successfully tell gdb to "continue" after the segfault, and the app continues to work like nothing ever happend.
    As an aside, the reason why I did this test was because I was experiencing very similar problems in my own application that embeds a JVM via JNI.
    DESCRIPTION:
    Here is what I did to see the problem.
    First, I set the debugger in the environment, so that the jdk/bin/java script can run the java launcher in gdb:
    export DEBUG_PROG=gdb
    Next, I run the jdk/bin/java script:
    cd jdk1.3.1_01/bin
    java
    This brings up the Java launcher within gdb, and I run it as I specify the necessary arguments to startup Tomcat:
    GNU gdb 19991004
    Copyright 1998 Free Software Foundation, Inc.
    GDB is free software, covered by the GNU General Public License, and you are
    welcome to change it and/or distribute copies of it under certain conditions.
    Type "show copying" to see the conditions.
    There is absolutely no warranty for GDB. Type "show warranty" for details.
    This GDB was configured as "i386-redhat-linux"...
    (gdb) set args -classpath /u0/ruvinsky/tomcat4.bin/bin/bootstrap.jar:/u0/ruvinsky/src-java-launcher/jdk1.3.1_01/lib/tools.jar -Dcatalina.base=/u0/ruvinsky/tomcat4.bin -Dcatalina.home=/u0/ruvinsky/tomcat4.bin org.apache.catalina.startup.Bootstrap start
    (gdb) run
    Starting program: /u0/ruvinsky/src-java-launcher/jdk1.3.1_01/bin/i386/native_threads/java -classpath /u0/ruvinsky/tomcat4.bin/bin/bootstrap.jar:/u0/ruvinsky/src-java-launcher/jdk1.3.1_01/lib/tools.jar -Dcatalina.base=/u0/ruvinsky/tomcat4.bin -Dcatalina.home=/u0/ruvinsky/tomcat4.bin org.apache.catalina.startup.Bootstrap start
    [New Thread 1710 (manager thread)]
    [New Thread 1709 (initial thread)]
    [New Thread 1711]
    [New Thread 1712]
    [New Thread 1713]
    [New Thread 1714]
    [New Thread 1715]
    [New Thread 1716]
    [New Thread 1717]
    Starting service Tomcat-Standalone
    Apache Tomcat/4.0
    [New Thread 1720]
    [New Thread 1721]
    [New Thread 1722]
    [New Thread 1723]
    [New Thread 1724]
    [New Thread 1725]
    [New Thread 1726]
    [New Thread 1727]
    [New Thread 1728]
    [New Thread 1729]
    [New Thread 1730]
    [New Thread 1731]
    Starting service Tomcat-Apache
    Apache Tomcat/4.0
    [New Thread 1732]
    [Switching to Thread 1730]
    Program received signal SIGSEGV, Segmentation fault.
    0x2bfee3f4 in ?? ()
    (gdb) continue
    Continuing.
    I even tried building a debug version of the java launcher by hand in hope of finding a more detailed stack trace, but all I got was the following:
    (gdb) bt
    #0 0x806973d in ?? ()
    #1 0x8060891 in ?? ()
    #2 0x8060891 in ?? ()
    #3 0x8060963 in ?? ()
    #4 0x8060891 in ?? ()
    #5 0x8060891 in ?? ()
    #6 0x8060891 in ?? ()
    #7 0x8060963 in ?? ()
    #8 0x8060891 in ?? ()
    #9 0x8060891 in ?? ()
    #10 0x8060963 in ?? ()
    #11 0x8060891 in ?? ()
    #12 0x8060963 in ?? ()
    #13 0x8060963 in ?? ()
    #14 0x8060963 in ?? ()
    #15 0x8060963 in ?? ()
    #16 0x8060963 in ?? ()
    #17 0x8060891 in ?? ()
    #18 0x8060963 in ?? ()
    #19 0x8060891 in ?? ()
    #20 0x8060963 in ?? ()
    #21 0x8060963 in ?? ()
    #22 0x8060963 in ?? ()
    #23 0x8060963 in ?? ()
    #24 0x8060891 in ?? ()
    #25 0x8060963 in ?? ()
    #26 0x8060963 in ?? ()
    #27 0x8060963 in ?? ()
    #28 0x8060891 in ?? ()
    #29 0x8060963 in ?? ()
    #30 0x8060963 in ?? ()
    #31 0x8060891 in ?? ()
    #32 0x8060963 in ?? ()
    #33 0x2add3d70 in StubRoutines::_code1 ()
    from /u0/ruvinsky/src-java-launcher/jdk1.3.1_01/jre/lib/i386/client/libjvm.so
    #34 0x2abcb604 in JavaCalls::call_helper ()
    from /u0/ruvinsky/src-java-launcher/jdk1.3.1_01/jre/lib/i386/client/libjvm.so
    #35 0x2ac2948d in os::os_exception_wrapper ()
    from /u0/ruvinsky/src-java-launcher/jdk1.3.1_01/jre/lib/i386/client/libjvm.so
    #36 0x2abcb840 in JavaCalls::call ()
    from /u0/ruvinsky/src-java-launcher/jdk1.3.1_01/jre/lib/i386/client/libjvm.so
    #37 0x2abcb1bb in JavaCalls::call_virtual ()
    from /u0/ruvinsky/src-java-launcher/jdk1.3.1_01/jre/lib/i386/client/libjvm.so
    #38 0x2abcbccb in JavaCalls::call_virtual ()
    from /u0/ruvinsky/src-java-launcher/jdk1.3.1_01/jre/lib/i386/client/libjvm.so
    #39 0x2abede80 in thread_entry ()
    from /u0/ruvinsky/src-java-launcher/jdk1.3.1_01/jre/lib/i386/client/libjvm.so
    #40 0x2ac599c7 in JavaThread::thread_main_inner ()
    from /u0/ruvinsky/src-java-launcher/jdk1.3.1_01/jre/lib/i386/client/libjvm.so
    #41 0x2ac56903 in JavaThread::run ()
    from /u0/ruvinsky/src-java-launcher/jdk1.3.1_01/jre/lib/i386/client/libjvm.so
    #42 0x2ac27e73 in _start ()
    from /u0/ruvinsky/src-java-launcher/jdk1.3.1_01/jre/lib/i386/client/libjvm.so
    #43 0x2aacc535 in pthread_start_thread (arg=0x7d3ffe40) at manager.c:241
    (gdb) info shared
    From To Syms Read Shared Object Library
    0x2aac7000 0x2aad8ad8 Yes /lib/libpthread.so.0
    0x2aad9000 0x2aae2e38 Yes /u0/ruvinsky/src-java-launcher/jdk1.3.1_01/jre/lib/i386/native_threads/libhpi.so
    0x2aae3000 0x2addce90 Yes /u0/ruvinsky/src-java-launcher/jdk1.3.1_01/jre/lib/i386/client/libjvm.so
    0x2addd000 0x2addfd0c Yes /lib/libdl.so.2
    0x2ade1000 0x2aed537c Yes /lib/libc.so.6
    0x2aed6000 0x2aeeb1c8 Yes /lib/libnsl.so.1
    0x2aeec000 0x2af08098 Yes /lib/libm.so.6
    0x2af09000 0x2af4af90 Yes /usr/lib/libstdc++-libc6.1-1.so.2
    0x2aaab000 0x2aabecb0 Yes /lib/ld-linux.so.2
    0x2af4b000 0x2af5d414 Yes /u0/ruvinsky/src-java-launcher/jdk1.3.1_01/jre/lib/i386/libverify.so
    0x2af5e000 0x2af81fe8 Yes /u0/ruvinsky/src-java-launcher/jdk1.3.1_01/jre/lib/i386/libjava.so
    0x2af82000 0x2af98360 Yes /u0/ruvinsky/src-java-launcher/jdk1.3.1_01/jre/lib/i386/libzip.so
    0x340c6000 0x340ce9a0 Yes /lib/libnss_files.so.2
    0x340cf000 0x340d8fb4 Yes /lib/libnss_nisplus.so.2
    0x340d9000 0x340e21f8 Yes /lib/libnss_nis.so.2
    0x343e9000 0x343f242c Yes /u0/ruvinsky/src-java-launcher/jdk1.3.1_01/jre/lib/i386/libnet.so
    0x343fa000 0x343fd850 Yes /lib/libnss_dns.so.2
    0x3497f000 0x3498d9fc Yes /lib/libresolv.so.2
    As a reference, I built the Java launcher code included in the JDK 1.3.1_01 distribution, producing the replacement binary for:
    jdk1.3.1_01/bin/i386/native_threads/java
    I copied the source files out of the jdk1.3.1_01/src/src/launcher/ directory, and they consist of the following files:
    java.c
    java.h
    java_md.c
    java_md.h
    My build directory also contains the jdk1.3.1_01 subdirectory to include the JNI headers from and as a sample jdk to test the build output with.
    The following are my build commands (mainly borrowed from the JDK build process):
    cc -g -W -Wall -Werror -Wno-unused -Wno-parentheses -Di386 -DARCH='"i386"' -DSOLARIS2 -DRELEASE='"1.3.1-testing-110101"' -DFULL_VERSION='"1.3.1-testing-110101"' -D_LARGEFILE64_SOURCE -D_GNU_SOURCE -D_REENTRANT -D_LITTLE_ENDIAN -DUSE_APPHOME -DPROGNAME='"java"' -I./jdk1.3.1_01/include -I./jdk1.3.1_01/include/linux -c -o build/objs/java.o java.c
    cc -g -W -Wall -Werror -Wno-unused -Wno-parentheses -Di386 -DARCH='"i386"' -DSOLARIS2 -DRELEASE='"1.3.1-testing-110101"' -DFULL_VERSION='"1.3.1-testing-110101"' -D_LARGEFILE64_SOURCE -D_GNU_SOURCE -D_REENTRANT -D_LITTLE_ENDIAN -DUSE_APPHOME -DPROGNAME='"java"' -I./jdk1.3.1_01/include -I./jdk1.3.1_01/include/linux -c -o build/objs/java_md.o java_md.c
    cc -o jdk1.3.1/bin/i386/native_threads/java -z defs -Ljdk1.3.1_01/jre/lib/i386/native_threads -Ljdk1.3.1_01/jre/lib/i386/classic build/objs/java.o build/objs/java_md.o -lpthread -lhpi -ljvm -ldl -lc

    Also experiencing SIGSEGV with tomcat 4.0 on AIX. Runs for months. Then out of the blue, crashes.
    I wonder if setting reloadable=false in .../conf/server.xml could be the culprit ?
    Or the servlet writing to a local file using a BufferedOutputStream ?

  • How do i install labview application on linux?

    Hello,
    I have a small application that i built using Labview 7.1 for windows. I have been using this application on windows xp.
    All the application does is, get an array of numbers from a file, calculate the min, max and average, and display the result in a simple 2D graph.
    Now i'm in the process of switching OS from xp to Redhat Linux. Would i be able to use this same application in Linux without any modification? if so, how do i install the application on Linux? if not possible, what changes do i need to make to get it work on Linux?
    Any help would be very much appreciated.
    Thanks.

    The platform indepedence is in the way the LV code is represented. You can open a VI you wrote in LV on windows in LV for Linux or Mac and it will work. The compiler embedded in the development environment turns the VI into platform-specific executable code in the same way that a C compiler would. The problem is that actual executable code is not transferable between OSes because they simply won't know how to execute it, just as it wouldn't work with a C built application.
    If you don't want to buy LV for Linux you can try running a Windows emulator (like WINE) which might allow you to run your windows executable. Another option is to try contacting NI. They might decide to let you change your license from Windows to Linux. You should also consider that platform specific functions (like ActiveX) are not supported and that certain toolkits were only written for windows.
    Try to take over the world!

  • 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

  • Unable to open desktop file /usr/share/applications/redhat-email.desktop for panel launcher: No such file or directory

    Dear Experts,
    Please note that I am facing a chllenge while confiuguring the VNCServer on the local test Server. The Local Test Sver OS Version is Redhat Enterprise Linux Server 
    Release 5.5 32-bit. Please review the following error message and advise me on how to fix the vncserver issue.
    [root@test .vnc]#  cat xstartup
    #!/bin/sh
    # Uncomment the following two lines for normal desktop:
    unset SESSION_MANAGER
    exec /etc/X11/xinit/xinitrc
    gnome-session &
    [ -x /etc/vnc/xstartup ] && exec /etc/vnc/xstartup
    [ -r $HOME/.Xresources ] && xrdb $HOME/.Xresources
    xsetroot -solid grey
    vncconfig -iconic &
    #xterm -geometry 80x24+10+10 -ls -title "$VNCDESKTOP Desktop" &
    twm &
    [root@test .vnc]#  cat /etc/sysconfig/vncservers
    # The VNCSERVERS variable is a list of display:user pairs.
    # Uncomment the lines below to start a VNC server on display :2
    # as my 'myusername' (adjust this to your own).  You will also
    # need to set a VNC password; run 'man vncpasswd' to see how
    # to do that.
    # DO NOT RUN THIS SERVICE if your local area network is
    # untrusted!  For a secure way of using VNC, see
    # <URL:http://www.uk.research.att.com/archive/vnc/sshvnc.html>.
    # Use "-nolisten tcp" to prevent X connections to your VNC server via TCP.
    # Use "-nohttpd" to prevent web-based VNC clients connecting.
    # Use "-localhost" to prevent remote VNC clients connecting except when
    # doing so through a secure tunnel.  See the "-via" option in the
    # `man vncviewer' manual page.
    # VNCSERVERS="2:myusername"
    # VNCSERVERARGS[2]="-geometry 800x600 -nolisten tcp -nohttpd -localhost"
    VNCSERVERS="1:oracle"
    [root@test .vnc]# ls
    passwd test.oracle.co.zm:1.pid  test.oracle.co.zm:3.log  test.oracle.co.zm:5.pid  test.oracle.co.zm:6.pid
    test.oracle.co.zm:1.log test.oracle.co.zm:2.log  test.oracle.co.zm:5.log  test.oracle.co.zm:6.log  xstartup
    [root@test .vnc]# more test.oracle.co.zm:1.log
    Xvnc Free Edition 4.1.2
    Copyright (C) 2002-2005 RealVNC Ltd.
    See http://www.realvnc.com for information on VNC.
    Underlying X server release 70101000, The X.Org Foundation
    Tue Mar 11 11:18:37 2014
    vncext:      VNC extension running!
    vncext:      Listening for VNC connections on port 5901
    vncext:      Listening for HTTP connections on port 5801
    vncext:      created VNC server for screen 0
    Could not init font path element unix/:7100, removing from list!
    localuser:root being added to access control list
    No profile for user 'root' found
    SESSION_MANAGER=local/test.oracle.co.zm:/tmp/.ICE-unix/13603
    Window manager warning: Log level 32: could not find XKB extension.
    ** (eggcups:13671): WARNING **: IPP request failed with status 1030
    ** (eggcups:13671): WARNING **: IPP request failed with status 1030
    ** (nm-applet:13697): WARNING **: No connections defined
    Initializing nautilus-open-terminal extension
    Unable to open desktop file /usr/share/applications/redhat-email.desktop for panel launcher: No such file or directory
    Unable to open desktop file /usr/share/applications/openoffice.org-1.9-writer.desktop for panel launcher: No such file or directory
    Unable to open desktop file /usr/share/applications/openoffice.org-1.9-impress.desktop for panel launcher: No such file or directory
    Unable to open desktop file /usr/share/applications/openoffice.org-1.9-calc.desktop for panel launcher: No such file or directory
    [root@test .vnc]#
    Regards
    Mohammed Abdul Muqeet

    Hi,
    Try these 3 solutions
    1. Did you start vncserver services as:
    service vncserver start
    2.Check that port 5901 has not been blocked by a firewall:
    # nc -vz localhost 5901
    You should get a connection and a termination. If you get an error, fix the firewall.
    3. service iptables stop
    Hope This Helps
    Regards,
    -DK

  • E-Business Suite 11i apps on RedHat Linux 4 or 5

    Hi,
    Our E-business suite 11i has been running on the application tiers RHEL 4, due to the requirement to support large memory configurations on a 32-bit system.  Is it true that from RHEL 5, the “hugemem” kernel which achieves this 32-bit memory scalability has been deprecated in favour of the use of 64-bit kernels?
    Our Oracle 11g database is running on RedHat Linux 5.8. Is E-Business suite 11i (application tiers) certified to run on RHEL 5.8?
    Also for future planning, is E-Business suite 12 (application tiers) certified to run on which versions of RedHat?
    Thanks,
    Jimmy

    Jimmy,
    Our E-business suite 11i has been running on the application tiers RHEL 4, due to the requirement to support large memory configurations on a 32-bit system.  Is it true that from RHEL 5, the “hugemem” kernel which achieves this 32-bit memory scalability has been deprecated in favour of the use of 64-bit kernels?
    Your 11i application tier will be limited to 32-bit even if you install 32-bit OS on x86-64 hardware.
    Our Oracle 11g database is running on RedHat Linux 5.8. Is E-Business suite 11i (application tiers) certified to run on RHEL 5.8?
    Yes.
    Also for future planning, is E-Business suite 12 (application tiers) certified to run on which versions of RedHat?
    Please see:
    Oracle E-Business Suite Installation and Upgrade Notes Release 12 (12.1.1) for Linux x86-64 (Doc ID 761566.1)
    Oracle E-Business Suite Installation and Upgrade Notes Release 12 (12.2) for Linux x86-64 (Doc ID 1330701.1)
    Thanks,
    Hussein

  • Unable to print from 11.5.9 on laserjet 2600n on Redhat Linux 4.0 AS

    Dear Experts,
    We recently purchased HP LaserJet Color 2600n. After we bought and installed it in the office network, I was supposed to add this printer in our Redhat Linux 4.0 AS server. While adding this printer, we realized that it is not present in the standard list of printer drivers. And none was available on HP.com for Linux OS!
    After some research, I downloaded and installed driver from the following site - http://foo2hp.rkkda.com/
    The test printout came but in black and white.
    I went and registered this printer in my 11.5.9 apps
    All details same as another working HP Laserjet 4050 printer.
    I cannot print anything from my application!
    I get the following error:
    Printing output file.
    Request ID : 1157149      
    Number of copies : 1      
    Printer : Laserjet2600N
    lp: unable to print file: client-error-not-found
    APP-FND-00500: AFPPRN received a return code of failure from routine FDUPRN. An error occurred while AOL tried to spawn the print process
    Cause: AFPPRN received a return code of failure from the OSD routine FDUPRN. An error occurred while AOL tried to spawn the print process.
    Action: Review your concurrent request log file for more detailed information.
    Finished executing request completion options.
    Kindly help ASAP as the users are waiting for more than a week for this!
    Also, I checked that the name of the printer in the application is same as the one in OS - no problems there.
    Thanks in advance

    Add printer via something like:
    /usr/sbin/lpadmin -p printername -E -v socket://printername -m laserjet.ppd
    Gareth

  • Trying install Oracle8i(8.1.7) in RedHat Linux 7.3

    I'm trying to install Oracle 8i on RedHat Linux 7.3., but I don't get start the "runInstaller". The error that I can see is:
    Initializing Java Virtual Machine from ../stage/Components/oracle.swd.jre/1.1.8/1/DataFiles/Expanded/linux/bin/jre. Please wait...
    SIGSEGV received at bfffd974 in /var/tmp/Disk1/stage/Components/oracle.swd.jre/1.1.8/1/DataFiles/Expanded/linux/lib/linux/native_threads/libjava.so. Processing terminated
    Wed Oct 9 14:05:02 2002
    jre full version "JDK 1.1.8 IBM build l118-20000713 (JIT enabled: jitc)"
    Operating Environment
    Host : nzalisa.netzima.com.(none)
    OS Level : 2.4.18-3custom.#3 SMP mii sep 11 20:16:31 UTC 2002
    glibc Version : 2.2.5
    No. of Procs : 1
    Memory Info:
    total: used: free: shared: buffers: cached:
    Mem: 393465856 282988544 110477312 0 23052288 165285888
    Swap: 805384192 0 805384192
    MemTotal: 384244 kB
    MemFree: 107888 kB
    MemShared: 0 kB
    Buffers: 22512 kB
    Cached: 161412 kB
    SwapCached: 0 kB
    Active: 221216 kB
    Inact_dirty: 4764 kB
    Inact_clean: 19332 kB
    Inact_target: 49060 kB
    HighTotal: 0 kB
    HighFree: 0 kB
    LowTotal: 384244 kB
    LowFree: 107888 kB
    SwapTotal: 786508 kB
    SwapFree: 786508 kB
    Committed_AS: 347568 kB
    User Limits (in bytes except for NOFILE and NPROC) -
    RLIMIT_FSIZE : infinity
    RLIMIT_DATA : infinity
    RLIMIT_STACK : 2093056
    RLIMIT_CORE : 0
    RLIMIT_NOFILE : 1024
    RLIMIT_NPROC : 3070
    Application Environment
    Signal Handlers -
    SIGINT : ignored
    SIGQUIT : ignored
    SIGILL : sysThreadIDump (libjava.so)
    SIGABRT : sysThreadIDump (libjava.so)
    SIGFPE : sysThreadIDump (libjava.so)
    SIGBUS : sysThreadIDump (libjava.so)
    SIGSEGV : sysThreadIDump (libjava.so)
    SIGPIPE : ignored
    SIGUSR1 : unknown handler
    Environment Variables -
    PWD=/var/tmp/Disk1/install
    ORACLE_SID=netzima
    LD_ASSUME_KERNEL=2.2.5
    LDEMULATION=elf_i386_glibc21
    TMPDIR=/tmp
    KONSOLE_DCOP=DCOPRef(konsole-2370,konsole)
    GS_LIB=/u01/app/oracle/.kde/share/fonts
    HOSTNAME=nzalisa.netzima.com
    LD_LIBRARY_PATH=/var/tmp/Disk1/stage/Components/oracle.swd.jre/1.1.8/1/DataFiles/Expanded/linux/lib/linux/native_threads:/lib:/usr/lib:/u01/app/oracle/lib:/lib:/usr/lib:/usr/local/lib
    SESSION_MANAGER=local/nzalisa.netzima.com:/tmp/.ICE-unix/2346
    QTDIR=/usr/lib/qt3-gcc2.96
    CLASSPATH=/tmp/OraInstall:../stage/Components/oracle.swd.oui/1.7.1.8.0/1/DataFiles/Expanded/lib/OraInstaller.jar:../stage/Components/oracle.swd.oui/1.7.1.8.0/1/DataFiles/Expanded/lib/InstImages.jar:../stage/Components/oracle.swd.oui/1.7.1.8.0/1/DataFiles/Expanded/lib/InstHelp.jar:../stage/Components/oracle.swd.oui/1.7.1.8.0/1/DataFiles/Expanded/lib/oracleice.jar:../stage/Components/oracle.swd.oui/1.7.1.8.0/1/DataFiles/Expanded/lib/help.jar:../stage/Components/oracle.swd.oui/1.7.1.8.0/1/DataFiles/Expanded/lib/ewt.jar:../stage/Components/oracle.swd.oui/1.7.1.8.0/1/DataFiles/Expanded/lib/xmlparser.jar:../stage/Components/oracle.swd.oui/1.7.1.8.0/1/DataFiles/Expanded/lib/swingaccess.jar:/var/tmp/Disk1/stage/Components/oracle.swd.jre/1.1.8/1/DataFiles/Expanded/linux/lib/rt.jar:/var/tmp/Disk1/stage/Components/oracle.swd.jre/1.1.8/1/DataFiles/Expanded/linux/lib/i18n.jar:/var/tmp/Disk1/stage/Components/oracle.swd.jre/1.1.8/1/DataFiles/Expanded/linux/lib/math.jar:/var/tmp/Disk1/stage/Components/oracle.swd.jre/1.1.8/1/DataFiles/Expanded/linux/lib/classes.zip
    KONSOLE_DCOP_SESSION=DCOPRef(konsole-2370,session-2)
    LESSOPEN=|/usr/bin/lesspipe.sh %s
    USER=oracle
    LS_COLORS=no=00:fi=00:di=01;34:ln=01;36:pi=40;33:so=01;35:bd=40;33;01:cd=40;33;01:or=01;05;37;41:mi=01;05;37;41:ex=01;32:*.cmd=01;32:*.exe=01;32:*.com=01;32:*.btm=01;32:*.bat=01;32:*.sh=01;32:*.csh=01;32:*.tar=01;31:*.tgz=01;31:*.arj=01;31:*.taz=01;31:*.lzh=01;31:*.zip=01;31:*.z=01;31:*.Z=01;31:*.gz=01;31:*.bz2=01;31:*.bz=01;31:*.tz=01;31:*.rpm=01;31:*.cpio=01;31:*.jpg=01;35:*.gif=01;35:*.bmp=01;35:*.xbm=01;35:*.xpm=01;35:*.png=01;35:*.tif=01;35:
    THREADS_TYPE=native_threads
    KDE_MULTIHEAD=false
    THREADS_FLAG=native
    MAIL=/var/spool/mail/oracle
    INPUTRC=/etc/inputrc
    GTK_RC_FILES=/etc/gtk/gtkrc:/u01/app/oracle/.gtkrc:/u01/app/oracle/.gtkrc-kde
    XDM_MANAGED=/var/run/xdmctl/xdmctl-:0,maysd,mayfn,sched
    XMODIFIERS=@im=none
    EDITOR=vi
    LANG=es_ES@euro
    JAVA_HOME=/var/tmp/Disk1/stage/Components/oracle.swd.jre/1.1.8/1/DataFiles/Expanded/linux
    ORACLE_BASE=/u01/oraInventory
    ORACLE_HOME=/u01/app/oracle
    ORACLE_TERM=xterm
    COLORTERM=
    GCC_EXEC_PREFIX=/usr/i386-glibc21-linux/lib/gcc-lib/
    DISPLAY=:0.0
    LOGNAME=oracle
    SHLVL=4
    ORA_NLS33=/u01/app/oracle/ocommon/nls/admin/data
    SHELL=/bin/bash
    HISTSIZE=1000
    HOME=/u01/app/oracle
    SSH_ASKPASS=/usr/libexec/openssh/gnome-ssh-askpass
    TERM=xterm
    PATH=/bin:/usr/bin:/bin:/usr/bin:/usr/X11R6/bin:/usr/local/bin:/u01/app/oracle/bin:/sbin:/usr/sbin:/usr/local/sbin:/opt/bin://u01/app/oracle/bin:/usr/local/java/bin
    NLS_LANG=spanish_spain.we8dec
    TNS_ADMIN=/u01/app/oracle/network/admin
    ORACLE_OWNER=oracle
    LIBPATH=/var/tmp/Disk1/stage/Components/oracle.swd.jre/1.1.8/1/DataFiles/Expanded/linux/lib/linux/native_threads
    Libraries Loaded by the JVM
    <main>
    libjitc.so
    libzip.so
    Current Thread Details
    "main" (TID:0x4032f2d8, sys_thread_t:0x804df40)
    Native Thread State: Pid: 2591 ThreadID: 00000400 Reuse: 1 USER PRIMORDIAL RUNNING
    Native Stack Data : base: bfffee74 pointer bffdf760 used(128788) free(-12052)
    ----- Monitors held -----
    ----- Native stack -----
    java_lang_System_initProperties
    Java_java_lang_System_initProperties_stub
    invokeNativeMethod
    invokeLazyNativeMethod
    ExecuteJava
    ------ Java stack ------ () prio=5 current thread
    java.lang.System.initializeSystemClass(System.java)
    Total Thread Count: 3
    Active Thread Count: 3
    JNI Thread Count: 0
    Full thread dump:
    "Async Garbage Collector" (TID:0x4032f238, sys_thread_t:0x80d9380)
    Native Thread State: Pid: 2597 ThreadID: 00000803 Reuse: 1 DAEMON SUSPENDED
    Native Stack Data : base: bf5ffb00 pointer bf5ff5f0 used(1296) free(115440)
    ----- Monitors held -----
    ----- Native stack -----
    (null)
    __pthread_mutex_unlock
    pthread_cond_wait
    sysThread_shell
    (null)
    __clone
    ------ Java stack ------ () prio=1
    "Finalizer thread" (TID:0x4032f288, sys_thread_t:0x80d9100)
    Native Thread State: Pid: 2596 ThreadID: 00000402 Reuse: 1 DAEMON MONITOR WAIT
    Native Stack Data : base: bf7ffb00 pointer bf7ff968 used(408) free(116328)
    ----- Monitors held -----
    ----- Native stack -----
    sysMonitorWait - waiting on Finalize me queue lock
    (null)
    sysThread_shell
    (null)
    __clone
    ------ Java stack ------ () prio=1
    "main" (TID:0x4032f2d8, sys_thread_t:0x804df40)
    Native Thread State: Pid: 2591 ThreadID: 00000400 Reuse: 1 USER PRIMORDIAL RUNNING
    Native Stack Data : base: bfffee74 pointer bffdf754 used(128800) free(-12064)
    ----- Monitors held -----
    ----- Native stack -----
    java_lang_System_initProperties
    Java_java_lang_System_initProperties_stub
    invokeNativeMethod
    invokeLazyNativeMethod
    ExecuteJava
    ------ Java stack ------ () prio=5 current thread
    java.lang.System.initializeSystemClass(System.java)
    System Monitor Status
    Thread queue lock: unowned.
    Name and type hash table lock: unowned.
    String intern lock: unowned.
    JNI pinning lock: unowned.
    JNI global reference lock: unowned.
    Zip lock: unowned.
    BinClass lock: unowned.
    Class loading lock: unowned.
    Java stack lock: unowned.
    Code rewrite lock: unowned.
    Heap Lock: unowned.
    Has finalization queue lock: unowned.
    Finalize me queue lock: unowned.
    Integer lock access-lock: unowned.
    Monitor cache lock: unowned.
    Monitor registry: unowned.
    Object Monitor Status
    OK
    I have tried to used diferents ways, but the result is the same. Can anybody help me?
    Thanks

    Hi,
    Unset the LANG environment variable in your shell before starting the Oracle
    Universal Installer as follows:
    $ unset LANG
    in case problem persist mail me back
    -Yogi
    [email protected]

  • Installing on Redhat Linux 7.1?

    Hello.
    I know Redhat Linux 7.1 is not officially supported, but I want to know if it's possible to install the Sun ONE Application Server 7 on this OS.
    The reason I ask this is that the installer is giving me problems. It stops during installation with the message "installation stopped or aborted". The logs show a package conflict between some of the packages from the App Server installation (no other packages are mentioned). The portions of the App Server that were installed are then automatically uninstalled.
    I'm using default install directories.
    Since other posters here seem to have trouble with the installer and other versions of Redhat, perhaps my problems are not OS related at all...
    Any ideas would be appreciated.
    --Andr�s.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Nicholas Waltham ([email protected]):
    I am currently trying to install Oracle 8.05 onto Redhat Linux 7.1. I can get part of the way through
    the installation, however, when it is installing the rdbms portion. I stops with an error about a failure
    during relinking. Here is the part of make.log which details what really happened. Could someone tell
    me how to proceed.
    Thank you,
    Nicholas Waltham
    --------------[ rdbms.ins 2618 ]<HR></BLOCKQUOTE>
    Well ,I tried to install Oracle 8.0.5 in Debian Potato. At end I desist.
    Oracle 8.0.5 works with glibc 5 and Debian Potato with glibc6 .
    I guess this is your problem.
    There are patches for this but i don't get
    to make work.
    Sorry for my english.
    Cisar

  • Registering Apache 1.3.4 with OAS 407 on RedHat Linux 5.2

    Hi,
    Has anybody tried or succeeded in registering Apache 1.3.4 with
    Oracle Application Server 4.0.7 running on RedHat Linux 5.2?
    We're having trouble registering Apache as an External Web
    Listener for OAS. Applying the correction for step #2 under
    registering Apache servers also hasn't given us any success in
    rebuilding Apache.
    Has anybody encountered the error message below when compiling
    the Apache 1.3.4 to work with OAS after updating the EXTRA_LIBS
    in Apache CONFIGURATION File with the value given on the
    documentation.
    The Error Message
    Using config file: Configuration
    Creating Makefile
    + configured for Linux platform
    + setting C compiler to gcc
    + setting C pre-processor to gcc -E
    + checking for system header files
    + adding selected modules
    + doing sanity check on compiler and options
    /home/oracle/ows/4.0/lib/libapadp.so: undefined reference to
    `ap_log_error_old'
    /home/oracle/ows/4.0/lib/libapadp.so: undefined reference to
    `ap_palloc'
    /home/oracle/ows/4.0/lib/libapadp.so: undefined reference to
    `ap_internal_redirect'
    /home/oracle/ows/4.0/lib/libapadp.so: undefined reference to
    `gMimeTypesFile'
    /home/oracle/ows/4.0/lib/libapadp.so: undefined reference to
    `ap_log_printf'
    /home/oracle/ows/4.0/lib/libapadp.so: undefined reference to
    `ap_setup_client_block'
    /home/oracle/ows/4.0/lib/libapadp.so: undefined reference to
    `ap_destroy_sub_req'
    /home/oracle/ows/4.0/lib/libapadp.so: undefined reference to
    `ap_get_basic_auth_pw'
    /home/oracle/ows/4.0/lib/libapadp.so: undefined reference to
    `ap_listeners'
    /home/oracle/ows/4.0/lib/libapadp.so: undefined reference to
    `ap_sub_req_lookup_file'
    /home/oracle/ows/4.0/lib/libapadp.so: undefined reference to
    `ap_pstrdup'
    /home/oracle/ows/4.0/lib/libapadp.so: undefined reference to
    `gImplName'
    /home/oracle/ows/4.0/lib/libapadp.so: undefined reference to
    `ap_table_add'
    /home/oracle/ows/4.0/lib/libapadp.so: undefined reference to
    `ap_get_remote_host'
    /home/oracle/ows/4.0/lib/libapadp.so: undefined reference to
    `ap_signal'
    /home/oracle/ows/4.0/lib/libapadp.so: undefined reference to
    `ap_send_http_header'
    /home/oracle/ows/4.0/lib/libapadp.so: undefined reference to
    `ows_module'
    /home/oracle/ows/4.0/lib/libapadp.so: undefined reference to
    `ap_should_client_block'
    /home/oracle/ows/4.0/lib/libapadp.so: undefined reference to
    `ap_rwrite'
    /home/oracle/ows/4.0/lib/libapadp.so: undefined reference to
    `ap_table_set'
    /home/oracle/ows/4.0/lib/libapadp.so: undefined reference to
    `ap_get_client_block'
    /home/oracle/ows/4.0/lib/libapadp.so: undefined reference to
    `alias_module'
    make: *** [dummy] Error 1
    ** A test compilation with your Makefile configuration
    ** failed. This is most likely because your C compiler
    ** is not ANSI. Apache requires an ANSI C Compiler, such
    ** as gcc. The above error message from your compiler
    ** will also provide a clue.
    Aborting!
    Your comments or suggestions are most welcome.
    Thanks,
    --Edsel
    null

    Hi ,
         First of all please check availability of your OS + DB requiremnts whether it is supported by SAP or not.You can check this at Product Availability Matrix at ::
    http://service.sap.com/pam
         If this support for your environment i.e.RedHat Linux 5.2 with Oracle 10G then be informed that after starting sapinst in step create database it will prompt you for installing your oracle DB. So open a new window & install your databse ,do the patching of your DB & then continue with sapinst after successfull installation of oracle.Rest of details sapinst will prompot you during instal;lation.
        Hope this will guide you for your query.
    Thanks..
    Mohit

  • Getting black screen while opening compounf PDFs in Redhat Linux 64bit & adobe reader 9.5.1

    Hi All,
    I am unable to open compound PDF files in adobe reader 9.5.1 in Redhat Linux 64 bit. all I get is a black screen. Does anyone have a fix for this?
    Regards,
    Gary.

    Hi All,
    I got the solution to view compound PDFs \ PDF portfolios in Redhat Linux.
    Use the native PDF viewer (Evince - Document Viweer). In the left panel, where it usually shows 'thumbnails' - select 'attachments' from the drop down menu. This will show you all the embeded PDF files. Just double click to view.
    Regards,
    Gary.

  • Not able to connect to DB in Redhat Linux - intermittent wired problem

    Hi,
    I need some help from you if possible please help me. There is a wired problem in the Linux based Oracle server.
    OS: Redhat Linux 8
    Database: Oracle Enterprise server 9.2
    There is an intermittent wired problem.
    After some time (it happen twice last Saturday and Yesterday), either from application or from SQL Plus we are not able to connect it from outside. But we are able to connect to the oracle server on Linux server.
    We checked the Listener status on the server and it was UP and running.
    We can ping the server from outside.
    We are not able to do an FTP from inside the server or from Outside to the Linux server.
    During this time the http protocol is working we can upload any file to the other sites.
    We tried to shutdown the oracle server and even we tried to restart the OS itself and not able to resole this issue.
    If we create a new Listener and starts the server and all blocking thing were released and now working.
    Currently we are monitoring the server at ALIF’s premises if it going to happen for the third time or not.
    Thanks a lot
    Regards
    Kumar

    What is the error that you get when you try to get connection ?
    to check the log file is a good option: <ORACLE_HOME>/network/log/listener.log
    Joel Pérez

  • ODBC Driver for Redhat Linux Configuring

    HI,
    Any one know the procedure of installing ODBC driver in redhat linux.
    The requirement is the application is running on windows and oracle 11g database is running on linux. All the Exe of application uses ODBC driver to connect to oracle database 11g.
    Is there any process to install ODBC driver in linux so that i can ran all the EXE's in linux. Can any one provide the docs on these topics.
    i have read some topics and enquired most of them they said can be done using the wine utility in linux. So i think to post in Oracle forum so that i get some clue to proceed.
    Thanks in advance...
    SAI

    Oracle provides a driver that allows a Windows client to connect to databases on any platform. If you're looking for an ODBC driver for a non-Windows client, there are a few third parties that produce these sorts of drivers (DataDirect comes to mind), but most of them are commercial. http://www.unixodbc.org is an open source project to do the same thing.
    Justin

  • 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).

Maybe you are looking for

  • Can't drag files from Mini Bridge

    Hi It's seems as an issue but I can't drag files from Mini Bridge to workspace thought my colleague can do that. Is it a problem with my configuration or internal bug of photoshop CS6?

  • XHTML page with current PHP form - client wants Coldfusion integration...

    I have never worked with  Coldfusion before and I have no idea what it involves. The form is setup  with PHP right now, however, the client uses Coldfusion and would  prefer the form to be set up to integrate with it. I dont even know where to start!

  • Documentation about ccna sp

    Hello , please i'm looking for documents about ccna sp , especially MPLS,IS-IS courses. It will be helpfull , i found it on the web but no good results please help me ! Posted by WebUser Venice L'italien from Cisco Support Community App

  • Hide columns in JClient in function to BC4J Entity

    Hi: I need to hide some columns dynamically in my JClient Panel in base to conditional BC4J Entity object bussiness rule. For example if i put my pseudocode in Oracle Forms based (i don't remeber the syntaxis well): "if my Deparment.idDepartment = 10

  • No PXA Memory dump

    Hi all, program: added 25 lines of coding, while saving i am getting the Dump error. the Description:   No PXA storage space available at the moment. The current ABAP/4 program had to be terminated because there was no space available to load it. Eac