good afternoon guys my English is not very good but I will try to explain
myself I have a test server here at digitalocean with ubuntu 20.04 and I installed elasticsearch for log collection on this same test server but on the test server itself is giving this connection error refused that I can not solve, I have already added rules to the firewall of that same server but to no avail, I have already deactivated the firewall and also did not work
root@ubuntu-teste-elastic-Nginx:~# auditbeat setup
Exiting: couldn't connect to any of the configured Elasticsearch hosts. Errors:
[error connecting to Elasticsearch at https://159.223.167.255:9200:
Get "https://159.223.167.255:9200": dial tcp 159.223.167.255:9200: connect: connection refused]
Already followed this tutorial added rules in the server firewall elasticsearch however it did not work
since i’m grateful to anyone who can contribute
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Enter your email to get $200 in credit for your first 60 days with DigitalOcean.
New accounts only. By submitting your email you agree to our Privacy Policy.
Hi there,
In the
/etc/elasticsearch/elasticsearch.yml
file, you need to set thenetwork.host:
to0.0.0.0
so that the Elasticsearch service would listen on all interfaces and bound IPs. That way you will be able to access the service externlly.Alternatively, if you want it to listen only on a specific interface, you can specify its IP address.
Hope that this helps!
Best,
Bobby