Difference between revisions of "Running NetXMS under debugger"
Jump to navigation
Jump to search
(Created page with "The following example assumes that NetXMS is installed under /opt/netxms. 1. Start debugger: # gdb /opt/netxms/bin/netxmsd You should get debugger command line prompt: (gd...") |
(No difference)
|
Revision as of 09:54, 26 August 2014
The following example assumes that NetXMS is installed under /opt/netxms.
1. Start debugger:
# gdb /opt/netxms/bin/netxmsd
You should get debugger command line prompt:
(gdb)
2. Start application
(gdb) run -D2
Application should start and run. After the crash, debugger prompt will appear again:
(gdb)
3. Get stack trace:
(gdb) bt
Send command output to technical support.
4. Quit debugger
(gdb) quit