我在ubuntu 16.04中使用neo4j 3.2.6,当我尝试启动它时出现此错误:
WARNING: Max 1024 open files allowed, minimum of 40000 recommended. See the Neo4j manual.
/usr/share/neo4j/bin/neo4j: ligne 411: /var/run/neo4j/neo4j.pid: Aucun fichier ou dossier de ce type
我尝试了this解决方案,但仍然是同样的错误。
答案 0 :(得分:0)
消息警告:允许最多1024个打开文件,建议最少40000个。查看Neo4j手册是一个警告,而不是错误。它与Linux 文件描述符和 ulimit 相关。请参阅Neo4j WARNING: Max 1024 open files allowed, minimum of 40 000 recommended. See the Neo4j manual。
日志中是否有错误消息?
答案 1 :(得分:0)
你可以使用
ulimit -u 40000
增加已打开进程的数量。 OR
在/etc/security/limits.conf中添加以下行 -
neo4j soft nofile 40000
neo4j hard nofile 40000
希望这有帮助