首页 > 其他 > 详细

ElasticSearch 报错 failed to obtain node locks

时间:2019-12-25 10:48:30      阅读:699      评论:0      收藏:0      [点我收藏+]

failed to obtain node locks, tried [[/var/lib/elasticsearch]] with lock id [0];

错误信息:

failed to obtain node locks, tried [[/var/lib/elasticsearch]] with lock id [0]; maybe these locations are not writable or multiple nodes were started without increasing [node.max_local_storage_nodes]

Elasticsearch version 6.8.2

解决方法一:

查找ES进程号,杀掉进程然后重启。

ps -ef | grep elastic

kill -9 进程号

解决方法二:

给予操作ES的管理员权限,chown -R 用户名:组名 文件目录 

chown -R elastic /var/lib/elasticsearch/

解决方法三:

可能是因为安装了ES的插件,修改了配置文件 elasticsearch.yml

将这些注释或删除掉后重启

http.cors.allow-origin: ‘http://localhost:1358‘
http.cors.enabled: true
http.cors.allow-headers: X-Requested-With,X-Auth-Token,Content-Type,Content-Length,Authorization
http.cors.allow-credentials: true
技术分享图片

 

ElasticSearch 报错 failed to obtain node locks

原文:https://www.cnblogs.com/sirdong/p/12095097.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!