Neo4j:未知命令:使用
Neo4j: Unknown command :use
我正在关注这个文档:https://neo4j.com/developer/manage-multiple-databases
If we want to see the system information (view, create/delete, manage databases), we will need to switch to the system
database.
We can do that with the :use
command then telling it which database we want.
Command: :use system
Results:
但是当我在本地尝试时它说:
UnknownCommandError: Unknown command :use system
我做错了吗?
如您引用的手册所述:
Prerequisites
Please have Neo4j (version 4.0 or later) downloaded and
installed. It helps to have read the section on graph databases.
In Neo4j (v4.0+), we can create and use more than one active database
at the same time
而且您似乎使用的是 v3.5.1。因此问题。
请升级到 v4.0+ 以便能够管理多个数据库。
在 Neo4j 3.5.x 或以下版本中,您可以使用更改 neo4j.conf 配置 属性 dbms.active_database 来更改 dbms 将使用的数据库,这可能是对您来说比替换文件内容更容易。
我正在关注这个文档:https://neo4j.com/developer/manage-multiple-databases
If we want to see the system information (view, create/delete, manage databases), we will need to switch to the
system
database. We can do that with the:use
command then telling it which database we want.Command:
:use system
Results:
但是当我在本地尝试时它说:
UnknownCommandError: Unknown command :use system
我做错了吗?
如您引用的手册所述:
Prerequisites
Please have Neo4j (version 4.0 or later) downloaded and installed. It helps to have read the section on graph databases.
In Neo4j (v4.0+), we can create and use more than one active database at the same time
而且您似乎使用的是 v3.5.1。因此问题。 请升级到 v4.0+ 以便能够管理多个数据库。
在 Neo4j 3.5.x 或以下版本中,您可以使用更改 neo4j.conf 配置 属性 dbms.active_database 来更改 dbms 将使用的数据库,这可能是对您来说比替换文件内容更容易。