Como obter o syslogd / klogd para anexar ao syslog após a reinicialização, em vez de sobrescrevê-lo?

1

Após uma reinicialização ou falha, o syslog não salva nenhuma mensagem da sessão anterior. O que devo fazer para dizer ao syslogd / klogd para anexar ao syslog em vez de sobrescrever todas as sessões? Sinto que estou sentindo falta de algo óbvio.

Algumas informações do meu sistema:

  • Distribuição: Yocto (poky) com busybox
  • Método de inicialização do klogd / syslogd: init
  • Iniciando configs / scrips o klogd / syslogd usa: /etc/syslog-startup.conf e /etc/init.d/syslog

/etc/syslog-startup.conf

# This configuration file is used by the busybox syslog init script,
# /etc/init.d/syslog[.busybox] to set syslog configuration at start time.

DESTINATION=file        # log destinations (buffer file remote)
LOGFILE=/var/log/syslog     # where to log (file)
REMOTE=loghost:514      # where to log (syslog remote)
REDUCE=no           # reduce-size logging
DROPDUPLICATES=no       # whether to drop duplicate log entries
ROTATESIZE=100          # rotate log if grown beyond X [kByte]
ROTATEGENS=3            # keep X generations of rotated logs
BUFFERSIZE=64           # size of circular buffer [kByte]
FOREGROUND=no           # run in foreground (don't use!)
LOGLEVEL=8          # local log level (between 1 and 8)

/etc/init.d/syslog

#! /bin/sh
### BEGIN INIT INFO
# Provides:             sysklogd
# Required-Start:       $remote_fs $time
# Required-Stop:        $remote_fs $time
# Default-Start:        2 3 4 5
# Default-Stop:         0 1 6
# Short-Description:    System logger
### END INIT INFO

set -e

if [ -f /etc/syslog-startup.conf ]; then
    . /etc/syslog-startup.conf
    LOG_LOCAL=0
    LOG_REMOTE=0
    for D in $DESTINATION; do
        if [ "$D" = "buffer" ]; then
            SYSLOG_ARGS="$SYSLOG_ARGS -C$BUFFERSIZE"
            LOG_LOCAL=1
        elif [ "$D" = "file" ]; then
            if [ -n "$LOGFILE" ]; then
                SYSLOG_ARGS="$SYSLOG_ARGS -O $LOGFILE"
            fi
            if [ -n "$ROTATESIZE" ]; then
                SYSLOG_ARGS="$SYSLOG_ARGS -s $ROTATESIZE"
            fi
            if [ -n "$ROTATEGENS" ]; then
                SYSLOG_ARGS="$SYSLOG_ARGS -b $ROTATEGENS"
            fi
            LOG_LOCAL=1
        elif [ "$D" = "remote" ]; then
            SYSLOG_ARGS="$SYSLOG_ARGS -R $REMOTE"
            LOG_REMOTE=1
        fi
    done
    if [ "$LOG_LOCAL" = "1" -a "$LOG_REMOTE" = "1" ]; then
        SYSLOG_ARGS="$SYSLOG_ARGS -L"
    fi
    if [ "$REDUCE" = "yes" ]; then
        SYSLOG_ARGS="$SYSLOG_ARGS -S"
    fi
    if [ "$DROPDUPLICATES" = "yes" ]; then
        SYSLOG_ARGS="$SYSLOG_ARGS -D"
    fi
    if [ -n "$LOGLEVEL" ]; then
        SYSLOG_ARGS="$SYSLOG_ARGS -l $LOGLEVEL"
    fi
else
    # default: log to 16K shm circular buffer
    SYSLOG_ARGS="-C"
fi

case "$1" in
  start)
    echo -n "Starting syslogd/klogd: "
    start-stop-daemon -S -b -n syslogd -a /sbin/syslogd -- -n $SYSLOG_ARGS
    start-stop-daemon -S -b -n klogd -a /sbin/klogd -- -n
    echo "done"
    ;;
  stop)
    echo -n "Stopping syslogd/klogd: "
    start-stop-daemon -K -n syslogd
    start-stop-daemon -K -n klogd
    echo "done"
    ;;
  restart)
    $0 stop
    $0 start
    ;;
  *)
    echo "Usage: syslog { start | stop | restart }" >&2
    exit 1
    ;;
esac

exit 0
    
por AustinTronics 18.01.2017 / 21:23

2 respostas

1

Parece que o diretório / var / log / foi redirecionado para / var / volatile / log / na inicialização que é montada como tempfs para que os dados não sejam salvos em uma reinicialização / falha. Comentando a linha que monta o diretório / var / volatile / como tmpfs no arquivo / etc / fstab parece ter funcionado.

    
por 24.01.2017 / 00:43
-1

drwxr-xr-x 5 root 4096 Jun 25 09:46 cache drwxr-xr-x 9 raiz raiz 4096 jun 25 09:46 lib drwxr-xr-x 2 raiz do root 4096 25 de maio 10:11 local lrwxrwxrwx 1 raiz raiz 11 25 de maio 10:11 de bloqueio - > ../run/lock lrwxrwxrwx 1 raiz raiz 12 25 de maio 10:11 log - > volátil / log lrwxrwxrwx 1 raiz raiz 6 25 de maio 10:11 executar - > ../corre drwxr-xr-x 3 raiz raiz 4096 Jun 25 09:46 spool lrwxrwxrwx 1 raiz raiz 12 25 de maio 10:11 tmp - > volátil / tmp drwxrwxrwt 4 raiz raiz 80 jun 25 09:46 volátil

Devido a essa montagem volátil, os logs não persistem após a inicialização.

    
por 13.07.2018 / 09:39