Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
2answers
60 views

how to spoof hostname in syslog messages?

I am logging messages like this in perl - syslog ("LOG_INFO", "this is info"); syslog ("LOG_WARNING", "this is warning"); when I see these messages, I get this- Nov 15 20:20:47 ubuntu ...
2
votes
2answers
528 views

Eficient logging of stdin with rsyslog

Our environment: CentOS 5, which comes with Apache 2.2 and rsyslog 2.0.6 In order to send Apache 2.2 error log we followed instructions found on the here: ...
1
vote
1answer
32 views

Is syslog a logging standard, or a protocol standard?

Syslog is a network protocol as described in RFC 5424 and RFC 3164 before that. -AND- Syslog is a standard in the *nix world. It's how you do logging. Even on just the local machine, UDP packets are ...
1
vote
1answer
116 views

Linux - Syslog client

In order to develop a cross-plateform syslog client, I am trying to do it without using the syslog syscall. I am developping this client in C++ and for now testing in Linux. The old syslog client that ...
1
vote
1answer
132 views

ssl encryption in rsyslog

could anyone give me hint where this problem is, I am unable to encrypt log files comming from my client machine to central log, i dont understand the reason, could i get any relevent information. (i ...
1
vote
1answer
75 views

Script for log file handling

I want to write a script that will check my own log files stored in /var/log/[dir]/[name].log before start logging in these files that whether date of last log message is older than date of current ...
1
vote
1answer
584 views

Multiline log records in syslog

So I've configured my Python application to log to syslog with Python's SysLogHandler, and everything works fine. Except for multi-line handling. Not that I need to emit multiline log records so badly ...
1
vote
2answers
224 views

Syslog custom priorities

Is there a way one can use custom priorities in syslog daemon or rsyslog daemon? i.e. i am unable to locate a configuration change which achives it.. the other thing i can do is perhaps play with ...
1
vote
1answer
258 views

rsyslog server on windows

Is rsyslog server available on Windows?
1
vote
7answers
258 views

how to look up which files a certain process is manipulating?

In my case it's "rsyslogd", I find it's consuming up to 170M memory,which is too much, and I've checked its configuration file located at /etc/rsyslog.conf and then checked each file written inside ...
0
votes
1answer
19 views

what is pam_unix in syslogs?

If I am authenticating using PAM, is it a standard/best practice to use pam_unix in syslog tags? Who added pam_unix in below log: vsftpd process or the PAM module itself which was used in ...
0
votes
1answer
48 views

Linux Syslog Server Format

I am creating a syslog formatted message according to RFC3164 and sending it to my linux default syslog server which is listining of port 514. The message i am sending is <187>Nov 19 ...
0
votes
1answer
50 views

Rsyslog + Virtualenv

I'm using a shell execute action in rsyslog to a python script on a CentOS machine. How can I ensure that it runs in a specified virtualenv?
0
votes
2answers
80 views

Log values insertion in database using syslog function

How can we insert our log data using syslog function(rsyslogd) available in ubuntu linux to mysql/postgresql database table in c language. If anyone knows about good source of info about this then ...
0
votes
1answer
262 views

How do most daemon applications do their logging in linux?

How do most daemons do their logging these days. syslog or is there a newer logging facility that I'm not aware of? or custom? The reason I ask is that I started using syslog but noticed most of the ...
0
votes
2answers
202 views

subprocess loops forever

I'm trying to start/stop rsyslog through a python script: RSYSLOG_INIT_SCRIPT='/etc/init.s/rsyslogd' subprocess.call([RSYSLOG_INIT_SCRIPT,'stop']) /etc/init.d/rsyslogd is a regular init script. The ...