Displaying 20 results from an estimated 4000 matches similar to: "Discarding empty lines in rsyslog"
2016 Apr 17
1
Rsyslog problems
Hi,
My rsyslog is not working as expected.
I have some thing in rsyslog.d that do well, like this:
# Log all iptables stuff separately
:msg, contains, "iptables: " {
action(type="omfile" file="/var/log/iptraf/info")
}
No problems with that.
Bu what's in /etc/rsyslog.conf like:
mail.* /var/log/mail/info
don't do anything at all.
Rsyslogd -N1 is OK,
2009 May 25
1
rsyslog expression based filters
Hello All,
Does the rsyslog version in CentOS 5 support expression based filters?
I'm asking because a filter I believe should be working, isn't and I
cannot figure out why.
I'm trying to get the following expression working (might wrap):
if $source == 'astappsrv2' and $programname == 'asterisk' then /var/log/asterisk/astappsrv2.log
Every time I restart rsyslog, I
2016 Jun 02
0
Rsyslog on C7
Hi,
I have problems with rsyslog on C7.
In /etc/rsyslog.d/iptables.conf I have:
# Log all iptables stuff separately
:msg, contains, "iptables: " {
action(type="omfile" file="/var/log/iptraf/info")
stop
}
THis works fine.
In /etc/rsyslog.d/mail.conf I have:
# Log all the mail messages in one place.
if ($syslogfacility-text == 'mail') then {
2011 Apr 18
3
Logging configuration
How do I tell puppet to log somewhere other than /var/log/messages. None of
the logging configuration options seem to do anything any more. Specifically
puppetdlog.
# The log file for puppet agent. This is generally not used.
# The default value is ''$logdir/puppetd.log''.
puppetdlog = /var/lib/puppet/log/puppetd.log
--
You received this message because you are
2015 Nov 24
3
Google Ads in rsyslog documentation files
Peter Eckel wrote:
> Hi all,
>
> I know this comes from upstream (and most likely from the rsyslog
project itself), but what's your opinion about Google Ads in system
documentation files?
>
>> [peckel at mucnvjmppmtr01 ~]$ cat /etc/redhat-release
>> Red Hat Enterprise Linux Server release 6.7 (Santiago)
>> [peckel at mucnvjmppmtr01 ~]$ grep google
2010 Nov 26
1
rsyslog as default syslog daemon?
Hi all!
Is anybody here using rsyslog? I am looking for the right solution how
to use rsyslog in CentOS 5 as the default logging daemon. We use it
because of filtering using regular expressions.
I switched from sysklogd to rsyslog simply using
chkconfig --del syslog
chkconfig --add rsyslog
chkconfig rsyslog on
service syslog stop
service rsyslog start
but this seems not to be
2013 Oct 28
1
rsyslog not loading relp
centos 6.4, setup to be syslog server. Doing remote syslog using tcp
works fine, so now want to add relp. I installed the rsyslog-relp
package and told rsyslog.conf to use it:
# RELP Syslog Server:
$ModLoad imrelp # provides RELP syslog reception
$InputRELPServerRun 20514
when I restart rsyslog I am told it does not like my InputRELPServerRun line:
Oct 28 13:43:54 scan rsyslogd: [origin
2016 Feb 05
4
Send Dovecot logs to rsyslog
Hello,
I'm trying to send Dovecot logs to a Graylog server.
To do this, I'd like to pass logs to rsyslog and rsyslog pass logs to
remote Graylog server.
I set in dovecot.conf : syslog_facility = local5.info
I set in rsyslog.conf : local5.info @192.168.xxx.xxx:5555
Restarted services and it doesn't work.
I use nmap to test if port 5555 is opened and this port is open.
What
2014 Aug 06
1
rsyslog does not log on a separate partition/FS mounted on /var/log/
The system is an AWS Instance based on a community CentOS 6.4 AMI snapshot.
The vdisk is as follows as shown below [1]
The root LVM contains /var/log/
I have attached another block device with ext4 FS.
I copied the files from /var/log to this device (mounted on /mnt) and
then changed
/etc/fstab to mount this device on /var/log on boot.
However, I do not see anything being logged in
2017 Jul 09
2
rsyslog stops logging on service reload?
I have multiple servers running stock CentOS 7 rsyslog 7.4.7-16.el7,
which are configured to log locally and over TCP to a remote logserver,
also running stock CentOS 7 rsyslog. The remote server uses imptcp to
receive, and pretty basic rules to parse and commit to disk.
I have several systems that log prolifically, but periodically, they
stop soon after the remote log server HUPs (daily
2012 Jan 06
1
rsyslog server cannot get the logs
I have an rsyslog server which is running Debian Stable,
and its version of rsyslog is 4.6.4-2.
All of my Debian Stable server can send log to it now.
and run both
nc $IP $PORT <<< "HELLO"
and
echo "HELLO" | nc $IP $PORT
on client, I can get log on the server.
While for my CentOS 5.7 server,
nc $IP $PORT <<< "HELLO"
works well, but
echo
2013 Feb 14
1
chrooted bind -- addition to rsyslog.conf
In /etc/sysconfig/named that gets installed along with bind-chroot there
is a comment that basically says:
Don't forget to add "$AddUnixListenSocket /var/named/chroot/dev/log"
line to your /etc/rsyslog.conf file.
All these little touches you need to find out about. But is there any
order in rsyslog.conf? Do I just add this line to the end of it?
2018 Feb 13
1
selinux policy with rsyslog and tls/certs
I've setup my rsyslog server to forward traffic to another rsyslog
server on my network. It's using gTLS to encrypt the messages in transit.
selinux is not allowing rsyslogd to read the certificates. They are
world readable, so I don't think that is the problem. When I turn
selinux mode to permissive, it works fine.
What context should the ssl certificates be in for rsyslog to be
2012 Jun 05
4
rsyslog.conf - why the "-" in this entry? mail.* -/var/log/maillog
In dealing with an unrelated issue I came across this in rsyslog.conf.
# The authpriv file has restricted access.
authpriv.* /var/log/secure
# Log all the mail messages in one place.
mail.* -/var/log/maillog
# Log cron stuff
cron.* /var/log/cron
Why is there a "-"
2013 Sep 26
1
Problems sending log to rsyslog
So I have asterisk 1.8.23 and want to send my logs to rsyslog. I
tell asterisk to use syslog in addition to messages:
root at voip:~# tail -10 /etc/asterisk/logger.conf
;debug => debug
console => notice,warning,error
;console => notice,warning,error,debug
messages => notice,warning,error
;full => notice,warning,error,debug,verbose,dtmf,fax
;syslog keyword : This special keyword
2008 Mar 05
1
rsyslog repo?
Does anyone know of a CentOS-5 (el5) repo for rsyslog,
that's being maintained on a relatively regular basis? I
checked all the usual suspects (dag, karan, epel, etc.), but
they either don't have rsyslog at all, or they have an old
version.
Currently, I'm doing a rebuild of the Fedora-8 srpm, but
it's at version 2.0.2. I wanted to move to 3.11.x for the
disk-assisted
2019 Aug 15
2
Availability of rsyslog-8.24.0-41.el7_7.x86_64
Hey there,
RedHat released the new version 8.24.0-41 of rsyslog on 2019-08-06. We
need some fixes of this version and would like to know about which time
this version will be available for CentOS.
http://mirror.centos.org/centos/7/os/x86_64/Packages/ still lists
rsyslog-8.24.0-34 ( 2018-11-12).
Currently I assume the maintainer might be on vacation?
CheersDennis
2015 Sep 15
2
rsyslog for chrooted sftp users has stopped working -- Centos 6.6
Hello everyone,
We have some chrooted sftp-only users on a CentOS release 6.6 server. The
server had been logging their actions, but after recent updates the logs
have stopped.
The server correctly logs non-chrooted users:
Sep 14 17:47:24 vsecure4 sshd[1981]: Accepted publickey for jcours from
192.168.10.166 port 42545 ssh2
Sep 14 17:47:24 vsecure4 sshd[1981]: pam_unix(sshd:session):
2020 Jul 10
5
CentOS 7 rsyslog and ELK
I asked a similar question about a year ago and didn't get any answers.
So I thought I'd try again.
What do people do to get their syslog messages on CentOS 7 into a
remote ELK stack. I've tried lots of things involving rsyslog,
filebeat, redis, logstash and so on in lots of different configurations
but nothing really works.
I can get rsyslog to talk directly to logstash (acting as
2009 Jul 10
1
recent rsyslog package available for CentOS?
Hi,
I'm looking for a recent version of rsyslog. The yum repositories only show
me a version that is 2.0.6. According to the www.rsyslog.com site, they are
up to version 5 (dev), which means that I would think/assume that there
would at least be v3 or v4 available somewhere.
Does anyone know if/where I can find something more recent than 2.0.6?
Thanks,
Eric