Hi
in my cypher query i have apoc.load.csv("%s",{}) where file path is correct
But i am getting a RuntimeError as -> Import from files not enabled, please set apoc.import.file.enabled=true in your apoc.conf; Error code 'Neo.ClientError.Procedure.ProcedureCallFailed'
but i dont have any apoc.conf file , it is embedded db
for that I change the setting as --'
Neo4jConfigurator configurator = Neo4jBuilders
.newInProcessBuilder()
.withDisabledServer()
.withConfig(GraphDatabaseSettings.procedure_unrestricted, List.of("apoc."))
.withConfig(GraphDatabaseSettings.procedure_whitelist, List.of("apoc.import."))
in GraphDatabaseSettings configurator
Still facing same error
any idea developers ?
Hi, I've successfully passed the Neo4j Certified Professional exam. I can see badge on the community "portal but I didn't received any email with PDF and T-shirt as stated during exam protocol.
Any help on this?
BR,
Omar
Is there a Cypher editor module based on the new Monaco-based browser that can be imported into custom web applications? Something similar to the existing CodeMirror based CypherEditor but using the new Monaco editor?
I install the plugins APOC 4.3.0.3 using Neo4j Desktop. However I need to fix the file apoc.conf according to errors. But I can't find it. I want to use it to load my local json file. How should I do?
Hi All,
An EC2 instance running two neo4j docker containers, as follow:
First one:
sudo docker run --name application -p 3001:7474 -p 3002:7687 -d -v /home/ubuntu/neo4j-application:/data -v /home/ubuntu/application/logs:/logs -v /home/ubuntu/application/import:/var/lib/neo4j/import -v /home/ubuntu/application/plugins:/plugins --env NEO4J_AUTH=neo4j/'password' --env NEO4JLABS_PLUGINS='["graph-data-science"]' neo4j:4.3.0
Second one:
sudo docker run --name data -p 3050:7474 -p 3060:7687 -d -v /home/ubuntu/neo4j-data:/data -v /home/ubuntu/data/logs:/logs -v /home/ubuntu/data/import:/var/lib/neo4j/import -v /home/ubuntu/data/plugins:/plugins --env NEO4J_AUTH=neo4j/'password' --env NEO4JLABS_PLUGINS='["graph-data-science"]' neo4j:4.2.7-community
You notice here the difference in version between them, the second one works well without any problem, but the first container has a lot of problems.
The first container runs fine but after a period of time the problem appears, it couldn't access the database.
I thought the issue was the version of the first container, I tried to run the container with neo4j:4.2.7-community but it failed.
Why I can't run the container with another version? and why the container can't access the database?