To allow ServerProtect to store
debug log information on Linux Servers, configure settings for rsyslog.
Procedure
- Open
/etc/rsyslog.conf
and do the following:- Add the following lines to the file:
# this is for splx debug log
local3.* /var/log/splx_usr.log
- Search for
#$ModLoad imklog
and delete the character#
from the text. - Add the following lines to the file:
# this is for KHM debug log
if $msg contains "SPLXMOD" and not($msg contains
"systemd-journal") then {
action(type="omfile" file="/var/log/splx_kern.log")
}
- Add the following lines to the file:
- Restart the rsyslog daemon by typing
service rsyslog restart
in the terminal. - Set the debug parameter (
UserDebugLevel
) in thetmsplx.xml
file to 5. - Set the debug parameter (
KernelDebugLevel
) in thetmsplx.xml
file to 3. - Restart ServerProtect by
typing
service splx restart
.After you have configured the settings, ServerProtect stores debug information to thesplx_usr.log
andsplx_kern.log
file in/var/log/
. You can open this file to see the debug logs.