zoukankan      html  css  js  c++  java
  • ElasticSearch 6.5.4 启动三个错误

    错误1:max file descriptors [4096] for elasticsearch process is too low

    进程分配的分件太少

    vi /etc/security/limits.conf 添加如下

    * soft nofile 65536
    * hard nofile 65536

    错误2:max number of threads [3818] for user [chen] is too low, increase to at least [4096]

    vi /etc/security/limits.conf 添加如下

    * soft nproc 4096
    * hard nproc 4096

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

    vi /etc/sysctl.conf 加入

    vm.max_map_count=262144

    执行命令 sysctl -p ,重新登录用户生效

    OK

  • 相关阅读:
    P1007 独木桥
    P1789 【Mc生存】插火把
    P2658 汽车拉力比赛
    1959 拔河比赛
    P1936 水晶灯火灵
    websocket
    瀑布流布局
    Router
    图片占位
    单位
  • 原文地址:https://www.cnblogs.com/cracker13/p/11649460.html
Copyright © 2011-2022 走看看