Elasticsearch6.3 max number of threads [2048] for user [*] is too low, increase to at least [4096]异常
根据linux系统差异,有时候需要来点终极解决方案
新建: /etc/security/limits.d/test-limits.conf
cat>>test-limits.conf
然后加下内容:
* soft nofile 65536
* hard nofile 131072
* soft nproc 4096
* hard nproc 4096
ctrl+d保存即可;
然后重启服务器即可;
终于OK;