I'm trying to install Neo4j(1.8) but i faced a problem when starting the service.
after extracting the zip file I went directly to the bin folder and executed the batch file:
Neo4J.bat install
[SC] CreateService SUCCESS
[SC] StartService Failed 1053:
The service did not respond to the start or control request in a timely fashion.
I was so graphDB enthusiastic so I went to the shell and created new db hundreds of nodes and relationships and I spent nearly a week working on that shell, everything seems great, until I read about the WebService and the REST API so now I need the service to run. RTFM Case!
digging a bit... I found that I don't have neo4j-server.properties file into the conf directory, the questions:
1- is that file responsible for the service start failure?
2- should I build that file manually, and what are the mandatory params?
3- is this a normal behavior or the zip file was corrupted?
PS: I tried to create the props file, as follows:
org.neo4j.server.database.location=D:/Neo4J/db/Mydb/
org.neo4j.server.webserver.port=7474
org.neo4j.server.webserver.address=0.0.0.0
wrapper.java.additional.3=-Djava.net.preferIPv4Stack=true
org.neo4j.server.db.tuning.properties=neo4j.properties
but the service refuse to start!
Cheers,
Ob.
neo4j.bat consoleto see a bit more? If that is ok, then the service install is failing in some way ... what windows version? – Peter Neubauer Oct 18 '12 at 14:09neo4j.bat consoleyou should be able to see the webadmin at localhost:7474 ? – Peter Neubauer Nov 4 '12 at 4:31