This projects sets up a docker compose file that sets up a cluster with:
- 2 dedicated elasticsearch master nodes (
es01&es02) - 2 dedicated elasticsearch data nodes (
03&04) - 1 kibana
- Set-up a password at
.env - Run
docker compose upand wait :) - Access kibana at
localhost:5601and use as usernameelasticand password you have set.
If you want to modify and rerun it but it looks like the previous state is causing troubles, clean up the containers and the volumes. If this is the only thing you are running in docker you can use:
docker compose downdocker volume rm $(docker volume ls -q)(this will remove everything so be careful)