2016-01-21 269 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的用戶可以寫入該目錄。

相關問題