2016-01-21 230 views
1

我必须为我的rails应用程序使用neo4j。 所以我开始安装neo4j服务器。我按照步骤在Linux上安装here错误无法启动Neo服务器

但是当我运行

./bin/neo4j console 

它给

ERROR Failed to start Neo Server on port [unknown port] Bad value 'conf/neo4j-http-logging.xml' for setting 'org.neo4j.server.http.log.config': HTTP log directory [/opt/neo4j-community-2.3.2/data/log] is not writeable. 

org.neo4j.graphdb.config.InvalidSettingException: Bad value 'conf/neo4j-http-logging.xml' for setting 'org.neo4j.server.http.log.config': HTTP log directory [/opt/neo4j-community-2.3.2/data/log] is not writeable. 

我无法启动的Neo4j server.Help我如何解决它。 在此先感谢。

回答

1

该错误消息很清楚提到的根本原因:

HTTP日志目录[/opt/neo4j-community-2.3.2/data/log]是不可写。

因此,检查文件权限并修正它们,以便运行neo4j的用户可以写入该目录。

相关问题