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

后端 未结 13 2350
予麋鹿
予麋鹿 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:10

    I had an orphaned Java process related to Elasticsearch. Killing it solved the lock issue.

    ps aux | grep 'java'
    kill -9 
    

提交回复
热议问题