Logstash Beats port not opening

I have set up logstash to receive the beats data. But unfortunately only 9600 port is opening

beats config

input {
  beats {
    port => 5044
  }
}

output {
  elasticsearch {
    hosts => ["https://localhost:9200"]
    index => "%{[@metadata][beat]}-%{[@metadata][version]}-%{+YYYY.MM.dd}"
    user => "admin"
    password => "admin"
    cacert => "/etc/elasticsearch/root-ca.pem"
  }
}

Logstash Logs: https://hastebin.com/buwusufoje.md

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.