Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to solve `neo4j: command not found` error

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?

like image 647
cammil Avatar asked Jun 29 '13 12:06

cammil


People also ask

How do I start a Neo4j server?

Neo4j can also be run as a Windows service. Install the service with bin\neo4j install-service , and start it with bin\neo4j start . The available commands for bin\neo4j are: help , start , stop , restart , status , install-service , uninstall-service , and update-service .


1 Answers

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
like image 50
James Holderness Avatar answered Sep 28 '22 10:09

James Holderness