elasticsearch 在centOS 启动报错 UnsupportedOperationException 异常

elasticsearch 在centOS 启动报错 UnsupportedOperationException 异常_第1张图片

java.lang.UnsupportedOperationException: 
	seccomp unavailable: CONFIG_SECCOMP not compiled into kernel, CONFIG_SECCOMP and CONFIG_SECCOMP_FILTER are needed

原因:

因为Centos6不支持SecComp,而ES默认bootstrap.system_call_filter为true进行检测,所以导致检测失败,失败后直接导致ES不能启动解决:
修改elasticsearch.yml 添加一下内容 :

bootstrap.memory_lock: false
bootstrap.system_call_filter: false

你可能感兴趣的:(ELK)