+3 votes
in Databases by (40.5k points)

I am trying to load a Neo4j database dump from the Neo4j terminal, but I am getting the following error:

neo4j-admin: command not found 

How can I run this command?

1 Answer

+1 vote
by (349k points)
selected by
 
Best answer

You are getting the error because the neo4j-admin file is not present in your current directory. If you have installed neo4j correctly, you can find neo4j-admin in the bin folder.

So, try the following command on the neo4j terminal, and hopefully, it will work.

./bin/neo4j-admin load


...