Logbookd: Difference between revisions

From Alpine Linux
(Initial write-up: short intro, setup instructions, short hint on old logs.)
 
m (→‎See also: Formatting)
 
(2 intermediate revisions by the same user not shown)
Line 9: Line 9:
Setting it up is quite straightforward:
Setting it up is quite straightforward:


<code>
apk add logbookd
apk add logbookd
# Disable and stop the default syslog.
rc-update del syslog boot
service syslog stop
# Enable and start logbookd
rc-update add logbookd boot
service logbookd start


# Disable and stop the default syslog.
After the next reboot, you may want to review previous log files in <code>/var/log</code>, which will remain unused and stale. Only the sqlite database should remain relevant.
rc-update del syslog boot
service syslog stop


# Enable and start logbookd
= See also =
rc-update add logbookd boot
service logbookd start
</code>


After the next reboot, you may want to review previous log files in <code>/var/log</code>, which will remain unused and stale. Only the sqlite database should remain relevant.
* [https://blog.brixit.nl/looking-closer-at-the-syslog/ Looking closer at the syslog]: an introductory article to syslog and logbookd.

Latest revision as of 12:27, 24 February 2024

logbookd is a syslogd implementation that uses an sqlite database as a backend.

The default mode of operation uses a reduced write mode, where lots are written to memory and only flushed to disk when the service is interrupted or receives SIGUSR1.

Setup

Logbook is provided via the logbookd package.

Setting it up is quite straightforward:

apk add logbookd

# Disable and stop the default syslog.
rc-update del syslog boot
service syslog stop

# Enable and start logbookd
rc-update add logbookd boot
service logbookd start

After the next reboot, you may want to review previous log files in /var/log, which will remain unused and stale. Only the sqlite database should remain relevant.

See also