Hi everyone, I'm starting a docker container as follows
docker run -d --rm --name ejq-elk -v $PWD:/var/backups -p 5601:5601 sebp/elk:7.10.0
However, this returns a connection error
==> /var/log/kibana/kibana5.log <==
{"type":"log","@timestamp":"2021-01-11T13:12:42Z","tags":["error","elasticsearch","data"],"pid":338,"message":"[ConnectionError]: connect ECONNREFUSED 127.0.0.1:9200"}
{"type":"log","@timestamp":"2021-01-11T13:12:44Z","tags":["warning","elasticsearch","monitoring"],"pid":338,"message":"Unable to revive connection: http://localhost:9200/"}
{"type":"log","@timestamp":"2021-01-11T13:12:44Z","tags":["warning","elasticsearch","monitoring"],"pid":338,"message":"No living connections"}
{"type":"log","@timestamp":"2021-01-11T13:12:44Z","tags":["warning","plugins","licensing"],"pid":338,"message":"License information could not be obtained from Elasticsearch due to Error: No Living connections error"}
{"type":"log","@timestamp":"2021-01-11T13:12:44Z","tags":["warning","elasticsearch","data"],"pid":338,"message":"Unable to revive connection: http://localhost:9200/"}
{"type":"log","@timestamp":"2021-01-11T13:12:44Z","tags":["warning","elasticsearch","data"],"pid":338,"message":"No living connections"}
{"type":"log","@timestamp":"2021-01-11T13:12:44Z","tags":["warning","plugins","licensing"],"pid":338,"message":"License information could not be obtained from Elasticsearch due to Error: No Living connections error"}
{"type":"log","@timestamp":"2021-01-11T13:12:44Z","tags":["warning","elasticsearch","data"],"pid":338,"message":"Unable to revive connection: http://localhost:9200/"}
{"type":"log","@timestamp":"2021-01-11T13:12:44Z","tags":["warning","elasticsearch","data"],"pid":338,"message":"No living connections"}
{"type":"log","@timestamp":"2021-01-11T13:12:44Z","tags":["error","plugins","taskManager","taskManager"],"pid":338,"message":"Failed to poll for work: Error: No Living connections"}
{"type":"log","@timestamp":"2021-01-11T13:12:44Z","tags":["error","elasticsearch","data"],"pid":338,"message":"[ConnectionError]: connect ECONNREFUSED 127.0.0.1:9200"}
{"type":"log","@timestamp":"2021-01-11T13:12:44Z","tags":["error","elasticsearch","data"],"pid":338,"message":"[ConnectionError]: connect ECONNREFUSED 127.0.0.1:9200"}
Does anyone know why this might happen?
Thank you in advance