NetBSD/usr.sbin/syslogd/syslogd.8

172 lines
5.0 KiB
Groff
Raw Normal View History

.\" $NetBSD: syslogd.8,v 1.21 2001/06/08 04:16:28 mrg Exp $
.\"
.\" Copyright (c) 1983, 1986, 1991, 1993
.\" The Regents of the University of California. All rights reserved.
1993-03-21 12:45:37 +03:00
.\"
.\" Redistribution and use in source and binary forms, with or without
.\" modification, are permitted provided that the following conditions
.\" are met:
.\" 1. Redistributions of source code must retain the above copyright
.\" notice, this list of conditions and the following disclaimer.
.\" 2. Redistributions in binary form must reproduce the above copyright
.\" notice, this list of conditions and the following disclaimer in the
.\" documentation and/or other materials provided with the distribution.
.\" 3. All advertising materials mentioning features or use of this software
1999-09-10 07:24:14 +04:00
.\" must display the following acknowledgement:
1993-03-21 12:45:37 +03:00
.\" This product includes software developed by the University of
.\" California, Berkeley and its contributors.
.\" 4. Neither the name of the University nor the names of its contributors
.\" may be used to endorse or promote products derived from this software
.\" without specific prior written permission.
.\"
.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
.\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
.\" SUCH DAMAGE.
.\"
.\" from: @(#)syslogd.8 8.1 (Berkeley) 6/6/93
1993-03-21 12:45:37 +03:00
.\"
.Dd February 18, 1999
1993-03-21 12:45:37 +03:00
.Dt SYSLOGD 8
.Os
1993-03-21 12:45:37 +03:00
.Sh NAME
.Nm syslogd
.Nd log systems messages
.Sh SYNOPSIS
1999-03-07 14:58:22 +03:00
.Nm "
.Op Fl dsSn
1999-03-07 14:58:22 +03:00
.Bk -words
1993-03-21 12:45:37 +03:00
.Op Fl f Ar config_file
1999-03-07 14:58:22 +03:00
.Ek
.Bk -words
1993-03-21 12:45:37 +03:00
.Op Fl m Ar mark_interval
1999-03-07 14:58:22 +03:00
.Ek
.Bk -words
.Op Fl P Ar file_list
1999-03-07 14:58:22 +03:00
.Ek
.Bk -words
1993-03-21 12:45:37 +03:00
.Op Fl p Ar log_socket
1999-03-07 14:58:22 +03:00
.Ek
.Bk -words
.Op Fl p Ar log_socket2 ...
1999-03-07 14:58:22 +03:00
.Ek
1993-03-21 12:45:37 +03:00
.Sh DESCRIPTION
1997-10-17 17:46:09 +04:00
.Nm
1993-03-21 12:45:37 +03:00
reads and logs messages to the system console, log files, other
machines and/or users as specified by its configuration file.
The options are as follows:
.Bl -tag -width Ds
.It Fl d
Enable debugging to the standard output,
and do not disassociate from the controlling terminal.
1993-03-21 12:45:37 +03:00
.It Fl f
1997-03-08 17:34:56 +03:00
Specify the pathname of an alternative configuration file;
1993-03-21 12:45:37 +03:00
the default is
.Pa /etc/syslog.conf .
.It Fl m
Select the number of minutes between ``mark'' messages;
the default is 20 minutes.
.It Fl n
Do not perform hostname lookups; report only numeric addresses.
.It Fl s
Select ``secure'' mode, in which syslogd does not listen on a UDP socket but
only communicates over a
.Ux
domain socket.
This is valuable when the machine on
which syslogd runs is subject to attack over the network and it is desired
that the machine be protected from attempts to remotely fill logs
and similar attacks.
1993-03-21 12:45:37 +03:00
.It Fl p
Specify the pathname of an log socket. Multiple
.Fl p
options create multiple log sockets. If no -p arguments are created,
the default socket of
1999-03-19 03:53:31 +03:00
.Pa /var/run/log
is used.
.It Fl P
Specify the pathname of a file containing a list of sockets to be
created. The format of the file is simply one socket per line.
1993-03-21 12:45:37 +03:00
.El
.Pp
1997-10-17 17:46:09 +04:00
.Nm
1993-03-21 12:45:37 +03:00
reads its configuration file when it starts up and whenever it
receives a hangup signal.
For information on the format of the configuration file,
see
.Xr syslog.conf 5 .
.Pp
1997-10-17 17:46:09 +04:00
.Nm
1993-03-21 12:45:37 +03:00
reads messages from the
.Ux
1993-03-21 12:45:37 +03:00
domain socket
1999-03-19 03:53:31 +03:00
.Pa /var/run/log ,
1993-03-21 12:45:37 +03:00
from an Internet domain socket specified in
.Pa /etc/services ,
and from the special device
.Pa /dev/klog
(to read kernel messages).
.Pp
1997-10-17 17:46:09 +04:00
.Nm
1993-03-21 12:45:37 +03:00
creates the file
.Pa /var/run/syslogd.pid ,
1993-03-21 12:45:37 +03:00
and stores its process
id there.
This can be used to kill or reconfigure
1997-10-17 17:46:09 +04:00
.Nm "" .
1993-03-21 12:45:37 +03:00
.Pp
By using multiple
.Fl p
options, one can setup many chroot environments by passing the pathname
to the log socket
1999-03-19 03:53:31 +03:00
.Pa ( /var/run/log )
in each chroot area to syslogd. For example:
1999-03-19 03:53:31 +03:00
.Dl syslogd -p /var/run/log -p /web/var/run/log -p /ftp/var/run/log
.Pp
note: the normal log socket must now also be passed to syslogd.
.Sh SYSLOG PROTOCOL NOTES
.Pp
1993-03-21 12:45:37 +03:00
The message sent to
1997-10-17 17:46:09 +04:00
.Nm
1993-03-21 12:45:37 +03:00
should consist of a single line.
The message can contain a priority code, which should be a preceding
decimal number in angle braces, for example,
.Sq Aq 5 .
1993-03-21 12:45:37 +03:00
This priority code should map into the priorities defined in the
include file
.Aq Pa sys/syslog.h .
.Sh FILES
.Bl -tag -width /var/run/syslogd.pid -compact
1993-03-21 12:45:37 +03:00
.It Pa /etc/syslog.conf
The configuration file.
.It Pa /var/run/syslogd.pid
1993-03-21 12:45:37 +03:00
The process id of current
1997-10-17 17:46:09 +04:00
.Nm "" .
1999-03-19 03:53:31 +03:00
.It Pa /var/run/log
1993-03-21 12:45:37 +03:00
Name of the
.Ux
1993-03-21 12:45:37 +03:00
domain datagram log socket.
.It Pa /dev/klog
The kernel log device.
.El
.Sh SEE ALSO
.Xr logger 1 ,
2000-07-11 16:43:50 +04:00
.Xr newsyslog 8 ,
1993-03-21 12:45:37 +03:00
.Xr syslog 3 ,
.Xr services 5 ,
.Xr syslog.conf 5
.Sh HISTORY
The
.Nm
command appeared in
.Bx 4.3 .
Support for multiple log sockets appeared in
.Nx 1.4 .