2016-09-08 59 views
1

Neo4j 3.0.4企業版試圖安裝服務或啓動其顯示錯誤。在不同的機器上也嘗試過了,如何解決這個問題?Neo4j 3.0.4企業版試用版未能在Windows中啓動

E:\Neo4j\neo4j-enterprise-3.0.4\bin>neo4j.bat install-service -verbose 
VERBOSE: Neo4j Root is 'E:\Neo4j\neo4j-enterprise-3.0.4' 
VERBOSE: Neo4j Server Type is 'Enterprise' 
VERBOSE: Neo4j Version is '3.0.4' 
VERBOSE: Neo4j Database Mode is '' 
VERBOSE: Install command specified 
VERBOSE: Neo4j Windows Service Name is neo4j 
VERBOSE: Java detected at 'C:\Program Files\Java\jdk1.8.0_92\jre\bin\java.exe' 
VERBOSE: Executing C:\Program Files\Java\jdk1.8.0_92\jre\bin\java.exe -version 
VERBOSE: Java version response: java version "1.8.0_92" 
Java(TM) SE Runtime Environment (build 1.8.0_92-b14) 
Java HotSpot(TM) 64-Bit Server VM (build 25.92-b14, mixed mode) 
VERBOSE: Java Version detected as 1.8.0_92 
VERBOSE: Neo4j Windows Service Name is neo4j 
VERBOSE: Reading JVM settings from neo4j-wrapper.conf 
Invoke-Neo4j : Method invocation failed because [System.Object[]] doesn't contain a method named 'contains'. 
At line:1 char:221 
+ try { Unblock-File -Path 'E:\Neo4j\neo4j-enterprise-3.0.4\bin\Neo4j-Management\*.*' -ErrorAction 'SilentlyContinue' } catch {};Import-Module 'E:\Neo4j\neo4j-enterprise-3.0.4\bin\Neo4j-Management.psd1'; Exit (Invoke-Neo4j <<<< install-service -verbose) 
    + CategoryInfo   : NotSpecified: (:) [Write-Error], WriteErrorException 
    + FullyQualifiedErrorId : Microsoft.PowerShell.Commands.WriteErrorException,Invoke-Neo4j 

回答

3

在bin /的Neo4j-管理文件夾,合併 - Neo4jJavaSettings.ps1文件都有一行68#語法錯誤:

If (-not $Source.contains($thisSetting)) { 

應該

If (-not $Source -contains $thisSetting) { 

爲了記錄,這在社區版中發生,所以這兩個版本似乎都有問題。

+0

它的作品謝謝,希望neo4j將解決這個問題 – Jeevanantham

+0

嗨,你可以請檢查我的相關帖子?謝謝! http://stackoverflow.com/questions/40639088/neo4j-3-0-7-enterprise-trial-version-failed-to-start-in-windows – guzu92

+0

我有3.0.3並沒有Merge-Neo4jJavaSettings.ps1文件,但我得到這個確切的錯誤。 –