I’m using Debian 9.9 and the version of Neo4j is 4.0. I’m having problems creating a new database using the neo4j browser. The instruction I followed is this.
I have tried the following Cypher command:
create database myNewDatabase
However, an error pops up like this:
Neo.ClientError.Statement.NotSystemDatabaseError
Unsupported administration command: create database myNewDatabase
Please let me know what the error message means and how I can solve it. Thx in advance:-)
2
Answers
I think I've got the answer to my question. It turns out that my license (the community edition) is not supported for working with multiple databases. An alternative could be this.
In v. 4 (release Feb. 2020) of the professional version of Neo4j, it’s easy to create new databases. Documentation
In the community edition, it takes a hack:
Note: the above steps will create a folder named
mydatabase
(or whatever name you used), in NEO4J_HOMEdatadatabases , and it will populate its contents.I personally think that switching between databases is such a BASIC operation that Neo4j ought to make it easily accessible in the Community edition!