neo4j-admin
all
Manage and administer a Neo4j DBMS (Database Management System). See also: `cypher-shell`, `mysqld`.
More info →Examples (7)
Start the DBMS
neo4j-admin server startStop the DBMS
neo4j-admin server stopSet the initial password of the default `neo4j` user (prerequisite for the first start of the DBMS)
neo4j-admin dbms set-initial-password database_nameCreate an archive (dump) of an offline database to a file named `database_name.dump`
neo4j-admin database dump --to-path=path/to/directory database_nameLoad a database from an archive named `database_name.dump`
neo4j-admin database load --from-path=path/to/directory database_name --overwrite-destination=trueLoad a database from a specified archive file through `stdin`
neo4j-admin < path/to/file.dump database load --from-stdin database_name --overwrite-destination=trueDisplay help
neo4j-admin --helpmade by @shridhargupta | data from tldr-pages