Skip to content

Documentation

Create basic users

1
bin/elasticsearch-setup-passwords auto -u http://localhost:9200

Trouble-Shooting

Get a list of indides:

1
curl "http://127.0.0.1:9200/_cat/indices?v"

If an index went read-only:

1
curl -X PUT http://127.0.0.1:9200/[INDEX]/_settings -H 'Content-Type: application/json' -d '{"index.blocks.read_only_allow_delete":null}'

Or use the prepared script elasticsearch-remove-readonly for this.

1
curl -X PUT http://localhost:9200/_all/_settings -H 'Content-Type: application/json' -d'{ "index.blocks.read_only_allow_delete" : false } }'