-
Hey all! New to Amundsen and I understand that the installation steps are here: I then modified the existing ...
container_name: neo4j_amundsen
environment:
- NEO4J_AUTH=...
- NEO4J_apoc_export_file_enabled=true
- NEO4J_apoc_import_file_enabled=true
- NEO4J_apoc_import_file_use__neo4j__config=true
- NEO4JLABS_PLUGINS='["apoc"]'
ulimits:
...
volumes:
- ./example/docker/neo4j/conf:/var/lib/neo4j/conf:Z
- ./example/docker/neo4j/plugins:/var/lib/neo4j/plugins:Z
- ./example/backup:/backup:Z
- neo4j_data:/data AFAIK, the Relevant Information:
Current Steps:
I have a hunch its something to do with Would appreciate any guidance or pointers. Cheers! |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments
-
Relevant SO thread: https://stackoverflow.com/questions/36897634/there-is-no-procedure-with-the-name-apoc-help-registered-for-this-database-ins AFAIK this corresponds to dbms.directories.plugins=/var/lib/neo4j/plugins Looks like its a corresponding https://community.neo4j.com/t/cannot-install-apoc-3-4-0-4-on-neo4j-community-3-5-1/4071/4 |
Beta Was this translation helpful? Give feedback.
-
OKAY so I have figured out the issue after following the following steps, I hope this resolves any issues that you may have:
|
Beta Was this translation helpful? Give feedback.
-
You can configure the extensions provided by neo4j labs by passing the |
Beta Was this translation helpful? Give feedback.
OKAY so I have figured out the issue after following the following steps, I hope this resolves any issues that you may have:
amundsen/docker/neo4j/plugins
neo4j:4.1.x
and is stuck onneo4j:3.5.26
, we will needapoc 3.5.0.17
(latest as of April 2022)..jar
downloaded bycurl
results in a redirect. Please ensure you check thesha1sum
of the downloaded file here. For my specific version, I was expectedsha1sum=dc66fb7f967bd4e6a96fd007b76176b1e775ab0e
.curl -O -L https://github.com/neo4j-contrib/neo4j-apoc-procedures/releases/download/3.5.0.17/apoc-3.5.0.17-all.jar
in…