您好,登錄后才能下訂單哦!
今天小編給大家分享一下Ubuntu18.04 LTS如何安裝Rsyslog的相關(guān)知識(shí)點(diǎn),內(nèi)容詳細(xì),邏輯清晰,相信大部分人都還太了解這方面的知識(shí),所以分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后有所收獲,下面我們一起來(lái)了解一下吧。
Rsyslog 是一個(gè) syslogd 的多線(xiàn)程增強(qiáng)版。它提供高性能、極好的安全功能和模塊化設(shè)計(jì)。雖然它基于常規(guī)的 syslogd,但 rsyslog 已經(jīng)演變成了一個(gè)強(qiáng)大的工具。
默認(rèn)情況下,Rsyslog安裝在Ubuntu 18.04服務(wù)器上。如果沒(méi)有安裝,您可以通過(guò)運(yùn)行以下命令來(lái)安裝它:
linuxprobe@ubuntu-18-04-lts:~$ apt-get install rsyslog -y
在安裝Rsyslog之后,您可以使用以下命令檢查Rsyslog的版本:
linuxprobe@ubuntu-18-04-lts:~$ rsyslogd -v rsyslogd 8.32.0, compiled with: PLATFORM: x86_64-pc-linux-gnu PLATFORM (lsb_release -d): FEATURE_REGEXP: Yes GSSAPI Kerberos 5 support: Yes FEATURE_DEBUG (debug build, slow code): No 32bit Atomic operations supported: Yes 64bit Atomic operations supported: Yes memory allocator: system default Runtime Instrumentation (slow code): No uuid support: Yes systemd support: Yes Number of Bits in RainerScript integers: 64 See http://www.rsyslog.com for more information.
還可以用這個(gè)命令檢查Rsyslog的狀態(tài):
linuxprobe@ubuntu-18-04-lts:~$ systemctl status rsyslog ? rsyslog.service - System Logging Service Loaded: loaded (/lib/systemd/system/rsyslog.service; enabled; vendor preset: enabled) Active: active (running) since Thur 2020-01-16 11:20:32 CST; 1min 31s ago Docs: man:rsyslogd(8) Main PID: 724 (rsyslogd) Tasks: 4 (limit: 1114) CGroup: /system.slice/rsyslog.service ??724 /usr/sbin/rsyslogd -n Jan 16 04:28:53 ubuntu-18-04-lts systemd[1]: Starting System Logging Service... Jan 16 04:28:54 ubuntu-18-04-lts rsyslogd[724]: imuxsock: Acquired UNIX socket '/run/systemd/journal/syslog' (fd 3) from systemd. [v8.32.0] Jan 16 04:28:54 ubuntu-18-04-lts rsyslogd[724]: rsyslogd's groupid changed to 106 Jan 16 04:28:54 ubuntu-18-04-lts rsyslogd[724]: rsyslogd's userid changed to 102 Jan 16 04:28:54 ubuntu-18-04-lts rsyslogd[724]: [origin software="rsyslogd" swVersion="8.32.0" x-pid="724" x-info="http://www.rsyslog.com"] start Jan 16 04:28:55 ubuntu-18-04-lts systemd[1]: Started System Logging Service.
linuxprobe@ubuntu-18-04-lts:~$ vim /etc/rsyslog.conf
取消這幾行前面的注釋,同事使用UDP和TCP協(xié)議的514端口
$ModLoad imudp$UDPServerRun 514$ModLoad imtcp$InputTCPServerRun 514
指定子網(wǎng)、IP或域名來(lái)限制訪問(wèn),如下所示:
$AllowedSender TCP, 127.0.0.1, 192.168.0.0/24, *.example.com$AllowedSender UDP, 127.0.0.1, 192.168.0.0/24, *.example.com
創(chuàng)建一個(gè)模板來(lái)告訴Rsyslog如何存儲(chǔ)傳入的syslog消息。在GLOBAL DIRECTIVES部分之前添加以下幾行:
$template remote-incoming-logs,"/var/log/%HOSTNAME%/%PROGRAMNAME%.log"*.* ?remote-incoming-logs
用以下命令檢查Rsyslog配置信息是否有語(yǔ)法錯(cuò)誤:
linuxprobe@ubuntu-18-04-lts:~$ rsyslogd -f /etc/rsyslog.conf -N1 rsyslogd: version 8.32.0, config validation run (level 1), master config /etc/rsyslog.conf rsyslogd: End of config validation run. Bye.
重新啟動(dòng)Rsyslog:
linuxprobe@ubuntu-18-04-lts:~$ systemctl restart rsyslog
驗(yàn)證Rsyslog正在使用以下命令監(jiān)聽(tīng)TCP/UDP:
linuxprobe@ubuntu-18-04-lts:~$ netstat -4altunp | grep 514tcp 0 0 0.0.0.0:514 0.0.0.0:* LISTEN 1332/rsyslogd udp 0 0 0.0.0.0:514 0.0.0.0:* 1332/rsyslogd
配置Rsyslog客戶(hù)端來(lái)向遠(yuǎn)程服務(wù)端發(fā)送系統(tǒng)日志消息。登錄客戶(hù)端,打開(kāi)/etc/rsyslog.conf添加如下信息:
linuxprobe@ubuntu-18-04-lts:~$ vim /etc/rsyslog.conf##Enable sending of logs over UDP add the following line:*.* @192.168.0.101:514##Enable sending of logs over TCP add the following line:*.* @@192.168.0.101:514##Set disk queue when rsyslog server will be down:$ActionQueueFileName queue$ActionQueueMaxDiskSpace 1g$ActionQueueSaveOnShutdown on$ActionQueueType LinkedList$ActionResumeRetryCount -1
重新啟動(dòng)Rsyslog:
linuxprobe@ubuntu-18-04-lts:~$ systemtcl restart rsyslog
此時(shí),Rsyslog客戶(hù)端被配置為將它們的日志發(fā)送到Rsyslog服務(wù)端。 現(xiàn)在,登錄到Rsyslog服務(wù)器并檢查/var/log目錄。看到客戶(hù)端機(jī)器的主機(jī)名,包括幾個(gè)日志文件:
linuxprobe@ubuntu-18-04-lts:~$ ls /var/log/rsyslog-client/ CRON.log kernel.log rsyslogd-2039.log rsyslogd.log sudo.log wpa_supplicant.log
以上就是“Ubuntu18.04 LTS如何安裝Rsyslog”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家閱讀完這篇文章都有很大的收獲,小編每天都會(huì)為大家更新不同的知識(shí),如果還想學(xué)習(xí)更多的知識(shí),請(qǐng)關(guān)注億速云行業(yè)資訊頻道。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。