Elasticsearch, Failed to obtain node lock, is the following location writable

后端 未结 13 2351
予麋鹿
予麋鹿 2020-12-05 12:45

Elasticsearch won\'t start using ./bin/elasticsearch. It raises the following exception:

- ElasticsearchIllegalStateException[Failed to obtain n         


        
13条回答
  •  爱一瞬间的悲伤
    2020-12-05 13:11

    the reason is another instance is running!
    first find the id of running elastic.

    ps aux | grep 'elastic'
    

    then kill using kill -9 .
    There were some answers to remove node.lock file but that didn't help since the running instance will make it again!

提交回复
热议问题