User Tools

Site Tools


tutorials:3.2.x:syslog

This is an old revision of the document!


Kamailio with Syslog and Log Rotate

Authors of initial tutorial:
Daniel-Constantin Mierla
  <miconda (at) gmail.com>

Elena-Ramona Modroiu
  <ramona (at) asipto.com>

How-to about configuring syslog daemon to write the log messages from Kamailio SIP server in a dedicated file and rotate it when becomes too big.

This tutorial is updated for Kamailio v3.2.0 or newer (original tutorial written for older versions is here).

Syslog - Custom Log File

In a Linux/Unix environment it is possible to configure syslog to write log messages to a separate file for a specific facility.

Also Kamailio can be configured to use a particular facility and therefore then make syslog to redirect that facility into a separate file. This can greatly improve the readability and manageability of Kamailio logs.

The default syslog file depends on your OS distribution. For example, in Debian Linux is “/var/log/syslog” and in RedHat Linux is “/var/log/messages”. To make Kamailio print log messages in another file you have to follow the next instructions.

  • set option “log_facility=LOG_LOCAL0” in Kamailio configuration file (this is in the default Kamailio config)
  • then configure syslog to use a special file for log messages with facility “LOG_LOCAL0”

The configuration file of syslog can be usually found in “/etc/syslog.conf”. Next example, “Changes in syslog.conf” shows a syslog configuration file modified to report Kamailio error messages into a separate file.

Example: Changes in syslog.conf

...
#
# don't log messages with LOG_LOCAL0 in /var/log/syslog anymore
*.*;auth,authpriv.none,local0.none		-/var/log/syslog

#
# log messages with LOG_LOCAL0 in /var/log/kamailio.log
local0.*			-/var/log/kamailio.log
...

NOTE: The '-' in front of “/var/log/kamailio.log” is to omit synchronizing the log file after every log message. If you choose to configure “syslog” in synchronous mode you must be aware that it has big impact over performances when the signaling traffic is high.

Syslog-NG Configuration

If you are using syslogn-ng, one of the options you can add in its configuration file is:

destination local0 { file("/var/log/kamailio.log"); };
filter f_local0 { facility(local0); };
log { source(src); filter(f_local0); destination(local0); };

Log Rotate

When using syslog daemon, in most of current Linux distributions, you just have to add a file:

/etc/logrotate.d/kamailio 

Containing:

/var/log/kamailio.log {
    missingok
    size=50M
    create 0644 root root
    postrotate
	   /bin/kill -HUP `cat /var/run/syslogd.pid 2> /dev/null` 2> /dev/null || true
    endscript
}

Otherwise, add the piece of config above in /etc/logrotate.conf.

tutorials/3.2.x/syslog.1324377663.txt.gz · Last modified: 2011/12/20 11:41 by 85.178.76.94