我想使用neo4j。我从archlinux AUR安装了neo4j-community 2.3.2-1,当我jsonData = new
{
total = totalPages,
page,
records = totalRecords,
rows = (
from Details in ListData
select new
{
i = 1,
cell = new string[] {
Details.COLUMN10,
Details.COLUMN3,
Details.COLUMN1,
Details.COLUMN7,
Details.COLUMN9
}
}
).ToArray()
时,一切正常。但是当我想在后台使用neo4j console
启动服务器时,服务器将不会以错误消息开头:
neo4j start
服务器没有尝试启动或120秒,更像是2秒。另外我callot在任何地方找到日志文件。
谷歌告诉我试用WARNING: Max 1024 open files allowed, minimum of 40 000 recommended. See the Neo4j manual.
Starting Neo4j Server...process [20559]... waiting for server to be ready... Failed to start within 120 seconds.
Neo4j Server may have failed to start, please check the logs.
当我执行此命令时:
neo4j start-no-wait
但是没有启动任何内容,并且webclient不能像我使用WARNING: Max 1024 open files allowed, minimum of 40 000 recommended. See the Neo4j manual.
Starting Neo4j Server...process [21088]...Started the server in the background, returning...
时那样工作。
所以我的基本问题是:为什么neo4j console
有效,neo4j console
没有?如何在后台启动neo4j并在不中断进程的情况下再次停止它?
编辑: console.log说:
neo4j start