Skip to content

Test Server

curl http://localhost:9200 -u elastic:changeme

curl http://45.32.84.33:9200 -u elastic:changeme


curl -XPOST "https://45.32.84.33:9200/_search" -d'
  {
     "query": {
       "match_all": {}
     }
  }'

TODO

Example curl skipping HTTPS

curl -XPUT -u elastic:PASSWORD -k -L http://elasticsearch.dentropy.local/test-index

Skip Verify HTTPS

import urllib3
from elasticsearch import Elasticsearch
urllib3.disable_warnings(urllib3.exceptions.InsecureRequestWarning)
es = Elasticsearch(
  ['https://elastic:PASSWORD@elasticsearch.dentropy.local:443'],
  verify_certs=False)

TODO

Aggregations


id: SFmWuMG31R0vtgOxDVzQo title: reminders desc: '' updated: 1634842741012 created: 1628444413888


Elastic Search Reminders