neo4j apoc import/export 不工作。如何修改neo4j.conf文件?

neo4j apoc import/export not working. How to modify the neo4j.conf file?

我是neo4j的初学者。我正在尝试以 .graphml 格式导出一个简单的图形,以便能够在 Gephi 中将其可视化。尽管 apoc 程序似乎已成功安装,但像 CALL apoc.export.graphml.all("C:/path/to/folder/file.graphml",{}) 这样的命令会生成以下错误:

apoc.export.graphml.all is not available due to having restricted access rights, check configuration*.

我试图修改 neo4j.conf 文件(我将其复制并粘贴到 Documents 中默认图形数据库文件夹的 conf 文件夹中)添加 dbms.security.procedures.unrestricted=apoc,关闭并重新启动 neo4j 但没有成功.

我用的是Windows10,安装的是NEO4J 3.2.1社区版(安装版)。任何帮助表示赞赏。

I tried to modify the "neo4j.conf" file (which I copied and pasted into the conf folder of the default graph database folder in Documents) adding "dbms.security.procedures.unrestricted=apoc.*", shutting down and restarting neo4j with no success.

根据 the documentation,Windows 安装的 neo4j.conf 文件的正确文件位置是 %APPDATA%\Neo4j Community Edition\neo4j.conf

所以编辑上面的文件并在其中放入行 dbms.security.procedures.unrestricted=apoc.*".