syslog.conf file and syslogd daemon


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers syslog.conf file and syslogd daemon
# 1  
Old 01-09-2004
syslog.conf file and syslogd daemon

Hello,

I need a few information/explanation about system messages, syslog.conf file and syslogd daemon.
My problem is the following: I would like to log all system messages related to hardware problems into a particular file. For that, i have to add an entry in the syslog.conf file.
I know that i must add a line of the following type in the syslog.conf file:

facility.level /..../hardware.log

The problem is: what to put in the facility field (kern?, daemon? or something else).
Another problem is: once the configuration file has been modified, do i have to restart the syslogd daemon in order to have my modification taken into account?
The last question is: once the hardware related system messages will be logged in the file "hardware.log" what will they look like?

Thanks in advance for any answer
# 2  
Old 01-09-2004
Read the man page for syslog.conf - it is VERY informative.

Quote:
facility.level /..../hardware.log

The problem is: what to put in the facility field (kern?, daemon? or something else).
Another problem is: once the configuration file has been modified, do i have to restart the syslogd daemon in order to have my modification taken into account?
The last question is: once the hardware related system messages will be logged in the file "hardware.log" what will they look like?
Try kern.warning for the facility.level. Most hardware errors should be seen with this (realize you may still get errors that you don't see - from all the questions you have been asking about syslog and hardware errors, you have some of the other tools available that you need).

Yes, changes to the syslog.conf require you to send a hup signal to the daemon - just find the pid and use the following command replacing xxx with the pid
# kill -HUP xxx

What will the messages look like - hard to say. Each should have the following format:
date time hostname tag[pid]: message
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Solaris

Which are the available entries to forward syslog in syslog.conf?

Hi Community Which are the available entries to forward syslog in syslog.conf i have put *.err;kern.debug;daemon.notice;mail.crit;user.alert;user.emerg;kern.notice;auth.notice;kern.warning @172.16.200.50 and it's not going through.giving error message like below: syslogd:... (2 Replies)
Discussion started by: bentech4u
2 Replies

2. Solaris

best configuration for syslog.conf

I would like to configure the syslog.conf to have a good monitoring information about my system. do you have any idea about best configuration from your experience in your Data Centers BR, (5 Replies)
Discussion started by: maxim42
5 Replies

3. Shell Programming and Scripting

syslog.conf

How can i configure messages with warn priority to be logged in /var/log/mywarnings.log ? (1 Reply)
Discussion started by: g0dlik3
1 Replies

4. Shell Programming and Scripting

how to parse /etc/syslog.conf file

Hello there, Guys I've got an issue and I need a hint...I have to parse /etc/syslog.conf file (under solaris) and need to get all path accordingly to all logs configured in there. Bellow it's my syslog.conf file. If anybody knows more about this please let me know. Thanks . #ident ... (2 Replies)
Discussion started by: catalint
2 Replies

5. UNIX for Dummies Questions & Answers

Solaris 10 question on syslog.conf file

Hi, I have a question on /etc/syslog.conf file in Solaris 10. Below is a line taken from /etc/syslog.conf file and I know that the last field (operator) is where the logs gets outputted but how do I find out what the output file name format is going to be and which directory it gets outputted... (1 Reply)
Discussion started by: stevefox
1 Replies

6. Solaris

basic question on sd.conf and lpc.conf file

Hello Guys, Do we need to configure this file only if we add SAN disk or even if we add local disk, do we need to modify? (4 Replies)
Discussion started by: mokkan
4 Replies

7. Solaris

doubt reg syslogd daemon

can anyone explain what is syslogd daemon in solaris. What is the use and how to start and stop the syslogd. (3 Replies)
Discussion started by: rogerben
3 Replies

8. Solaris

syslog-ng.conf

Has anyone here configured a central syslog server using syslog-ng ? I have set one up and I'm trying to tune the syslog-ng.conf file, both for the server and the client. I have found lots of linux example files, but not much on Solaris which is slightly different. So if you have a Solaris... (5 Replies)
Discussion started by: Tornado
5 Replies

9. AIX

/etc/syslog.conf file and warnings

Hi All, I am working on a server which has an /etc/syslog.conf file with the following entries (example): local6.debug /dplogs/uss1udp001.log rotate size 1500m time 1d files 14 local7.debug /dplogs/uss1udp002.log rotate size 1500m time 1d files 14 -----------------------------... (3 Replies)
Discussion started by: jeffpas
3 Replies

10. Red Hat

syslog.conf

Hi all I have a RedHat Linux AS2.1 server that keep crashing/rebooting and there are no messages in the /var/log/messages file pointing to any problems. I had a look at the /etc/syslog.conf file to see what gets logged to /var/log/messages, but I don't know what else to add. Can anyone tell me... (1 Reply)
Discussion started by: soliberus
1 Replies
Login or Register to Ask a Question