Posted inUncategorized
Elastic Search Notları
TÜm indexleri silmek curl -XDELETE ‘http://localhost:9200/*’ #delete index: curl -XDELETE 'localhost:9200/index_name' #delete all indices: curl -XDELETE 'localhost:9200/_all' #delete document : curl -XDELETE 'localhost:9200/index_name/type_name/document_id’ sudo service elasticsearch statuscurl -XGET "http://localhost:9200/_cluster/health?pretty=true"curl "localhost:9200/_nodes/settings?pretty=true"Elastic Ubuntu remove sudo apt-get –purge autoremove elasticsearchsudo rm -rf…