Redis+Logstash+Elasticsearch配置笔记

1、 开机自动启动Redis

1),拷贝redis目录utils下的redis_init_script文件到/etc/init.d,并将其重命名为redisd,再运行chmod u+x redisd

2),修改redis根目录下的redis.conf,将daemonize修改为yes,将pidfile,修改为/var/run/redis_6379.pid

3),将redis根目录下的redis.conf拷贝到/etc/redis/目录下,重命名为6379.conf

4),修改6379.conf,找到 SNAPSHOTTING一节,将working directory处的dir ./改为dir /var/lib/redis。创建/var/lib/redis目录 

5),在控制台输入chkconfig redisd on,配置为开机启动,如果报错则在redisd文件头修改为

#!/bin/sh

# chkconfig:   2345 90 10

 

2、SSH远程执行Logstash和elasticsearch,关闭ssh窗口后不关闭进程

1)配置并启动elasticsearch。首先编辑elasticsearc目录下config目录中的elastcsearch.yml文件,在最后添加内容http.cors.enabled: true,然后输入命令nohup bin/elasticsearch & 启动。

2)修改redis的配置文件。在logstash的目录下创建一个目录redis_conf,再创建一个文件redis.conf,内容如下:

input {
redis {
host => "127.0.0.1"
type => "redis-input"
# these settings should match the output of the agent
data_type => "list"
key => "log"#这里是redis的数据来源,根据需要自行配置
}
}

filter{
json{source => "message"}

date{
match => ["WRITETIME", "ISO8601"]
}

}

output {
  stdout {
    codec => rubydebug
  }

  elasticsearch {
        host => "localhost"       
  }

}

运行命令nohup bin/logstash agent -f redis_conf &,启动logstash

 

3)打开logstash的web界面,运行命令nohup bin/logstash-web &

这时,应该启动的服务有

a、redis进程

b、elasticsearch进程

c、logstash的进程

d、logstash-web进程

 

 

你可能感兴趣的:(redis)