Reputation: 9939
I followed the steps on debian - stable installation instructions verbatim.
However, when I run the last step I get:
cammil@cammil-desktop:~$ neo4j start
neo4j: command not found
How do I resolve this?
Upvotes: 5
Views: 4077
Reputation: 97
You probably don't have . in your PATH, so you need to do ./neo4j start. From Here
Upvotes: 0
Reputation: 23021
You can start the neo4j server with:
service neo4j-service start
But, if you are able to access localhost:7474, then the server has already been started. You can check the status with:
service neo4j-service status
Or if you want to stop it:
service neo4j-service stop
Upvotes: 5