小诺文档中心 小诺文档中心
首页
小诺博客 (opens new window)
DevOps
云原生
技术
更多
网址导航
关于
  • 分类
  • 标签
  • 归档
GitHub (opens new window)

kevin

运维界的菜鸟
首页
小诺博客 (opens new window)
DevOps
云原生
技术
更多
网址导航
关于
  • 分类
  • 标签
  • 归档
GitHub (opens new window)
  • 踩坑

    • mysql

      • mysqldump备份失败以及解决方法汇总
      • MySQL报错ERROR1872(HY000)Slave failed to initialize
      • mysql错误代码
      • mysql负载高的解决
      • mysql损坏修复
      • 修改innodb_page_size值后mysql不能启动
      • mysql优化
    • oracle

    • yum故障处理
    • centos7启动时出现dracut-initqueue timeout
    • dell笔记本安装centos系列报lspcon init failed错误
    • ElasticSearch启动报错,bootstrap checks failed
    • NAVICAT PREMIUM 12闪退问题
    • vsftpd用户设置为nologin无法登录
  • 技术文章

  • 运维文档

  • 计算机网络

  • 开源应用

  • JAVA应用

  • 技术
  • 踩坑
xiaonuo
2022-06-19

ElasticSearch启动报错,bootstrap checks failed

启动失败,检查没有通过,报错

2018-05-18T17:44:59,658][INFO ][o.e.b.BootstrapChecks    ] [gFOuNlS] bound or publishing to a non-loopback address, enforcing bootstrap checks
ERROR: [2] bootstrap checks failed
[1]: max file descriptors [4096] for elasticsearch process is too low, increase to at least [65536]
[2]: max virtual memory areas vm.max_map_count [65530] is too low, increase to at least [262144]
[1]: max file descriptors [65535] for elasticsearch process is too low, increase to at least [65536]
1
2
3
4
5

编辑 /etc/security/limits.conf,追加以下内容;

soft nofile 65536
hard nofile 65536
soft nproc 4096
hard nproc 4096
1
2
3
4

此文件修改后需要重新登录用户,才会生效

[2]: max virtual memory areas vm.max_map_count [65530] is too low, increase to at least [262144]

[1]: max number of threads [1024] for user [esuser] is too low, increase to at least [2048]
1
2
3
cat /etc/security/limits.d/90-nproc.conf 

soft    nproc     4096

sed -i 's/1024/4096/' /etc/security/limits.d/90-nproc.conf
1
2
3
4
5

编辑 /etc/sysctl.conf,追加以下内容: vm.max_map_count=655360 保存后,执行: sysctl -p

重新启动,成功。

bin/elasticsearch &

dell笔记本安装centos系列报lspcon init failed错误
NAVICAT PREMIUM 12闪退问题

← dell笔记本安装centos系列报lspcon init failed错误 NAVICAT PREMIUM 12闪退问题→

最近更新
01
postgresql安装
06-24
02
oracle笔记
06-24
03
opengauss笔记
06-24
更多文章>
Theme by Vdoing | Copyright © 2019-2022 kevin | 小诺运维
  • 跟随系统
  • 浅色模式
  • 深色模式
  • 阅读模式
×