0

When I try to start the server on windows: Open a windows command prompt, go to the neo4j bin directory and execute Neo4j.bat.

I get this error message:

Error: Unable to access jarfile C:\app\NEO4J-~1.2\bin\windows-service-wrapper-*.jar

What do I need to change in the bat files that it works?

4

1 回答 1

4

将 * 替换为您下载的 neo4j 版本。

  1. 进入 bin 目录
  2. 打开base.bat文件并寻找类似的东西set wrapperJarFilename=windows-service-wrapper-*.jar
  3. 将 替换为*jar 文件的版本windows-service-wrapper-4.jar(此 jar 文件将在您的 bin 目录中)。在我的情况下,版本是 4 所以替换*4.
于 2013-05-10T14:35:30.347 回答