java es 5.0.0_ElasticSearch 5.0.0 安装部署常见错误或问题

memory locking requested for elasticsearch process but memory is not locked

配置了bootstrap.memory_lock:true

https://www.elastic.co/guide/en/elasticsearch/reference/current/_memory_lock_check.html

max number of threads [1024] for user [admin] is too low, increase to at least [2048]

ulimit -u 2048

nproc –>/etc/security/limits.conf

https://www.elastic.co/guide/en/elasticsearch/reference/master/max-number-of-threads.html

[WARN ][o.e.b.JNANatives ] unable to install syscall filter:

Java.lang.UnsupportedOperationException:

seccomp unavailable: requires kernel 3.5+ with CONFIG_SECCOMP and

CONFIG_SECCOMP_FILTER compiled in

常见异常

注意:yml配置文件的值前有一个空格隔开

max number of threads [1024] for user [admin] is too low, increase to at least [2048]

原因:用户允许最大线程数首先

vi bin/elasticsearch

ulimit -u 2048 //仅供测试使用

Warning: Ignoring JAVA_OPTS=…….

Please pass JVM parameters via ES_JAVA_OPTS instead

vi bin/elasticsearch

添加如下配置项:

JAVA_HOME=”/export/servers/jdk1.8.0_60”

JAVA_OPTS=”“

JAVA_OPTS配置为空,是为了不受系统配置的环境变量的影响

can not run elasticsearch as root

不能以root用户启动ES服务器。非要以root用户运行?

配置 -Des.insecure.allow.root=true

对于5.X,在config/jvm.options配置文件中,添加-Des.insecure.allow.root=true

内存锁定:

解决方法1:配置 config/elasticsearch.yml ,注释掉以下内容

#bootstrap.memory_lock: true

解决方法2:配置:/etc/security/limits.conf,

admin soft memlock unlimited

admin hard memlock unlimited

system call filters failed to install; check the logs and fix your configuration or disable system call filters at your own risk

Your kernel does not support seccomp.

Elasticsearch attempts to utilize seccomp by default (via the setting bootstrap.system_call_filter).

Starting in 5.2.0, if you’re in production mode,

bootstrap.system_call_filter is enabled, and initializing seccomp fails,

then Elasticsearch will refuse to bootstrap.

You either have to migrate to a kernel that supports seccomp, or disable bootstrap.system_call_filter.

Centos6不支持SecComp,而ES5.2.0默认bootstrap.system_call_filter为true

禁用:在elasticsearch.yml中配置bootstrap.system_call_filter为false,注意要在Memory下面:

bootstrap.memory_lock: false

bootstrap.system_call_filter: false

配置IP和http端口,TCP端口默认在HTTP端口上加100

network.host: 192.168.179.20

http.port: 9201

path.conf is not a recognized option

之前的配置: –path.conf=ESCONF修改为:−Epath.conf={ES_CONF}

unknown setting [path.plugins]

node settings must not contain any index level settings

Since elasticsearch 5.x index level settings can NOT be set on the nodes

configuration like the elasticsearch.yaml, in system properties or command line

arguments.

curl -XPUT ‘http://localhost:9200/_all/_settings?preserve_existing=true’ -d ‘{

“index.number_of_shards” : “3”

}’

curl -XPUT ‘http://localhost:9200/_all/_settings?preserve_existing=true’ -d ‘{

“index.mapper.dynamic” : “false”,

“index.translog.durability” : “async”,

“index.translog.sync_interval” : “30s”

}’

即以index开头的配置删除。

unknown setting [bootstrap.mlockall]

修改为: bootstrap.memory_lock: true

unknown setting [action.disable_delete_all_indices]

新配置:action.destructive_requires_name: true

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值