ElasticSearch报错Too many open files

戚峻
2023-12-01

ubuntu14.04

ElasticSearch-2.3.5

ElasticSearch是ElasticSearch用户启动的,

ulimit -a 的结果是1024

但是没有改变的limits.conf如下:

shell> cat /etc/security/limits.conf

* soft nofile 65535
* hard nofile 65535

后来发现不能使用通配符*

root用户必须注明用户

root soft nofile 65535
root hard nofile 65535

也就是写成上面那样,重新登录不需要重启,ulimit -a可以看到文件打开数已经是65535了,这就是limits.conf不生效的原因,注意ubuntu一定不能直接用*


 类似资料: