For an introduction to curl creating an index library, please
Elasticsearch Curl Creating the Index library
[Email protected] elasticsearch-2.4.3]$ curl-xput ' http://192.168.80.200:9200/zhouls '
{"Error": {"Root_cause": [{"Type": "Index_already_exists_exception", "Reason": "already exists", "index": "Zhouls"}], " Type ":" Index_already_exists_exception "," Reason ":" already exists "," index ":" Zhouls "}," status ": 400}[[email Protected] elasticsearch-2.4.3]$ curl-xpost ' http://192.168.80.200:9200/zhouls1 '
{"acknowledged": true} [Email protected] elasticsearch-2.4.3]$
After the test, delete it in time.
[Email protected] elasticsearch-2.4.3]$ curl-xput ' http://192.168.80.200:9200/zhouls '
{"Error": {"Root_cause": [{"Type": "Index_already_exists_exception", "Reason": "already exists", "index": "Zhouls"}], " Type ":" Index_already_exists_exception "," Reason ":" already exists "," index ":" Zhouls "}," status ": 400}[[email Protected] elasticsearch-2.4.3]$ curl-xpost ' HTTP://192.168.80.200:9200/ZHOULS1 '
{"acknowledged": true} [Email protected] elasticsearch-2.4.3]$ curl-xdelete ' http://192.168.80.200:9200/zhouls1 '
{"acknowledged": true} [Email protected] elasticsearch-2.4.3]$
Elasticsearch Curl Delete the index library