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

It's here in the readme. Quoting:

Manual Installation

Go to Release 5.3.1 · neo4j-contrib/neo4j-apoc-procedures · GitHub 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.*

7 Likes

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.

2 Likes

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

This post explains it better than the github page itself.