Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Neo4j not running

Tags:

neo4j

When I run the command "neo4j status" or "neo4j stop" it says "Neo4j not running" however the browser is accessible and I can perform all transactions on the database. Also the database doesn't change when I change it on the neo4j.conf and run neo4j start.

like image 772
Elshaimaa Ali Avatar asked Oct 06 '16 23:10

Elshaimaa Ali


People also ask

How do I know if neo4j is running?

bin/neo4j status is the command you are looking for. Martin J. c:\neo4j\bin\neo4j status gets 'Neo4j is not running. ' if it's only running as a console.

Can not connect to neo4j?

Troubleshooting steps: Ensure that the address is correct. Ensure that if the server is listening for bolt connections on a port other than 7687, that you pass the port explicitly to your client (e.g. cypher-shell) or other program you have written. Ensure that firewall rules do not prohibit traffic on the bolt port.

How do I start a neo4j service?

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 .

How do I connect my neo4j Browser?

Neo4j Browser is the easiest way to access a Neo4j database. To establish a connection, you enter the DBMS URL, the name of the database you want to connect, and the user credentials. You can also use the :server command to manage the connection to Neo4j. For more information, see Manage connection commands.


1 Answers

Thanks Govind, you gave me a start, I think I found the problem, for a reason that I don't know the neo4j is running with a certain pid different than the one generated in the /var/run/neo4j/neo4j.pid, when I overwrote the neo4j.pid with the one running I was able to stop the neo4j and start a clean process.

like image 90
Elshaimaa Ali Avatar answered Oct 03 '22 00:10

Elshaimaa Ali