


 



<?xml version="1.0"?>
<?xml-stylesheet type="text/css" href="http://docwiki.cisco.com/w/skins/common/feed.css?270"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>http://docwiki.cisco.com/w/index.php?title=How_to_analyze_the_core_file&amp;feed=atom&amp;action=history</id>
		<title>How to analyze the core file - Revision history</title>
		<link rel="self" type="application/atom+xml" href="http://docwiki.cisco.com/w/index.php?title=How_to_analyze_the_core_file&amp;feed=atom&amp;action=history"/>
		<link rel="alternate" type="text/html" href="http://docwiki.cisco.com/w/index.php?title=How_to_analyze_the_core_file&amp;action=history"/>
		<updated>2013-05-18T20:48:25Z</updated>
		<subtitle>Revision history for this page on the wiki</subtitle>
		<generator>MediaWiki 1.16.0</generator>

	<entry>
		<id>http://docwiki.cisco.com/w/index.php?title=How_to_analyze_the_core_file&amp;diff=34225&amp;oldid=prev</id>
		<title>Sdandu: New page: {| border=&quot;1&quot; |- ! '''Problem Summary''' | How to analyze the core file? |- ! '''Error Message''' | N/A. |- ! '''Where to find''' | Refer to  How to check if a process crashed  for the...</title>
		<link rel="alternate" type="text/html" href="http://docwiki.cisco.com/w/index.php?title=How_to_analyze_the_core_file&amp;diff=34225&amp;oldid=prev"/>
				<updated>2010-09-24T06:16:17Z</updated>
		
		<summary type="html">&lt;p&gt;New page: {| border=&amp;quot;1&amp;quot; |- ! &amp;#39;&amp;#39;&amp;#39;Problem Summary&amp;#39;&amp;#39;&amp;#39; | How to analyze the core file? |- ! &amp;#39;&amp;#39;&amp;#39;Error Message&amp;#39;&amp;#39;&amp;#39; | N/A. |- ! &amp;#39;&amp;#39;&amp;#39;Where to find&amp;#39;&amp;#39;&amp;#39; | Refer to &lt;a href=&quot;/wiki/How_to_check_if_a_process_crashed&quot; title=&quot;How to check if a process crashed&quot;&gt; How to check if a process crashed &lt;/a&gt; for the...&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! '''Problem Summary'''&lt;br /&gt;
| How to analyze the core file?&lt;br /&gt;
|-&lt;br /&gt;
! '''Error Message'''&lt;br /&gt;
| N/A.&lt;br /&gt;
|-&lt;br /&gt;
! '''Where to find'''&lt;br /&gt;
| Refer to [[ How to check if a process crashed ]] for the location of the core dumps and how to collect them.&lt;br /&gt;
|-&lt;br /&gt;
! '''Recommended Action'''&lt;br /&gt;
|&lt;br /&gt;
* Copy the dump to a machine running similar CCX version.&lt;br /&gt;
* run 'gdb -c &amp;lt;core file path&amp;gt; &amp;lt;exe path&amp;gt;' (exe path is the path of the service executable)&lt;br /&gt;
** Executable name would be part of the dump file name (core.19841.6.'''UCCX_Engine'''.1267009557)&lt;br /&gt;
** Executable file path of a few CCX services&lt;br /&gt;
*** Engine : /opt/cisco/uccx/bin/UCCX_Engine&lt;br /&gt;
*** CVD : /opt/cisco/uccx/bin/UCCX_Cvd&lt;br /&gt;
*** etc&lt;br /&gt;
* Output of gdb would be something similar&lt;br /&gt;
    gdb -c /var/log/active/core/core.19841.6.UCCX_Engine.1267009557 /opt/cisco/uccx/bin/UCCX_Engine&lt;br /&gt;
    ...&lt;br /&gt;
    ...&lt;br /&gt;
    Loaded symbols for /usr/local/thirdparty/java/jdk1.6.0_17/jre/lib/i386/libnio.so&lt;br /&gt;
    Reading symbols from /opt/cisco/uccx/lib/libdriverManager.so...done.&lt;br /&gt;
    Loaded symbols for /opt/cisco/uccx/lib/libdriverManager.so&lt;br /&gt;
    #0  0x008037a2 in _dl_sysinfo_int80 () from /lib/ld-linux.so.2&lt;br /&gt;
    (gdb)&lt;br /&gt;
* run backtrace 'bt' command for the full stack trace&lt;br /&gt;
    (gdb) bt&lt;br /&gt;
    #0  0x008037a2 in _dl_sysinfo_int80 () from /lib/ld-linux.so.2&lt;br /&gt;
    #1  0x0025b825 in raise () from /lib/tls/libc.so.6&lt;br /&gt;
    #2  0x0025d289 in abort () from /lib/tls/libc.so.6&lt;br /&gt;
    #3  0x0102fb9f in os::abort () from /usr/local/thirdparty/java/j2sdk/jre/lib/i386/server/libjvm.so&lt;br /&gt;
    #4  0x01152b81 in VMError::report_and_die () from /usr/local/thirdparty/java/j2sdk/jre/lib/i386/server/libjvm.so&lt;br /&gt;
    #5  0x01153771 in crash_handler () from /usr/local/thirdparty/java/j2sdk/jre/lib/i386/server/libjvm.so&lt;br /&gt;
    #6  &amp;lt;signal handler called&amp;gt;&lt;br /&gt;
    #7  0x01009d42 in methodOopDesc::name_and_sig_as_C_string () from /usr/local/thirdparty/java/j2sdk/jre/lib/i386/server/libjvm.so&lt;br /&gt;
    #8  0x00dec813 in frame::print_on_error () from /usr/local/thirdparty/java/j2sdk/jre/lib/i386/server/libjvm.so&lt;br /&gt;
    #9  0x01152107 in VMError::report () from /usr/local/thirdparty/java/j2sdk/jre/lib/i386/server/libjvm.so&lt;br /&gt;
    #10 0x01152aba in VMError::report_and_die () from /usr/local/thirdparty/java/j2sdk/jre/lib/i386/server/libjvm.so&lt;br /&gt;
    #11 0x010363ac in JVM_handle_linux_signal () from /usr/local/thirdparty/java/j2sdk/jre/lib/i386/server/libjvm.so&lt;br /&gt;
    #12 0x01032624 in signalHandler () from /usr/local/thirdparty/java/j2sdk/jre/lib/i386/server/libjvm.so&lt;br /&gt;
    #13 &amp;lt;signal handler called&amp;gt;&lt;br /&gt;
    #14 0x05a368e1 in '''Java_com_cisco_alarmutil_GenericAlarmJNI_sendAlarmwithDataType'''&lt;br /&gt;
    (env=0x74732c6d, obj=0x3d657461, message=0x54554853, messageParams=0x4e574f44,&lt;br /&gt;
    _catalogID=0x32202c5d) at /usr/lib/gcc/i386-redhat-linux/3.4.6/include/jni.h:1384&lt;br /&gt;
* Report to DE and provide the stack trace and the core dump file.&lt;br /&gt;
* DE would debug the problematic code reported in the stack trace.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
! '''Release'''&lt;br /&gt;
| Release 8.0(1) &lt;br /&gt;
|-&lt;br /&gt;
! '''Associated CDETS #'''&lt;br /&gt;
| NA&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Sdandu</name></author>	</entry>

	</feed>