Neo4j StartService Failed 1053

风流意气都作罢 提交于 2019-12-10 18:32:08

问题


recentely I met a problem about Neo4j. As I start Neo4j Server,it was installed successfully,but when i start the service,error comes,it reports: [SC]StartService FAILED:1053 The service did not respond to the start or control request in a timely fashion.

Then I use : Neo4j.bat console ,it works well,but i still can't access localhost:7474

my dev env is: Neo4j-community-1.9.M01 and the os is Win7 64bit

Anyone knows the reason? Many Thanks


回答1:


Fire up powershell and head to the /bin directory in your Neo4j bundle. Run the following command:

PS ..\neo4j-community-1.9.M03\bin> ./Neo4j.bat console

If you get an error that says something like, "Unable to access jarfile C:\PROGRA~1\NEO4J-~1.1\bin\windows-service-wrapper-*.jar," then a quick fix is to open /bin/base.bat with any text editor (probably notepad) and then change this line:

set wrapperJarFilename=windows-service-wrapper-*.jar

to this line:

set wrapperJarFilename=windows-service-wrapper-4.jar

I'm not sure why the wildcard isn't working, but this allowed me to install Neo4j. I found the solution here: https://github.com/neo4j/neo4j/issues/391




回答2:


I had a similar problem - I started Neo4j Server,it was installed successfully,but later on as I tried to start, it reported... : [SC]StartService FAILED:1053 The service did not respond to the start or control request in a timely fashion. I found that under "\neo4j-community-1.9.2\data\graph.db" the file "tm_tx_log.1" was not deleted. I deleted the file & it started fine with bin>Neo4j.bat start



来源:https://stackoverflow.com/questions/13576778/neo4j-startservice-failed-1053

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!