The rsyslog service is used to transmit events from the server to the KUMA collector.
To configure the sending of events from the server where Vsftpd is installed to the collector:
systemctl status rsyslog.service
If the rsyslog service is not installed on the server, install it by executing the following commands:
yum install rsyslog
systemctl enable rsyslog.service
systemctl start rsyslog.service
$ModLoad imfile
$InputFileName /var/log/vsftpd.log
$InputFileTag tag_vsftpd_log:
$InputFileStateFile vsftpd_log
$InputRunFileMonitor
*.* @@<IP address of the KUMA collector>:<port of the KUMA collector>
For example:
*.* @@192.1.3.4:5858
$ModLoad imfile
$InputFileName /var/log/vsftpd.log
$InputFileTag tag_vsftpd_log:
$InputFileStateFile vsftpd_log
$InputRunFileMonitor
*.* @<IP address of the KUMA collector>:<port of the KUMA collector>
For example:
*.* @192.1.3.4:5858
systemctl restart rsyslog.service
The event source server is configured. Data about events is transmitted from the server to the KUMA collector.
Page top