1830165 Members
6011 Online
109999 Solutions
New Discussion

Create Core file

 
joe_91
Super Advisor

Create Core file

How do i create a core file from java? I tried kill -3 and kill - QUIT. Both does not seem to work. Any ideas?

Thanks

Joe.
3 REPLIES 3
RAC_1
Honored Contributor

Re: Create Core file

kill -IOT "process_pid"

Anil
There is no substitute to HARDWORK
Jeff Schussele
Honored Contributor

Re: Create Core file

Hi Joe,

If kill -3 is not coredumping the process then it's most likely waiting on I/O.
Do a ps -efl on it & note the PRI (priority) value & if it's between 128 & 177 then it's in kernel priority & cannot be signaled.

HTH,
Jeff
PERSEVERANCE -- Remember, whatever does not kill you only makes you stronger!
joe_91
Super Advisor

Re: Create Core file

Jeff:

Does that mean that i can kill the same process after a while?

Thanks

Joe