cancel
Showing results for 
Search instead for 
Did you mean: 

Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.

How can I install APOC Library for Neo4j ( version:3.4.6 / edition : Community)

All the answers that I found are talking about how to install APOC on desktop version . I need your help

1 ACCEPTED SOLUTION

It's here in the readme. Quoting:

Manual Installation

Go to http://github.com/neo4j-contrib/neo4j-apoc-procedures/releases/latest to find the latest release and download the binary jar to place into your $NEO4J_HOME/plugins folder.

Manual Configuration

Procedures that use internal APIs have to be allowed in $NEO4J_HOME/conf/neoj4.conf with,
e.g. dbms.security.procedures.unrestricted=apoc.trigger.*,apoc.meta.*
for security reasons (or apoc.* for all).

You can also whitelist procedures and functions in general to be loaded using: dbms.security.procedures.whitelist=apoc.coll.*,apoc.load.*

View solution in original post

5 REPLIES 5

It's here in the readme. Quoting:

Manual Installation

Go to http://github.com/neo4j-contrib/neo4j-apoc-procedures/releases/latest to find the latest release and download the binary jar to place into your $NEO4J_HOME/plugins folder.

Manual Configuration

Procedures that use internal APIs have to be allowed in $NEO4J_HOME/conf/neoj4.conf with,
e.g. dbms.security.procedures.unrestricted=apoc.trigger.*,apoc.meta.*
for security reasons (or apoc.* for all).

You can also whitelist procedures and functions in general to be loaded using: dbms.security.procedures.whitelist=apoc.coll.*,apoc.load.*

thanks man ! shall I create the folder plugins if I don't find it here ? (PS : I just created it here )

That should work, but it's plugins (plural), not plugin.

Yes that's what I did after posting here ! it works now 🙂 thanks

pborah88
Node Clone

This post explains it better than the github page itself.