Syslog existiert nicht!

10

Ich benutze 14.04 und ich habe kein Syslog.

Ich bin ein neuer Linux-Benutzer und seit Jahren Windows-Benutzer. Wenn ich tail syslog ausprobiere und das ist was raus:

henrique@henrique:/var/log$ tail -f /var/log/syslog
tail: couldn't open “/var/log/syslog” for reading: File or directory not found

War das ein Fehler bei der Installation von Ubuntu? Kann ich auf diese Weise Syslog "installieren"?

BEARBEITUNG:

cat /etc/rsyslog.conf

#  /etc/rsyslog.conf    Configuration file for rsyslog.
#
#           For more information see
#           /usr/share/doc/rsyslog-doc/html/rsyslog_conf.html
#
#  Default logging rules can be found in /etc/rsyslog.d/50-default.conf


#################
#### MODULES ####
#################

$ModLoad imuxsock # provides support for local system logging
$ModLoad imklog   # provides kernel logging support
#$ModLoad immark  # provides --MARK-- message capability

# provides UDP syslog reception
#$ModLoad imudp
#$UDPServerRun 514

# provides TCP syslog reception
#$ModLoad imtcp
#$InputTCPServerRun 514

# Enable non-kernel facility klog messages
$KLogPermitNonKernelFacility on

###########################
#### GLOBAL DIRECTIVES ####
###########################

#
# Use traditional timestamp format.
# To enable high precision timestamps, comment out the following line.
#
$ActionFileDefaultTemplate RSYSLOG_TraditionalFileFormat

# Filter duplicated messages
$RepeatedMsgReduction on

#
# Set the default permissions for all log files.
#
$FileOwner syslog
$FileGroup adm
$FileCreateMode 0640
$DirCreateMode 0755
$Umask 0022
$PrivDropToUser syslog
$PrivDropToGroup syslog

#
# Where to place spool and state files
#
$WorkDirectory /var/spool/rsyslog

#
# Include all config files in /etc/rsyslog.d/
#
$IncludeConfig /etc/rsyslog.d/*.conf

Ausgabe für apt-cache policy inetutils-syslog

inetutils-syslogd:
  Installed: (nenhum)
  Candidate: 2:1.9.2-1
  Version table:
     2:1.9.2-1 0
     500 http://br.archive.ubuntu.com/ubuntu/ trusty/universe amd64 Packages

Ausgabe für apt-cache policy rsyslog

rsyslog:
  Installed: (none)
  Candidate: 7.4.4-1ubuntu2.6
  Version table:
     7.4.4-1ubuntu2.6 0
     500 http://br.archive.ubuntu.com/ubuntu/ trusty-updates/main amd64 Packages
        100 /var/lib/dpkg/status
     7.4.4-1ubuntu2.3 0
        500 http://security.ubuntu.com/ubuntu/ trusty-security/main amd64 Packages
     7.4.4-1ubuntu2 0
        500 http://br.archive.ubuntu.com/ubuntu/ trusty/main amd64 Packages

Ausgabe für sudo service rsyslog status

rsyslog stop/waiting
Henrique Ramos
quelle
1
Dieses Protokoll und einige andere sollten von einem Skript gesteuert werden /etc/rsyslog.conf. Können Sie diesen Scrip durchsehen und uns mitteilen, ob das dortige Syslog deaktiviert ist oder nicht? Oder poste die ganze Datei auf paste.ubuntu.com und wir könnten einen Blick darauf werfen. Außerdem benötigt syslog sudo, um angezeigt zu werden. Versuchen Sie denselben Befehl mit sudo.
Sergiy Kolodyazhnyy
@Serg tail -f / var / log / syslog benötigt kein sudo, um es anzuzeigen.
Rinzwind
Bearbeiten Sie Ihre Frage und fügen Sie die Ausgabe vonapt-cache policy inetutils-syslogd
AB
zeigt "installiert keine" auf meinem System, aber Syslog ist aktiv;)
Rinzwind
@Rinzewind Ist es wirklich rsyslogd?
AB

Antworten:

6

Die Ausgabe von apt-cache policy rsyslogsay rsyslogist daher nicht auf Ihrem System installiert

sudo apt-get install rsyslog
AB
quelle
Ah ja, jetzt geht es los! Vielen Dank für Ihre Hilfe.
Henrique Ramos
Jetzt habe ich Syslog :) Ich dachte, es war in Ubuntu vorinstalliert. Muss ich bei der Installation oder Konfiguration des Protokolls etwas tun?
Henrique Ramos
Nein, es gibt nichts mehr zu tun.
AB