The Rsyslog of Linux

Source: Internet
Author: User
Tags system log rsyslog

Linux Rsyslog System Log forwarding

I. Introduction of Rsyslog

Ryslog is a fast-track system log program that provides high performance, security features, and modular design. The Rsyslog is an upgraded version of the syslog, which converts multiple sources of input and output to destinations, and is now able to process 1 million of messages, according to the official website.

Features: 1. Multithreading

2. Support Encryption protocol: SSL,TLS,RELP

3.mysql, Oracle, PostgreSQL

4. etc...

Ii. Practical Deployment ()

2.1 Environment diagram

  

Deploy operations on 2.2.rsyslog server

Install the Rsyslog program (Rsyslog is already installed in each release version, if not in the system, you can install it with Yum, as follows:)

[email protected] ~]# Yum install rsyslog-y

Edit Rsyslog configuration file, path/etc/rsyslog.conf, it is best to back up a copy before the modified file content as follows

View Code

A. $AllowedSender TCP, 192.168.30.0/24 allows hosts within a 30.0 network segment to be transmitted using the TCP protocol

B. $template Remote, "/data/log/%fromhost-ip%/%fromhost-ip%_% $YEAR%-% $MONTH%-% $DAY%.log" define templates, accept log file paths, differentiate logs from different hosts

C.:fromhost-ip,!isequal, "127.0.0.1"? Remote filters the log for server native.

D. $InputTCPServerRun 514 Open tcp,tcp and UDP can coexist

Create a log directory and try to choose a larger area of the system to create, considering the log files to hold many servers.

[Email protected] ~]# Mkdir-pv/data/log

After the modification is complete, restart the Rsyslog service and view the listening port, 514 is the TCP protocol

[[email protected] ~]# systemctl restart Rsyslog[[email protected] ~]# NETSTAT-AULNTP | grep rsyslogtcp        0      0 0.0.0.0:514             0.0.0.0:*               LISTEN      20228/rsyslogd      tcp6       0      0::: 514                  :::*                    LISTEN      20228/rsyslogd      UDP        0      0 0.0.0.0:514             0.0.0.0:*                           20228/rsyslogd      udp6       0      0::: 514                  :::*                                20228/RSYSLOGD      

2.3 Actions on the client:

Configuration on the Node1

Open the configuration file, the old look, the first backup under the changes in the/etc/rsyslog.conf, after the change remember to restart the program

View Code

CEPH1 on the configuration, restart the Rsyslog program

Open configuration file/etc/rsyslog.conf

View Code

Finally restart the Rsyslog program on the client

2.4 Verification, in the server up to the/data/log directory, to view, you will find the following similar file structure

[Email protected] ~]# tree/data/log//data/log/├──192.168.30.56│└──192.168.30.56_2016-05-05.log├──192.168.30.57│ └──192.168.30.57_2016-05-05.log└──messages2 directories, 3 files

Messages:server End of System log
Folder 192.168.30.56:node1 log for client
Folder 192.168.30.57:CEPH1 log for client

We only look at Node1 's system log here. Operations on the server

[Email protected] ~]# tail-f/data/log/192.168.30.56/192.168.30.56_2016-05-05.log may  5 20:50:45 node1 RSYSLOGD: [ Origin software= "Rsyslogd" swversion= "7.4.7" x-pid= "9296" x-info= "http://www.rsyslog.com"] exiting on signal 15.May  5 20:50:45 Node1 rsyslogd: [Origin software= "Rsyslogd" swversion= "7.4.7" x-pid= "9334" x-info= "/HTTP/ Www.rsyslog.com "] Startmay  5 20:50:45 node1 systemd:stopping System Logging Service ... May  5 20:50:45 node1 systemd:starting System Logging Service ... May  5 20:50:45 node1 systemd:started System Logging Service.

It is also possible to send a message on the Node1 on the command line logger "This is test" on the server to view the next

[Email protected] ~]# Tail-1f/data/log/192.168.30.56/192.168.30.56_2016-05-05.log may  5 20:52:46 node1 Root:this is test

Iii. Summary

Don't know before, always thought difficult, now feel rsyslog is quite simple. But simply because we only use the simplest method, and the function is only used for forwarding, subsequent attempts will be made to log the forwarding of other services, such as MySQL, Zabbix, and the Nova service log. These are the ultimate goals.

This article belongs to original, please specify the source when reproduced

The Rsyslog of Linux

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.