标签:引入 mes inux obb iba node get inpu lis
linux-node1: Elasticsearch + Logstash + Kibana
linux-node2: Logstash + redis
[root@linux-node1 conf.d]# cat redis-to-es.conf
input {
redis {
host => "192.168.200.4" #指向linux-node2的redis的ip地址
port => "6379"
password => "123456"
db => "0"
data_type => "list"
key => "logstash"
}
}
output {
elasticsearch {
hosts => ["192.168.200.99:9200"]
index => "logstash_syslog-%{+YYYY.MM.dd}"
}
}
利用supervisor自启 redis-to-es.conf
[root@linux-node2 ~]# wget -O /etc/yum.repos.d/epel.repo http://mirrors.aliyun.com/repo/epel-7.repo
[root@linux-node2 ~]# yum install -y redis
[root@linux-node2 ~]# vim /etc/redis.conf
bind 0.0.0.0
requirepass 123456
[root@linux-node2 ~]# systemctl start redis && systemctl enable redis
安装logstash步骤省略
[root@cobbler-200 ~]# cat /etc/logstash/conf.d/syslog-to-redis.conf
input {
udp {
port => "514"
type => "syslog"
}
}
output {
redis {
host => ["192.168.200.4:6379"] #linux-node2的redis的ip地址
password => "123456"
db => "0"
data_type => "list"
key => "logstash"
}
}
利用supervisor自启 syslog-to-redis.conf
clock timezone UTC add 08:00:00
ntp-service unicast-server 120.25.115.20
info-center source default channel 2 trap state off
info-center loghost source Vlanif100
info-center loghost 192.168.200.4 # ip 写redis的ip地址
info-center timestamp log format-date
标签:引入 mes inux obb iba node get inpu lis
原文地址:https://www.cnblogs.com/skymydaiji/p/13809694.html