shell

Elasticsearch

# Liste les indexes
curl "http://localhost:9200/_cat/indices?v"

# Supprimer tous les indexes
curl -X DELETE 'http://localhost:9200/_all'

# Supprimeer l'index users_development_20181023170138169
curl -XDELETE "http://localhost:9200/users_development_20181023170138169"