Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.
12-17-2019 12:18 AM
I call the query:
CALL apoc.export.csv.all(
"/tmp/1.csv",
{d:'\t'})
And a file isn't created.
The result is:
If I tried to save a file in another place, see the message:
Neo.ClientError.Procedure.ProcedureCallFailed: Failed to invoke procedure apoc.export.csv.all
: Caused by: java.io.FileNotFoundException: /etc/1.csv (Permission denied)
The database is started through docker. How could this problem be solved?
12-17-2019 04:24 AM
use call apoc.export.csv.all("all.csv", {d:'\t'})
and the file will end up in /var/lib/neo4j/import
.
12-17-2019 06:03 AM
This folder is empty. Any other approach?
12-17-2019 09:17 AM
do a docker exec -it <name> /bin/sh
to get a shell inside the container. Now run a find / -name all.csv
to see if that file is somewhere.
12-17-2019 10:58 AM
I' ve done in docker and without docker (install neo4j). But, a file wasn't create. What do I need to check?
12-17-2019 12:56 PM
Please check if your neo4j.conf
contains apoc.export.file.enabled=true
, additionally inspect logs/debug.log
for suspicious messages.
12-18-2019 12:10 AM
@stefan.armbruster Thank you a lot for your help!
I added dbms.directories.import=import in conf file and it works)
All the sessions of the conference are now available online