Closed rjalexa closed 2 months ago
Hmm, that's interesting. If the backup can be launched successfully from the web interface, it should work with the curl method, as well.
When you launch the backup from the web interface, do you see something in the logs (docker compose logs -f mema_fuseki
), i.e. are you certain that the backup is being generated?
How did you create the dataset mema_v6
?
I tested your docker compose configuration with the following workflow (on mac/arm64):
docker-compose.yml
file by copy-pasting you configuration above (I changed the volume host path). I had to add the network configuration to the end of the file:
networks:
mema_network:
assembler.ttl
to the volume's path configuration/assembler.ttl
docker compose up
mema_v6
via the web interfaceNow, I am able to launch the backup successfully either from the web interface or with the curl method.
Running from the command line:
$ curl -u admin:myverysecretpass -X POST http://localhost:3030/$/backup/mema_v6
{
"taskId" : "1" ,
"requestId" : 6
}
In the docker compose / Fuseki logs I get:
mema_fuseki | 15:02:32 INFO Admin :: [6] Backup dataset /mema_v6
mema_fuseki | 15:02:32 INFO Server :: Task : 1 : Backup
mema_fuseki | 15:02:32 INFO Server :: [Task 1] starts : Backup
mema_fuseki | 15:02:32 INFO Backup :: [6] >>>> Start backup /mema_v6 -> /fuseki-base/backups/mema_v6_2024-08-12_15-02-32
mema_fuseki | 15:02:32 INFO Backup :: [6] <<<< Finish backup /mema_v6 -> /fuseki-base/backups/mema_v6_2024-08-12_15-02-32
mema_fuseki | 15:02:32 INFO Server :: [Task 1] finishes : Backup
I'm closing the issue; please do re-open it if still relevant.
Very sorry for the very late update. I have been without access to the system for a while. I do do confirm what you wrote is correct and I indeed able to perform a backup as you describe.
With my local host mount I can find the backup file as:
articlegraph_2024-09-26_12-54-24.nq.gz
in directory:
/home/mema/fuseki-base/backups
Dear friends, I am running your 5.0.0 container image on a Linux server with the following docker compose configuration:
and the server works well as seen:
I can now connect on port 3030 of this host and get the web interface working perfectly and from it I can successfully launch a backup.
But I wish to launch such backups from a shell script using the Fuseki HTTP Administration Protocol as per the page and so have tried with the following command line:
curl -u admin:myverysecretpass -X POST http://localhost:3030/$/backup/mema_v6
but much to my surprise while looking at the logs:docker compose logs -f mema_fuseki
nothing shows up. If I issue the command:as you can see the response is there but still nothing shows in the logs.
Can you please help me understand how to launch a backup via the command line?
What can I check? Thank you very much for your great image.