ubuntu – neo4j和最大打开的文件

前端之家收集整理的这篇文章主要介绍了ubuntu – neo4j和最大打开的文件前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我在ubuntu上使用neo4j 1.8M06.当我启动它,我得到这个警告:
WARNING: Max 1024 open files allowed,minimum of 40 000 recommended.

这是什么意思?如果需要,我该如何调整此设置?

我在这个问题上看到了this thread,但仍然无法理解.

这意味着您只能打开“1024”(默认)文件进行写入.但NEO4J建议这个值为40K.这可以通过如下所述的修复来实现.

编辑/etc/security/limits.conf并添加以下两行:

root   soft    nofile  40000
root   hard    nofile  40000

neo4j在这里推荐“neo4j”代替“root”.那不行.

您还需要编辑/etc/pam.d/common-session*并将以下行添加到最后:

session @R_403_103@ pam_limits.so

是的,最后你必须重新启动NEO4J.

sudo service neo4j-service restart

参考:NEO4J server setup

原文链接:https://www.f2er.com/ubuntu/349128.html

猜你在找的Ubuntu相关文章