NEuler Problem with APOC Plugin

Hi @mark.needham,

I'm having problems getting NEuler to work.

APOC Metadata Procedure Unavailable

This application uses the apoc.meta.schema procedure, which is currently unavailable because it is sandboxed and has dependencies outside of the sandbox. Sandboxing is controlled by the dbms.security.procedures.unrestricted setting.

You can add the following entry to your Neo4j configuration file to allow access:

dbms.security.procedures.unrestricted=,jwt.security.,gds.,apoc.*

Even though I did this still get this error message. Please guide me with how can I resolve this issue

Please can you help?

What is the entry in your config? Also, did you restart your server?

I didn't restart the server only restarted neo4j using 'sudo systemctl restart neo4j'

I tried restarting the server and got the same results.
image
I have placed the APOC file here in root folder in server where GDS file is also placed. I hope this will help

Yhe warning states the issue is with the apoc.meta.schema procedure. Your allow list is set to allow a select couple of apoc procedures, which will make the remaining unavailable. Try commenting this setting out and restart the neo4j server to retry. You can fix this configuration if it works and you really want to limit a library’s use to a select set of procedures, otherwise leave it commented out.

Thanks Gary, It worked :raised_hands:

1 Like