Hi, I would like to know the way I can analyze the core dumps persisted in /usr/local/appistry/cloudiq/system/dump/apps//core*..
Hi dagarwal82,
The easiest answer is to use gdb. This will allow you to analyze that core dump. The basic usage is gdb (executable file name) (core dump file name)
You would need to do this from the application directory that contains this specific task service executable.
For example, from /usr/local/cloudiq/system/apps/hello_world_app, type "gdb fabric_task_service.hello_world_app core1422.dmp"
There are other tools that you can use to view core files, but this is the tool that we are most familiar with.
Mark
Hi dagarwal82,
The easiest answer is to use gdb. This will allow you to analyze that core dump. The basic usage is gdb (executable file name) (core dump file name)
You would need to do this from the application directory that contains this specific task service executable.
For example, from /usr/local/cloudiq/system/apps/hello_world_app, type "gdb fabric_task_service.hello_world_app core1422.dmp"
There are other tools that you can use to view core files, but this is the tool that we are most familiar with.
Mark