I have setup one elk cluster (Elasticsearch + Logstash + Kibana) on a windows server.
And installed beats(filebeat+winlogbeat) on 3 windows servers.
Question about ports that need to be configure in beats and logstash. Below are the config files, Can you confirm ports should be configured as such or advise otherwise.
Server 1:
Filebeat config: hosts: ["12.10.20.21:5044"]
Winlogbeat config: hosts: ["12.10.20.21:5045"]
Server 2:
Filebeat config: hosts: ["12.10.20.21:5046"]
Winlogbeat config: hosts: ["12.10.20.21:5047"]
Server 3:
Filebeat config: hosts: ["12.10.20.21:5048"]
Winlogbeat config: hosts: ["12.10.20.21:5049"]
ELK Server:
Logstash config:
input {
beats {
port => 5044
}
beats {
port => 5045
}
beats {
port => 5046
}
beats {
port => 5047
}
beats {
port => 5048
}
beats {
port => 5049
}
}
output {
elasticsearch {
manage_template => false
hosts => "12.10.20.21:9200"
index => "logstash-app-prod"
}
}
Apache, Apache Lucene, Apache Hadoop, Hadoop, HDFS and the yellow elephant
logo are trademarks of the
Apache Software Foundation
in the United States and/or other countries.