Java running under linux with crontab

I'm having a problem:
i want to run a java program under linux with crontab.
my classes are in a directory and aren't in a package. i run em by invoking ./start which is a small script that i wrote. The script is in the same dir as the classes and invokes java by "java Main >>logjava.txt " but this doesn't seem to work all i get is an empty logfile
i need to run the program every day at 0800 so i inserted the following in crontab:
0 8 * 1-5 /var/"path"/start > logjava (where path is the path to the classes dir)
if i run the cmdline from anywhere on the prompt i get the result i want. I think it's because the cron runs it from the root dir thus making java unable to find the classes
Any suggestions would be welcome. or can some1 tell me how to make linux executables from the java (i usually use jsmooth for the windows exe)

You can execute several commands in the process started by cron. You separate them using semicolons.
Have you tried a cron entry like this:
0 8 * 1-5 cd /var/"path";pwd;echo $PATH; ./start > logjavaOr, you may need to make sure the process started by cron gets the same environment as your interactive shells do, by explicitly loading your setup or .login scripts:
0 8 * 1-5 . $HOME/.setup;cd /var/"path";pwd;echo $PATH; ./start > logjava

Similar Messages

  • Loss of keyboard focus in Java appl running under linux

    I have a small sample program that replicates my problem. When this program is run a window is created. If you select File->New another instance of the program window is created. Now if you try to go back and bring to front the first window, keyboard focus is not
    transferred when run under linux. You can only type in the second window. The expected behavior does happen in Windows.
    > uname -a
    Linux watson 2.6.20-1.2933.fc6 #1 SMP Mon Mar 19 11:38:26 EDT 2007 i686 i686 i386 GNU/Linux
    java -versionjava version "1.5.0_11"
    Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0_11-b03)
    Java HotSpot(TM) Client VM (build 1.5.0_11-b03, mixed mode, sharing)
    javac -versionjavac 1.5.0_11
    import java.awt.event.*;
    import javax.swing.*;
    class SwingWindow extends JFrame {
        SwingWindow() {
         super("SwingWindow");
         JMenuBar menuBar = new JMenuBar();     
            JMenu fileMenu = new JMenu("File");
            JMenuItem newItem = new JMenuItem("New");
            newItem.addActionListener(new ActionListener() {
                public void actionPerformed(ActionEvent event) {
              SwingWindow.createAndShowGUI();
         fileMenu.add(newItem);
            menuBar.add(fileMenu);
            setJMenuBar(menuBar);
            setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);       
         JTextField text = new JTextField(200);
         getContentPane().add(text);
         pack();
         setSize(700, 275);
        public static void createAndShowGUI() {
            JFrame frame = new SwingWindow();
            frame.setVisible(true);
        public static void main(String[] args) {
            javax.swing.SwingUtilities.invokeLater(new Runnable() {
                public void run() {
                    createAndShowGUI();
    }

    You can implement the FocusListener interface. When
    the first JFrame gains focus, call
    text.requestFocusInWindow(). I hope this helps.The call requestFocusInWindow is not helping, perhaps even making it worse.
    The problem seems to be that I am in the situation where the call
    KeyboardFocusManager.getCurrentKeyboardFocusManager().getPermanentFocusOwner()
    is returning the expected Component. The problem is that the KeyListener class that is registered with the Component is not being called when a key is being pressed.
    The issue is that I have a component that has the keyboard focus, but the KeyListener class
    is not responding.
    This seems to be a linux only problem which makes it only mysterious.

  • Java applications under Linux

    Hello all
    I want to share my experience with all about programs generated by Oracle Forms and running under Linux and ask for help.
    We are developing systems under Oracle Forms to Windows, but some customers had restrictions with that operational system, then we had implemented IAS to run, under Java, the same applications.
    Under Windows we have no problems, we just install JInitiator to made fast to charge/open the classes.
    Under Linux we had not JInitiator and the solution is to implement a Proxy server.
    In this test the first problem we had was a IP that the system can not resolve, looking for the solution on web, we found that it´s solved inserting this line in java.policy:
    permission java.net.SocketPermission "200.204.0.1:9000-", "resolve";
    But we had not to implemented the proxy server, after implement this other problem just stuck us.
    The system just not show any error message and are not hang, but never open de login dialog.
    Some one already had this kind of problem?
    Could exist a difference between Linux configuration and Windows configuration to Java?
    Well, thanks in advance...
    []´s
    Arthur

    javac -classpath logger.jar:. rootPackage/MainClass.java
    java -classpath logger.jar:. rootPackage.MainClass

  • Java installation under Linux

    Hi
    I've got a problem with the installation of somme Java Packages under Linux.
    What must I do with the "*.jar" file? I wont to install the neu Open Xchange Server under SuSE 9.1, but there are somme Problems with the Java Packages!
    Can someone help me???
    Thanks a lot!!
    Dambi

    Hello Ishan,
    The J2EE server is not starting because of the error in A. Please refer to note 965451 for solution.
    The warnings in part B are insignificant. The startup framework has list with profile parameters and when a parameter is not in the list complains with warning. This warning doesn't mean that the parameter is wrong!
    The jcontrol is the parent process of the server process and if the server process dies you will always get error message there.
    Regards,
    Ventsi Tsachev
    Technology Development Support (J2EE Engine)
    SAP Labs, Palo Alto, Ca (USA)

  • Vhost configuration for Adobe Media Server running under linux.

    Please help me with Vhost configuration for Adobe Media Server running under linux.
    I was running a media sharing website for which I wanted to use Adobe Media Server.
    To use, AMS, I disabled the already installed Apache server and installed AMS along with the built in Apache server. I could successfully install AMS and could login to AMS Admin Console through my IP number.
    My existing website, www.mydomain.com is having its contents located at:
    /home/mydomain/public_html
    (Directory created under the old version of Apache not bundled with AMS)
    Users will be uploading their videos, which will get transcoded and will be delivered to the website visitors in the existing scenario.
    To use this website with AMS, this is what I did:
    I created a folder for my domain, www.mydomain.com as below
    /opt/adobe/ams/conf/_defaultRoot_/www.mydomain.com
    Copied Application.xml and Vhost.xml from /opt/adobe/ams/conf/_defaultRoot_/   and pasted them in /opt/adobe/ams/conf/_defaultRoot_/www.mydomain.com
    In the Application.xml file there are 2 entries:
    <Alias name="mydomain.com"></Alias>
    <AppsDir>${/home/mydomain/public_html}</AppsDir>
    Please help me with further steps to be completed:
    Do I need to create a separate VirtualHost entry in the Apache installed with AMS?
    If yes, can I specify already existing document root for my website (/home/mydomain/public_html) or do I need to create a separate folder under webroot/Apache ?
    If yes to point 2 above, then do I need to copy all the existing contents from /home/mydomain/public_html to the newly created folder ?
    I hope, I can serve all my static contents like html pages and php and media like video/audio. In that case do I need create alias to my Media/Alias folder or AMS will automatically start streaming when a video/audio is requested ?
    What other steps do i need to complete?
    Any help in this regard would be highly appreciated.
    Thanks and Regards

    Dear sir or madam,
    Here is Letswin Technology, which specializes in global servers, web hosting, VPS, VPNj. If anything I can do for you, pls contact us!
    Have a nice day!

  • Opening a Powerpoint in JSP and run under Linux

    Hi,
    I need to have a JSP page that provides a link to open a powerpoint file and this JSP is to be run under Linux. When I try to click on the link in Linux to open the powerpoint, it gives me a lot of junk characters. Can somebody please help mi, thanks a million!

    You have the mimetype for the HTTP response set to something other than what will make the browser start a powerpoint viewer and direct the content of the HTTP response to it.
    In your jsp use the setHeader(String key,String key) method to set the value of "Content-Type" to the mimetype for powerpoint.
    Of course the users must have browsers that are configured to launch a powerpoint viewer or plug-in. If you provide the correct mimetype and peoples browsers desn't have this, then they will get the "save to file" dialog box.

  • Can't load images under Linux with JavaFX img url

    I have a simple Imageview
    ImageView {
    x: bind mouseX
    y: 200
    //fitWidth works better than transforms
    fitWidth: 200;
    fitHeight: 200;
    image: bind img
    //transforms: [
    // Scale {x: bind myScaleX, y: bind myScaleY}]
    //Reflection effect
    effect: Reflection {
    bottomOpacity: 0.0
    topOpacity: 0.8
    fraction: 1.0
    topOffset: bind mouseY/5
    and I am loading the image like this in anoter function:
    img = Image {
    url: "file://home/suvi/NetBeansProjects/viewfx/src/viewfx/pictures/pic2.jpg"
    //url: "file:/D:/My Documents/NetBeansProjects/ViewFX/src/viewfx/pictures/pic2.jpg"
    //url: "{__DIR__}pictures/pic2.jpg"
    it works under Windows like line 2. Line 3 works under Windows and Linux,
    but Line 1 does not load a image under Linux ?!?
    What is the reason for that? any help?

    Hi raychen and Company
    ok, this is big trouble. I tested it under Windows XP SP3 and Fedora 12.
    The Image URL does not work equal under both system
    Windows: url: "file:/
    Linux: url "file://
    so much for the Java VM makes it system independable, NOT.
    Any workaround?
    Where can I fill a JavaFX Bugreport?

  • Problems running under Linux

    Hi,
    Anyone know why does this message always appear when I run sources which has some awt.* classes in it?
    These runtime messages actually happens in my University machines, which is running Redhat 7.1 with Java version 1.3. It happens also in Mandrake 8.0
    I'm grateful if someone can point to what is wrong. Thank You in advance.
    Font specified in font.properties not found [--symbol-medium-r-normal--*-%d-*-*-p-*-adobe-fontspecific]
    Font specified in font.properties not found [--symbol-medium-r-normal--*-%d-*-*-p-*-adobe-fontspecific]
    Font specified in font.properties not found [--symbol-medium-r-normal--*-%d-*-*-p-*-adobe-fontspecific]
    Font specified in font.properties not found [--symbol-medium-r-normal--*-%d-*-*-p-*-adobe-fontspecific]
    Font specified in font.properties not found [--symbol-medium-r-normal--*-%d-*-*-p-*-adobe-fontspecific]
    Font specified in font.properties not found [--symbol-medium-r-normal--*-%d-*-*-p-*-adobe-fontspecific]
    Font specified in font.properties not found [--symbol-medium-r-normal--*-%d-*-*-p-*-adobe-fontspecific]
    Font specified in font.properties not found [--symbol-medium-r-normal--*-%d-*-*-p-*-adobe-fontspecific]
    Font specified in font.properties not found [--symbol-medium-r-normal--*-%d-*-*-p-*-adobe-fontspecific]
    Font specified in font.properties not found [--symbol-medium-r-normal--*-%d-*-*-p-*-adobe-fontspecific]
    Font specified in font.properties not found [--symbol-medium-r-normal--*-%d-*-*-p-*-adobe-fontspecific]
    Font specified in font.properties not found [--symbol-medium-r-normal--*-%d-*-*-p-*-adobe-fontspecific]
    Font specified in font.properties not found [--symbol-medium-r-normal--*-%d-*-*-p-*-adobe-fontspecific]
    Font specified in font.properties not found [--symbol-medium-r-normal--*-%d-*-*-p-*-adobe-fontspecific]
    Font specified in font.properties not found [--symbol-medium-r-normal--*-%d-*-*-p-*-adobe-fontspecific]
    Font specified in font.properties not found [--symbol-medium-r-normal--*-%d-*-*-p-*-adobe-fontspecific]
    Font specified in font.properties not found [--symbol-medium-r-normal--*-%d-*-*-p-*-adobe-fontspecific]
    Font specified in font.properties not found [--symbol-medium-r-normal--*-%d-*-*-p-*-adobe-fontspecific]
    Font specified in font.properties not found [--symbol-medium-r-normal--*-%d-*-*-p-*-adobe-fontspecific]
    Font specified in font.properties not found [--symbol-medium-r-normal--*-%d-*-*-p-*-adobe-fontspecific]

    This means the specific font type "adobe-fontspecific" is not available in your OS.
    You can either use another font type in your program or install that font type in your OS.

  • Firefox running under Linux Mint (based on Ubuntu) 12 (KDE) won't install extensions for Firefox

    Linux Mint (based on Ubuntu) 12, KDE desktop
    Firefox 10.0
    Started up Firefox right after Mint was installed. On the add-ons page video download helper was shown as a featured extension and I installed it, then rebooted when prompted. After that, Firefox would never install another extension again. Just gives download error.
    I google searched and in a forum I found a post about uninstalling and reinstalling Firefox. I tried it. First time I started it up, it installed video download helper again, but then would not install any other extension after that. I tried numerous extensions I '''KNOW''' are working in Firefox 10.0 because they are working in Firefox over on my Win 7. Everytime I get a download error, either from the addons site or from the Add-ons Manager in Firefox.
    Someone told me on the Mint forums that I needed to add a subdirectory on a certain directory, so I did that. Didn't work.
    It seems Ubuntu disables the root, or cripples it, and I guess Mint does too. You can still use sudo when doing things in Ubuntu (and Mint I would assume, since it's based on Ubuntu) but you can't get true 'superuser' access as I understand it. But, I don't think this would have any bearing on the problem, or my search of the Mint forums would have come up with all kinds of threads screaming about this.

    Problem solved - it was caused by an add-on called "PDF Download 3.0.0.2)
    To fix - in Firefox :
    Click on '''Tools''' command (top of screen)
    Select '''Extensions'''
    click on "'''disable''' button beside '''PDF Download'''
    Close Firefox and restart it.
    Clicking on any pdf file should open a new tab now and the document will appear there.

  • 7950 twin frozr iii running under load with nothing going on?

    For some reason (and randomly it seems) my GPU load will be nearly maxed and heating up the gpu for no reason. I had left it sitting as i went to the store shortly after turning it on and it was running around 80-95%~ load when all that was going was skype in the background along with MSI afterburner and AMD catalyst. Why would it randomly do this?

    Can you follow this >>Posting Guide<< please. Make sure you provide enough detail.
    Try removing drivers once again, but this time use >>Driver Fusion<< while in safe mode, then reboot and install fresh drivers from AMD (don't look on MSI's for GPU drivers). Also uninstall Afterburner.
    If your HDD is quite big, are you able to create new partition and install fresh Windows on it/or different HDD where OS is not installed? So you don't remove all the current drivers etc, we want just fresh windows on new partition to see if it's something messed up with OS.

  • What games do you run under Linux?

    Thats it...
    what games do you usually run?
    If using WineX, please include version and PC specs (cpu, memory and video card are enough)

    UnderDog wrote:I used to play The Incredible Machine when I was younger. I was so addicted to that game and I can't find it anymore... hook a brotha up.
    I've never been much of a gamer, but I distinctly remember playing this game too. A couple weeks ago i went and looked for old games like this, and TIM was one of the ones i found. I don't remember where I got it, but I'll put it up here for a day or two so you can grab it (it's abandonware): http://atrum.com/tim/.
    Oh and I came across Legends (mentioned previously) in a slashdot post the other day and the game is gorgeous. I've never played either Tribes game, so I'm still getting used to the controls, but it's fun. Have been looking into contributing to the project. Just too bad they can't release all the sources for it (it uses the Torque engine).
    As for the games I play, the ones I have played have been native to Linux, like Unreal Tournament, Quake 3 and RTCW. Speaking of which, I guess i should try out ET since everyone is raving about it. Now where's that damn CD...
    natael
    LOLOLROLF OMFG OMG N00B HAX WTF 31337 BBQ!!!!!1111

  • Crash (SIGSEGV, SIGILL) of 32bit Hotspot under Linux x86_64 in VMware

    Hello!
    A reproducible crash of these 1.6 32 bit Java VMs is hinderung my application from starting when I want to start it under a x86_64 Linux kernel in VMware (Workstation and ESX):
    - java version "1.6.0_06"
    Java(TM) SE Runtime Environment (build 1.6.0_06-b02)
    Java HotSpot(TM) Client VM (build 10.0-b22, mixed mode, sharing)
    - java version "1.6.0_06"
    Java(TM) SE Runtime Environment (build 1.6.0_06-b02)
    Java HotSpot(TM) Server VM (build 10.0-b22, mixed mode)
    - java version "1.6.0_10-beta"
    Java(TM) SE Runtime Environment (build 1.6.0_10-beta-b23)
    Java HotSpot(TM) Client VM (build 11.0-b11, mixed mode, sharing)
    Tested using there kernels:
    - Linux debian 2.6.18-6-amd64 #1 SMP Sun Feb 10 17:50:19 UTC 2008 x86_64 GNU/Linux
    - Linux openSUSE 2.6.22.5-31-default #1 SMP 2007/09/21 22:29:00 UTC x86_64 x86_64 x86_64 GNU/Linux
    - Linux sles10-sp1-sdm 2.6.16.46-0.12-default #1 Thu May 17 14:00:09 UTC 2007 x86_64 x86_64 x86_64 GNU/Linux
    Sproradic but reproducible JVM (Hotspot) crashes while running a simple garbage collector stress application several times in parallel. hs_err files are generated each time. However, the "Problematic frame" address and library changes every time!
    Examples:
    # Java VM: Java HotSpot(TM) Client VM (10.0-b22 mixed mode, sharing linux-x86)
    # Problematic frame:
    # C [libc.so.6+0xe4c9d] xdr_u_long+0xd
    VM state:not at safepoint (normal execution)
    # Java VM: Java HotSpot(TM) Server VM (10.0-b22 mixed mode linux-x86)
    # Problematic frame:
    # C 0xf7f56acb
    VM state:at safepoint (normal execution)
    # Java VM: Java HotSpot(TM) Server VM (10.0-b22 mixed mode linux-x86)
    # Problematic frame:
    # C [libnss_compat.so.2+0x2e16] nsscompat_getpwnam_r+0x46
    VM state:synchronizing (normal execution)
    The problem only appears using JDK or JRE 1.6 32 bit edition on a Linux 2.6 x86_64 kernel in VMware. Tests using real hardware, using a i686 kernel and using JDK / JRE 1.6 64 bit edition or JDK / JRE 1.5 (32 bit and 64 bit) could not reproduce the crashes.
    Questions:
    - Is there a general stability problem when starting the 32 bit Java VM under Linux 64?
    - Does anybody have similar problems with
    - Java VM 32bit under Linux 64?
    - Java VM in VMware (both ESX and Workstation)?
    Simple stress test application:
    public class GCStress {
    private static Thread[] threads;
    private static java.util.Random random = new java.util.Random();
    private static int maxBytes;
    private static int numThreads;
    public static void main(String[] args) {
    numThreads = Integer.parseInt(args[0]);
    maxBytes = Integer.parseInt(args[1]);
    threads = new Thread[numThreads];
    for (int x = 0; x < numThreads; x++) {
    threads[x] = new Thread(new Allocator(), "Thread_" + x);
    threads[x].start();
    while (true) {
    for (int x = 0; x < numThreads; x++) {
    if (!threads[x].isAlive()) {
    threads[x] = new Thread(new Allocator(), "Thread_r" + x);
    threads[x].start();
    try {
    Thread.sleep(500);
    } catch (InterruptedException e) {
    // ignore
    private static class Allocator implements Runnable {
    public void run() {
    while (true) {
    int tSize = random.nextInt(maxBytes);
    // System.out.println(Thread.currentThread().getName()
    // + " allocating " + tSize / 1024 + "kb");
    byte[] tMemFiller = new byte[tSize];
    try {
    Thread.sleep(random.nextInt(200));
    } catch (InterruptedException e) {
    ; // ignore
    }

    The program is started like this:
    ./jdk1.6.0_06/bin/java -server -Xms32m -Xmx256m GCStress 500 10485760
    And I run it usually 5 times in parallel. 1 time seems not to be enough (I should test that tonight).
    However, I've tested using several -XX: flags, but nothing really helped! (-XX:+UseParallelGC, -XX:-UseTLAB, -XX:+UseSpinning -XX-UseThreadPriorities, -XX:-UseBiasedLocking, -XX:-UseLargePages)
    About the lib: Every time, the content of hs_err is very different. I've also got
    hs_err_pid6201.log:# Problematic frame:
    hs_err_pid6201.log-# C [libc.so.6+0x5a261] IOwfile_seekoff+0x3b4
    hs_err_pid7116.log:# Problematic frame:
    hs_err_pid7116.log-# C 0x36343238
    hs_err_pid7137.log:# Problematic frame:
    hs_err_pid7137.log-# C 0xf7f17f67
    hs_err_pid7192.log:# Problematic frame:
    hs_err_pid7192.log-# C [libc.so.6+0x9d1ae]
    hs_err_pid7223.log:# Problematic frame:
    hs_err_pid7223.log-# C [libc.so.6+0xfef67] __register_frame_info+0xf
    hs_err_pid7232.log:# Problematic frame:
    hs_err_pid7232.log-# C [libc.so.6+0x109cdc]
    hs_err_pid7239.log:# Problematic frame:
    hs_err_pid7239.log-# C [libc.so.6+0x212b3] __newlocale+0x233
    hs_err_pid8569.log:# Problematic frame:
    hs_err_pid8569.log-# C [libc.so.6+0x562b9] IOgetline_info+0x52
    hs_err_pid8571.log:# Problematic frame:
    hs_err_pid8571.log-# C [libc.so.6+0x2b3] rtldglobal+0x2b3
    hs_err_pid8573.log:# Problematic frame:
    hs_err_pid8573.log-# C [libc.so.6+0x9b2b9]
    hs_err_pid8596.log:# Problematic frame:
    hs_err_pid8596.log-# C [libc.so.6+0x2e2d1]
    hs_err_pid8615.log:# Problematic frame:
    hs_err_pid8615.log-# C 0xf7e462b3
    hs_err_pid8635.log:# Problematic frame:
    hs_err_pid8635.log-# C [libc.so.6+0x9148c] glob64+0x40d
    hs_err_pid8642.log:# Problematic frame:
    hs_err_pid8642.log-# C [libc.so.6+0x722b9]
    hs_err_pid8667.log:# Problematic frame:
    hs_err_pid8667.log-# C [libc.so.6+0x67261]
    hs_err_pid9957.log:# Problematic frame:
    hs_err_pid9957.log-# C [libc.so.6+0xc5265]
    libnss is linked during execution:
    hs_err_pid7192.log:f7d77000-f7d7e000 r-xp 00000000 08:01 422025 /emul/ia32-linux/lib/libnss_compat-2.3.6.so
    hs_err_pid7192.log:f7d7e000-f7d80000 rwxp 00006000 08:01 422025 /emul/ia32-linux/lib/libnss_compat-2.3.6.so
    hs_err_pid7223.log:f7d6e000-f7d75000 r-xp 00000000 08:01 422025 /emul/ia32-linux/lib/libnss_compat-2.3.6.so
    hs_err_pid7223.log:f7d75000-f7d77000 rwxp 00006000 08:01 422025 /emul/ia32-linux/lib/libnss_compat-2.3.6.so
    hs_err_pid7232.log:f7db0000-f7db7000 r-xp 00000000 08:01 422025 /emul/ia32-linux/lib/libnss_compat-2.3.6.so
    hs_err_pid7232.log:f7db7000-f7db9000 rwxp 00006000 08:01 422025 /emul/ia32-linux/lib/libnss_compat-2.3.6.so
    hs_err_pid7239.log:f7dbc000-f7dc3000 r-xp 00000000 08:01 422025 /emul/ia32-linux/lib/libnss_compat-2.3.6.so
    hs_err_pid7239.log:f7dc3000-f7dc5000 rwxp 00006000 08:01 422025 /emul/ia32-linux/lib/libnss_compat-2.3.6.so
    hs_err_pid8569.log:f7d4c000-f7d53000 r-xp 00000000 08:01 422025 /emul/ia32-linux/lib/libnss_compat-2.3.6.so
    hs_err_pid8569.log:f7d53000-f7d55000 rwxp 00006000 08:01 422025 /emul/ia32-linux/lib/libnss_compat-2.3.6.so
    hs_err_pid8571.log:f7da2000-f7da9000 r-xp 00000000 08:01 422025 /emul/ia32-linux/lib/libnss_compat-2.3.6.so
    hs_err_pid8571.log:f7da9000-f7dab000 rwxp 00006000 08:01 422025 /emul/ia32-linux/lib/libnss_compat-2.3.6.so
    hs_err_pid8573.log:f7d07000-f7d0e000 r-xp 00000000 08:01 422025 /emul/ia32-linux/lib/libnss_compat-2.3.6.so
    hs_err_pid8573.log:f7d0e000-f7d10000 rwxp 00006000 08:01 422025 /emul/ia32-linux/lib/libnss_compat-2.3.6.so
    hs_err_pid8596.log:f7d74000-f7d7b000 r-xp 00000000 08:01 422025 /emul/ia32-linux/lib/libnss_compat-2.3.6.so
    hs_err_pid8596.log:f7d7b000-f7d7d000 rwxp 00006000 08:01 422025 /emul/ia32-linux/lib/libnss_compat-2.3.6.so
    hs_err_pid8615.log:f7de0000-f7de7000 r-xp 00000000 08:01 422025 /emul/ia32-linux/lib/libnss_compat-2.3.6.so
    hs_err_pid8615.log:f7de7000-f7de9000 rwxp 00006000 08:01 422025 /emul/ia32-linux/lib/libnss_compat-2.3.6.so
    hs_err_pid8635.log:f7d27000-f7d2e000 r-xp 00000000 08:01 422025 /emul/ia32-linux/lib/libnss_compat-2.3.6.so
    hs_err_pid8635.log:f7d2e000-f7d30000 rwxp 00006000 08:01 422025 /emul/ia32-linux/lib/libnss_compat-2.3.6.so
    hs_err_pid8642.log:f7d30000-f7d37000 r-xp 00000000 08:01 422025 /emul/ia32-linux/lib/libnss_compat-2.3.6.so
    hs_err_pid8642.log:f7d37000-f7d39000 rwxp 00006000 08:01 422025 /emul/ia32-linux/lib/libnss_compat-2.3.6.so
    hs_err_pid8667.log:f7d3c000-f7d43000 r-xp 00000000 08:01 422025 /emul/ia32-linux/lib/libnss_compat-2.3.6.so
    hs_err_pid8667.log:f7d43000-f7d45000 rwxp 00006000 08:01 422025 /emul/ia32-linux/lib/libnss_compat-2.3.6.so
    hs_err_pid9957.log:f7d9a000-f7da1000 r-xp 00000000 08:01 422025 /emul/ia32-linux/lib/libnss_compat-2.3.6.so
    hs_err_pid9957.log:f7da1000-f7da3000 rwxp 00006000 08:01 422025 /emul/ia32-linux/lib/libnss_compat-2.3.6.so
    Sample stack trace:
    # An unexpected error has been detected by Java Runtime Environment:
    # SIGSEGV (0xb) at pc=0x67f69b57, pid=9123, tid=3902569360
    # Java VM: Java HotSpot(TM) Server VM (10.0-b22 mixed mode linux-x86)
    # Problematic frame:
    # C 0x67f69b57
    # If you would like to submit a bug report, please visit:
    # http://java.sun.com/webapps/bugreport/crash.jsp
    --------------- T H R E A D ---------------
    Current thread (0x080a4c00): VMThread [stack: 0xe8947000,0xe89c8000] [id=9135]
    siginfo:si_signo=SIGSEGV: si_errno=0, si_code=1 (SEGV_MAPERR), si_addr=0x67f69b57
    Registers:
    EAX=0x67f69b57, EBX=0xf7f62ff4, ECX=0x000e89c6, EDX=0x00000000
    ESP=0xe89c6934, EBP=0xe89c6968, ESI=0x080a4c00, EDI=0x080df118
    EIP=0x67f69b57, CR2=0x67f69b57, EFLAGS=0x00010203
    Top of Stack: (sp=0xe89c6934)
    0xe89c6934: e89c6a10 eabdb800 eaaea220 eabdb838
    0xe89c6944: 0003c586 000023af 0657221a 0805848c
    0xe89c6954: eaaea220 eabdb838 080df0d4 080a4c00
    0xe89c6964: 00000001 e89c6998 064e51cb 080df118
    0xe89c6974: 08058350 e89c6998 0629cb5e 08058450
    0xe89c6984: 0003c586 e89c69d8 f0c719a8 e89c6ae0
    0xe89c6994: 00000001 e89c69b8 064e526c 080df0d4
    0xe89c69a4: 080a4c00 00000000 064f6ddb 080df478
    Instructions: (pc=0x67f69b57)
    0x67f69b47:
    [error occurred during error reporting (printing registers, top of stack, instructions near pc), id 0xb]
    Stack: [0xe8947000,0xe89c8000], sp=0xe89c6934, free space=510k
    Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
    C 0x67f69b57
    V [libjvm.so+0x4e51cb]
    V [libjvm.so+0x4e526c]
    V [libjvm.so+0x4f6cd8]
    V [libjvm.so+0x34c60d]
    V [libjvm.so+0x4dbe4c]
    V [libjvm.so+0x31722e]
    V [libjvm.so+0x5b83cf]
    V [libjvm.so+0x5ba5bb]
    V [libjvm.so+0x55a59d]
    V [libjvm.so+0x322be7]
    V [libjvm.so+0x2ce43b]
    V [libjvm.so+0x3227f7]
    V [libjvm.so+0x294845]
    V [libjvm.so+0x322b8c]
    V [libjvm.so+0x5edede]
    V [libjvm.so+0x5fb0c7]
    V [libjvm.so+0x5fa6dc]
    V [libjvm.so+0x5fa8b1]
    V [libjvm.so+0x5fa48f]
    V [libjvm.so+0x4fe219]
    C [libpthread.so.0+0x5192]
    VM_Operation (0xe371ee1c): GenCollectForAllocation, mode: safepoint, requested by thread 0x08217000
    --------------- P R O C E S S ---------------
    Java Threads: ( => current thread )
    0x082f6400 JavaThread "Thread_528" [_thread_blocked, id=12818, stack(0xddd8a000,0xddddb000)]
    0x080db800 JavaThread "Thread_2" [_thread_blocked, id=9178, stack(0xe8547000,0xe8598000)]
    0x080da400 JavaThread "Thread_1" [_thread_blocked, id=9177, stack(0xe8598000,0xe85e9000)]
    0x080d9800 JavaThread "Thread_0" [_thread_blocked, id=9176, stack(0xe85e9000,0xe863a000)]
    0x080c9800 JavaThread "Low Memory Detector" daemon [_thread_blocked, id=9162, stack(0xe86bb000,0xe870c000)]
    0x080c8400 JavaThread "CompilerThread1" daemon [_thread_blocked, id=9155, stack(0xe870c000,0xe878d000)]
    0x080bdc00 JavaThread "CompilerThread0" daemon [_thread_blocked, id=9147, stack(0xe878d000,0xe880e000)]
    0x080bc800 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=9146, stack(0xe880e000,0xe885f000)]
    0x080a9000 JavaThread "Finalizer" daemon [_thread_blocked, id=9137, stack(0xe88a5000,0xe88f6000)]
    0x080a8000 JavaThread "Reference Handler" daemon [_thread_blocked, id=9136, stack(0xe88f6000,0xe8947000)]
    0x08057800 JavaThread "main" [_thread_blocked, id=9126, stack(0xf7da4000,0xf7df5000)]
    Other Threads:
    =>0x080a4c00 VMThread [stack: 0xe8947000,0xe89c8000] [id=9135]
    0x080cb400 WatcherThread [stack: 0xe863a000,0xe86bb000] [id=9174]
    VM state:at safepoint (normal execution)
    VM Mutex/Monitor currently owned by a thread: ([mutex/lock_event])
    [0x08056388/0x080563b0] Threads_lock - owner thread: 0x080a4c00
    [0x08056848/0x08056860] Heap_lock - owner thread: 0x08217000
    Heap
    def new generation total 7296K, used 7273K [0xe8c40000, 0xe9420000, 0xe9a70000)
    eden space 6528K, 99% used [0xe8c40000, 0xe929c8f0, 0xe92a0000)
    from space 768K, 98% used [0xe92a0000, 0xe935dee8, 0xe9360000)
    to space 768K, 0% used [0xe9360000, 0xe9360068, 0xe9420000)
    tenured generation total 47472K, used 17838K [0xe9a70000, 0xec8cc000, 0xf0c40000)
    the space 47472K, 37% used [0xe9a70000, 0xeabdb838, 0xeabdba00, 0xec8cc000)
    compacting perm gen total 16384K, used 1648K [0xf0c40000, 0xf1c40000, 0xf4c40000)
    the space 16384K, 10% used [0xf0c40000, 0xf0ddc170, 0xf0ddc200, 0xf1c40000)
    No shared spaces configured.
    Dynamic libraries:
    06000000-0665d000 r-xp 00000000 08:02 543502 /usr/java/jdk1.6.0_06/jre/lib/i386/server/libjvm.so
    0665d000-066a1000 rwxp 0065c000 08:02 543502 /usr/java/jdk1.6.0_06/jre/lib/i386/server/libjvm.so
    066a1000-06ac3000 rwxp 066a1000 00:00 0
    08048000-08052000 r-xp 00000000 08:02 541414 /usr/java/jdk1.6.0_06/bin/java
    08052000-08053000 rwxp 00009000 08:02 541414 /usr/java/jdk1.6.0_06/bin/java
    08053000-083a8000 rwxp 08053000 00:00 0 [heap]
    ddd8a000-ddd8d000 ---p ddd8a000 00:00 0
    f7f87000-f7f88000 ---p f7f87000 00:00 0
    f7f88000-f7f89000 rwxp f7f88000 00:00 0
    f7f89000-f7fa3000 r-xp 00000000 08:02 1622023 /lib/ld-2.6.1.so
    f7fa3000-f7fa5000 rwxp 0001a000 08:02 1622023 /lib/ld-2.6.1.so
    fff5f000-fff68000 rwxp fff5f000 00:00 0 [stack]
    ffffe000-fffff000 r-xp ffffe000 00:00 0 [vdso]
    VM Arguments:
    jvm_args: -Xms32m -Xmx128m
    java_command: GCStress 2000 1048570
    Launcher Type: SUN_STANDARD
    Environment Variables:
    PATH=/sbin:/usr/sbin:/usr/local/sbin:/root/bin:/usr/local/bin:/usr/bin:/bin:/usr/bin/X11:/usr/X11R6/bin:/usr/games:/usr/lib/mit/bin:/usr/lib/mit/sbin
    LD_LIBRARY_PATH=/usr/java/jdk1.6.0_06/jre/lib/i386/server:/usr/java/jdk1.6.0_06/jre/lib/i386:/usr/java/jdk1.6.0_06/jre/../lib/i386
    SHELL=/bin/bash
    HOSTTYPE=x86_64
    OSTYPE=linux
    MACHTYPE=x86_64-suse-linux
    Signal Handlers:
    SIGSEGV: [libjvm.so+0x5edbc0], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004
    SIGBUS: [libjvm.so+0x5edbc0], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004
    SIGFPE: [libjvm.so+0x4fc630], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004
    SIGPIPE: [libjvm.so+0x4fc630], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004
    SIGXFSZ: [libjvm.so+0x4fc630], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004
    SIGILL: [libjvm.so+0x4fc630], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004
    SIGUSR1: SIG_DFL, sa_mask[0]=0x00000000, sa_flags=0x00000000
    SIGUSR2: [libjvm.so+0x4fe670], sa_mask[0]=0x00000000, sa_flags=0x10000004
    SIGHUP: [libjvm.so+0x4fe410], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004
    SIGINT: [libjvm.so+0x4fe410], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004
    SIGTERM: [libjvm.so+0x4fe410], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004
    SIGQUIT: [libjvm.so+0x4fe410], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004
    --------------- S Y S T E M ---------------
    OS:openSUSE 10.3 (X86-64)
    VERSION = 10.3
    uname:Linux 2.6.22.5-31-default #1 SMP 2007/09/21 22:29:00 UTC x86_64
    libc:glibc 2.6.1 NPTL 2.6.1
    rlimit: STACK 8192k, CORE 0k, NPROC 16384, NOFILE 8192, AS 3334080k
    load average:13.01 11.87 9.18
    CPU:total 1 (1 cores per cpu, 1 threads per core) family 15 model 4 stepping 8, cmov, cx8, fxsr, mmx, sse, sse2, sse3
    Memory: 4k page, physical 2063116k(334428k free), swap 2104472k(2104472k free)
    vm_info: Java HotSpot(TM) Server VM (10.0-b22) for linux-x86 JRE (1.6.0_06-b02), built on Mar 25 2008 00:26:44 by "java_re" with gcc 3.2.1-7a (J2SE release)
    time: Thu May 15 13:26:54 2008
    elapsed time: 365 seconds

  • Get error when checking out jsp file from cvs when Jdev is running in linux

    I have JDev 9.0.3 andd CVS running in linux with same build version.
    When I check out a project one jsp does not show up in the IDE but shows in the file folder correcly when I edit it thru vi.
    I get this error when I try to edit in Jdev.
    java.lang.NullPointerException
         at oracle.jdevimpl.webapp.html.HtmlSourceNode.reopen(HtmlSourceNode.java:159)
         at oracle.ide.model.TextNode.open(TextNode.java:150)
         at oracle.ide.model.TextNode.acquireTextBuffer(TextNode.java:375)
         at oracle.jdevimpl.webapp.html.HtmlSourceNode.getInputStream(HtmlSourceNode.java:239)
         at oracle.jdevimpl.webapp.editor.jsp.JspPreviewer.updateDocument(JspPreviewer.java:344)
         at oracle.jdevimpl.webapp.editor.jsp.JspPreviewer.open(JspPreviewer.java:161)
         at oracle.ideimpl.editor.EditorManagerImpl.openEditorInFrame(EditorManagerImpl.java:648)
         at oracle.ide.editor.EditorUtil.openExplicitEditorInFrame(EditorUtil.java:33)
         at oracle.ide.cmd.OpenEditorCommand.doit(OpenEditorCommand.java:45)
         at oracle.ide.CommandProcessor.invoke(CommandProcessor.java:363)
         at oracle.ide.CommandProcessor.invoke(CommandProcessor.java:115)
         at oracle.ideimpl.editor.EditorManagerImpl.handleEvent(EditorManagerImpl.java:1902)
         at oracle.ide.IdeAction$1.run(IdeAction.java:579)
         at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:149)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:332)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:126)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:93)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:88)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:80)

    Hi,
    When you are starting service in OS, you are actually starting the maxdb instance service .
    You can set it in auto mode so that you will not get this error.  The OS service only establishes the connection to SAP.
    As a part of CS install, from CSADMIN part it is just required to send the certificate successfully to OAC0.
    Normally no activity is required to be done to under SICF from CS install point of view.
    Anirudh,

  • InetAddress.getHostName under Linux

    Hello,
    anyone here know why InetAddress.getHostName sometimes returns <Computer-Name> only and sometimes <Computer-Name>.<Domain-Name>? I just migrated a java project to linux, and on my computer InetAddress.getHostName returns <Computer-Name>.<Domain-Name>. A colleague of mine is already running under Linux and he gets <Computer-Name>. We both have the same Domain-Name, and we have compared network settings and haven't found any differences.
    I have tried to google, but I haven't found anything. Any know the reason for this behaviour?

    After juggling around a bit with the network settings, turning IPv6 on and off, switching between static IP and DHCP (computer-name and domain name remained untouched), the InetAddress.getHostName suddenly returned <computer-name> only. I tried to retrace my configuration changes, and tested InetAddress.getHostName and it only returned <computer-name> without the <domain-name> extension. Did I miss something? Do anyone know when InetAddress.getHostName returns <computer-name> and when it returns <computer-name>.<domain-name>?

  • Multiple processes under linux

    If I run Java programs under Suse Linux 9.0 using JDK 1.5.0_09 for every started Java programm I can see 9 processes running under linux.
    It seems like one of them is the master and the others are child processes of this one.
    I've never seen this with other Linux / Java versions before.
    Could anyone tell me what's happening there?
    Thanks xccarlsson

    Earlier versions of linux threads were done by mapping each thread onto it's own process and each of these processes shared their address space with an original process, the one you describe as the master. The newer thread model is more like what you'd expect with one process and multiple contexts within the process. So you must be running on system which is using the old threading model.
    tom

Maybe you are looking for

  • Removing Devices from my Verizon Account

    I am the account owner of a family share plan account. I have two devices I want to permanently remove from my plan. How do I do this? Do I have to call customer service directly or can I do it on my own?

  • How to use a presentation variable in filter conditions

    Hi, I have set a presentation variable "day" on my dashboard prompt containing a date column. I now need to use this presentation variable in the filter clause to restrict the dates between "day" and sysdate. So i apply the following SQL filter: wher

  • Relink and Update links in CS5 using VBA

    Hi everyone, Does anyone have a link to an online reference for VBA Scripting in CS5? Most of what I find online is for CS2. That said, I have a VBA script that is written for CS2 that goes through an InDesign document and relinks every link to a cer

  • SSSLERR_PEER_CERT_UNTRUSTED

    Hi, We recently upgraded the kernel and sap cyrptolib on one of our PI sysems (7.11 SP6 Dual Stack. CommonCryptoLib 8 Version 8.4.34. We have three vendors, all with untrusted certificates, who we cannot communicate with any more. When we test the RF

  • Missing plugin IPE.PLN

    Hi... i'm urgently need to open and edit some indesign files.... I'm using Indesign CS3, when i try to open the .indd file warned for a missing plugin "IPE.PLN" Attached the screenshot of the warning... I asked from the file creator, he is using the