Hi, I have a neo4j DB running on a Amazon EC2 instance I was attempting to take dump file of it. I SSH into the instance running the DB and used cypher-shell to shut down the DB in order to take the dump file using the following commands
# open cypher-shell
cypher-shell username - myusername
password - mypassword
# get on system database :use system # Stop db from running STOP DATABASE db_name;
However I accidentally exited from the shell in order to take the dump file (this should have actually been done in a separate window)
When I tried to get back into cypher-shell in order to start the instance again I get the following message:
Unable to get a routing table for database 'mydb' because this database is unavailable
How can I restart this DB preferably from the command line?
I tried to find the log files using journalctl --unit=neo4j but it returns no entries. Any assistance would be greatly appreciated. Thank you!