• Hello,

    I’ve installed and setup the plugin as expected but when I check the status of our index it’s showing as yellow and never turns to green. I’ve searched around and think that this is because by default elastcisearch is expecting two nodes – is this correct?

    We are running the plugin on the same host as our website and it’s a single server. Does this mean we can only use one node, or can we run more than one node on the same server?

    Thanks in advance ??

    https://www.ads-software.com/plugins/fantastic-elasticsearch/

Viewing 1 replies (of 1 total)
  • Thread Starter wedideas

    (@wedideas)

    I’ve managed to get around the yellow status by removing the need for replicas using the following curl PUT command on https://localhost:9200/_settings

    {
    “index” : {
    “number_of_replicas” : 0
    }
    }

    Now my index status is showing as green, but for some reason the default WP search results are still showing up. I can query the index fine through POST and I’m getting the results I expect. An example query is…

    {
    “query”: {
    “match”: {
    “post_content”: “jewellery”}
    }
    }

    I have tried using my current theme (which uses the default wordpress search function) and by using the twentyfourteen theme and nothing happens ??

    Can anyone help. Am I missing something obvious?

Viewing 1 replies (of 1 total)
  • The topic ‘Elasticsearch Status – always yellow’ is closed to new replies.