Not able to telnet IP with port 5044

Hi All,
Good morning.
I have installed logtash 7.4.1-1 , my service starts, no error messages in the logs, but I am not able to telnet to the IP with port 5044
when I did a "netstat -anp | grep 5044" it shows

netstat -anp | grep 5044
tcp6 0 0 :::5044 :::* LISTEN 31782/java

From the above, I think it is not binded to IP4, I am pasting my "/etc/logstash/logstash.yml" and "/etc/logstash/conf.d/logstash.conf" here

cat /etc/logstash/logstash.yml | grep host
http.host: "192.168.3.191"

cat /etc/logstash/conf.d/logstash.conf

input {
beats {
port => 5044
}
}

output {
elasticsearch {
hosts => ["http://192.168.3.191:9200"]
index => "%{[@metadata][beat]}-%{[@metadata][version]}-%{+YYYY.MM.dd}"
}
}

I think, in "/etc/logstash/conf.d/logstash.conf" there may be something to be done, Advice requested on the what I need to do with the conf files.
Thanks
Joseph John

Kibana version:
7.4.1
Elasticsearch version:
7.4.1
APM Server version:
7.4.1
**filebeat version **
7.4.1
APM Agent language and version:
NA
Logstash version
7.4.1-1

Like to update, from my filebeat installed machines I get this message

ERROR pipeline/output.go:100 Failed to connect to backoff(elasticsearch(http://192.168.3.191:5044)): Get http://192.168.3.191:5044: read tcp 192.168.3.13:24163->192.168.3.191:5044: read: connection reset by peer

It looks like you may have configured the Logstash URL under the elasticsearch section in your beats config. It would be easier to tell if you could share your config.

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