Setup centralised Syslog server

Server Open access in UFW firewall port 514 tcp/udp: ufw allow from 192.168.122.0/27 port 514 mkdir /var/log/rsyslog chown root:adm /var/log/rsyslog The following code in 90-rsyslog.conf should be placed before the “*.info;mail.none;authpriv.none;cron.none /var/log/syslog” entry which is done using directive $IncludeConfig /etc/rsyslog.d/*.conf in /etc/rsyslog.conf. Be sure you replace server-name below with the name of your central logging … Read more

Linux mini-howto

# Linux je operační systém s monolitickým jádrem. Moduly jsou objektové soubory, dynamické části jádra. Umožňují rozšířit za běhu funkce stávajícího jádra (LKM = Linux Loadable Kernel Module). # daemons basic operations /etc/init.d/apache status /etc/init.d/apache restart # filter file content cat /var/log/… | grep (192.168….) -v 9190 | grep 192.168…. | more tail -f /var/log/… … Read more