ElasticSearch 5.6 cannot start on Mac OS

前端 未结 3 1542
栀梦
栀梦 2021-02-09 03:32

I can\'t start ElasticSearch 5.6 server on Mac after installing it with Brew. Get this error:

$ /usr/local/opt/elasticsearch@5.6/bin/elasticsearch
Exception in t         


        
3条回答
  •  执念已碎
    2021-02-09 04:37

    The server is most probably attempting to read a newer index (org.apache.lucene.index.IndexFormatTooNewException).

    Most probably the only way is to get rid of it completely with:

    sudo rm -rf  /usr/local/var/lib/elasticsearch
    

    Please double check the index and make sure you don't need the old 6.* index anymore, because you're obviously going to lose it.

提交回复
热议问题