Exception Signal 11 while running JAVA code in UNIX


 
Thread Tools Search this Thread
Top Forums Programming Exception Signal 11 while running JAVA code in UNIX
# 1  
Old 08-11-2008
Exception Signal 11 while running JAVA code in UNIX

Hi,

when i compile my java code in UNIX using javac, the class file is getting created. But when i try to run the code using java - classpath command, i get the following error.

----------------------------------------
/u/up11/sample/request:>java -classpath /u/up11/sample/request Inbound
JVMDG217: Dump Handler is Processing Signal 11 - Please Wait.
JVMHP002: JVM requesting System Transaction Dump
JVMHP012: System Transaction Dump written to UP11.JVM.TDUMP.UP11.D080811.T074931
JVMDG303: JVM Requesting Java core file
JVMDG304: Java core file written to /u/up11/sample/request/JAVADUMP.20080811.074
939.16908532.txt
JVMDG215: Dump Handler has Processed Exception Signal 11.
[1] + Done(139) java -classpath /u/up11/sample/request Inbound
16908532 Segmentation violation /usr/lpp/java/J1.4/bin/java
----------------------------------------
i have attached the JAVADUMP.20080811.080105.33685759.txt for reference..

what is causing this problem ? please help me with some solutions. thanks.
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

running unix command from java

Hi All, I have been struggling for a week trying to run a unix command from my java program. the unix command is: ssh dmdev3@tsapid01-zt3d01 ':> /t3/envs/dmdev3/test/file_list.txt' when i try to run this command directly on my unix console, it works perfectly. but when i try it form... (12 Replies)
Discussion started by: madhu_sharan
12 Replies

2. UNIX for Advanced & Expert Users

running unix command from java

Hi All, I have been struggling for a week trying to run a unix command from my java program. the unix command is = ssh dmdev3@tsapid01-zt3d01 ':> /t3/envs/dmdev3/test/file_list.txt' when i try to run this command directly on my unix console, it works perfectly. but when i try it form my... (0 Replies)
Discussion started by: madhu_sharan
0 Replies

3. Shell Programming and Scripting

Quiting running process without catching TRAP signal

Hi, I would like to ask, if is it possible to quit running loop in the script any other way than catching the trap signal. Ctrl-C ends only current running instance of process but not whole script. Any clues? (3 Replies)
Discussion started by: smoofy
3 Replies

4. Shell Programming and Scripting

Block of code replacement in Java source code through Unix script

Hi, I want to remove the following code from Source files (or replace the code with empty.) from all the source files in given directory. finally { if (null != hibernateSession && hibernateSession.isOpen()) { //hibernateSession.close(); } } It would be great if the script has... (2 Replies)
Discussion started by: hareeshram
2 Replies

5. Programming

JAVA AES keylength exception

I am developing a JAVA application that must encrypt its data. On my development machine, I can use a 256 bit key with no problem. A test machine throws an exception complaining about an illegal key length. The test machine is using JRE 1.6u21. Does anyone know where I can get a version of the JRE... (1 Reply)
Discussion started by: ilikecows
1 Replies

6. UNIX for Dummies Questions & Answers

getting help on finding exception in running log file

Hi all, I am trying to write a script for an application server log file where i want to put this script as a cron tab entry and it will check the server log file last 1000/500 line for every fifteen minute. i am using the script like this. count=`tail -n 1000 Trace.log | grep -c... (1 Reply)
Discussion started by: senthilkumar_ak
1 Replies

7. Programming

exit status running java classpath in unix shell

I have a java classpath running inside of a unix shell script. During my testing it will error with lines that show an example like this below. java.io.FileNotFoundException error at java.io.FileInputStream.open(Native Method) at java.io.FileInputStream.<init>(FileInputStream.java:129), ... (2 Replies)
Discussion started by: mmcds
2 Replies

8. UNIX for Advanced & Expert Users

how to make a current running process ignore SIGHUP signal?

I ask this question since sometimes i run a time-consuming ftp in foreground and forget to use nohup ftp.sh & to put this work background and can still running after i log off. Assume this ftp task have run 1 hour, and still 1 hour time to end, i don't want to abort the ftp, first, i use ctrl+Z... (3 Replies)
Discussion started by: stevensxiao
3 Replies

9. Programming

converting a signal to a C++ exception

I am trying to imitate a system call available on Win32 (spit). The functionality is to catch a system exception (i.e. signal) such as divide-by-zero, and convert it to a catchable c++ exception. Can this be done on Unix ? Can i use "throw new <ExcpetionClass>" inside a signal-handling... (3 Replies)
Discussion started by: Seeker
3 Replies
Login or Register to Ask a Question