mirror of
https://github.com/signalwire/freeswitch
synced 2026-08-07 14:32:14 -04:00
19 lines
393 B
Text
19 lines
393 B
Text
How to Debug FreeSWITCH Issues
|
|
==============================
|
|
|
|
Dumping a core file
|
|
-------------------
|
|
|
|
Run:
|
|
|
|
sysctl -w kernel.core_pattern=/tmp/core.%t_%e_s%s
|
|
sysctl -w fs.suid_dumpable=1
|
|
ulimit -c unlimited
|
|
freeswitch -core
|
|
|
|
Getting a backtrace from a core file
|
|
------------------------------------
|
|
|
|
Run:
|
|
|
|
./debian/scripts/backtrace-from-corefile /tmp/<name-of-corefile>
|