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.

About the Community
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 ?
View full article
I m facing this issue since i installed it kindly let me know how i can resolve this issue
View full article
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
View full article
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?
View full article
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?
View full article
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?
View full article
Top Contributors