filebeat+elk+zookeeper启动命令
Posted frantz
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了filebeat+elk+zookeeper启动命令相关的知识,希望对你有一定的参考价值。
./filebeat setup --dashboards
curl -X GET "10.0.6.114:9200/_cat/indices?v"
启动filebeat
cd /opt/filebeat-6.5.4-linux-x86_64
./filebeat -e -c filebeat.yml &
启动kafka
cd /opt/kafka_2.11-2.1.0/bin
./kafka-server-start.sh ../config/server.properties &
启动zookeeper
cd /opt/kafka_2.11-2.1.0
./bin/zookeeper-server-start.sh ./config/zookeeper.properties &
生成一个topic
bin/kafka-topics.sh --create --zookeeper 10.0.6.25:2181 --replication-factor 1 --partitions 1 --topic elk
查看topic
bin/kafka-topics.sh --list --zookeeper 10.0.6.25:2181
以上是关于filebeat+elk+zookeeper启动命令的主要内容,如果未能解决你的问题,请参考以下文章