目前ulimit -n显示10000.我想将其增加到40000.我编辑了“/etc/sysctl.conf”并将fs.file-max = 40000.我还编辑了/etc/security/limits.conf并更新了硬和软值.但仍然ulimit显示10000.完成所有这些更改后,我重新启动了我的笔记本电脑.我可以访问root密码.
usr_name@usr_name-lap:/etc$/sbin/sysctl fs.file-max
fs.file-max = 500000
在/etc/security/limits.conf中添加了以下行 –
* soft nofile 40000
* hard nofile 40000
我还在/etc/pam.d/su-中添加了以下行
session required pam_limits.so
我已经尝试过在其他论坛上提供的所有可能的方式,但我可以达到最大限制10000,不超过这个.可能是什么问题?
我正在进行此更改,因为neo4j会抛出最大打开文件限制达到错误.
解决方法:
我正在使用Debian,但这个解决方案应该可以正常使用Ubuntu.
您必须在neo4j-service脚本中添加一行.
这是我做的:
nano /etc/init.d/neo4j-service
Add « ulimit –n 40000 » just before the start-stop-daemon line in the do_start section
请注意,我使用的是2.0版企业版.
希望这会帮助你.