在 grapheneDB 上正确配置图形数据科学插件
Correctly provisioning the graph data science plugin on grapheneDB
我在 neo4j 桌面本地有一个完全与插件一起工作的图表。我已经在我的 grapheneDB 实例中复制了这张图中的所有内容。我无法使用 gds 程序,因为出现错误:
gds.proc... is unavailable because it is sandboxed and has dependencies outside of the sandbox. Sandboxing is controlled by the dbms.security.procedures.unrestricted setting. Only unrestrict procedures you can trust with access to database internals.
我知道要解决这个问题,我需要将这两行添加到 config/properties 文件中:
dbms.security.procedures.unrestricted=apoc.*,gds.*
dbms.security.procedures.whitelist=apoc.*,gds.*
我只是不知道如何在 grapheneDB 上做到这一点,我已经阅读了我能找到的所有文档。
我尝试添加 gds 插件,方法是将 jar 文件添加为存储过程,然后还作为服务器扩展添加一个 zip 文件,其中包含 jar 文件和上面在 neo4j 中提到的两个配置行- server.properties 文件。
当添加为服务器扩展时,我可以告诉 neo4j 根本没有找到 gds 插件。我只是缺少属性文件中的一个位置吗?还是我在存储过程上传方法中遗漏了一些明显的东西?
使用开发免费层 graphenedb、Neo4j 社区版 3.5.17 和图形数据科学 1.1.1
谢谢
在与石墨烯支持来回几周之后,配置更改已经完成。他们很快将添加对 GDS 插件的支持作为其基本映像的一部分,但在那之前您可能仍需要请求他们为您修补数据库并将其添加为存储过程。
我在 neo4j 桌面本地有一个完全与插件一起工作的图表。我已经在我的 grapheneDB 实例中复制了这张图中的所有内容。我无法使用 gds 程序,因为出现错误:
gds.proc... is unavailable because it is sandboxed and has dependencies outside of the sandbox. Sandboxing is controlled by the dbms.security.procedures.unrestricted setting. Only unrestrict procedures you can trust with access to database internals.
我知道要解决这个问题,我需要将这两行添加到 config/properties 文件中:
dbms.security.procedures.unrestricted=apoc.*,gds.*
dbms.security.procedures.whitelist=apoc.*,gds.*
我只是不知道如何在 grapheneDB 上做到这一点,我已经阅读了我能找到的所有文档。
我尝试添加 gds 插件,方法是将 jar 文件添加为存储过程,然后还作为服务器扩展添加一个 zip 文件,其中包含 jar 文件和上面在 neo4j 中提到的两个配置行- server.properties 文件。
当添加为服务器扩展时,我可以告诉 neo4j 根本没有找到 gds 插件。我只是缺少属性文件中的一个位置吗?还是我在存储过程上传方法中遗漏了一些明显的东西?
使用开发免费层 graphenedb、Neo4j 社区版 3.5.17 和图形数据科学 1.1.1
谢谢
在与石墨烯支持来回几周之后,配置更改已经完成。他们很快将添加对 GDS 插件的支持作为其基本映像的一部分,但在那之前您可能仍需要请求他们为您修补数据库并将其添加为存储过程。