简体   繁体   中英

Restore Backup into local ArangoDB

I have a problem. I am using ArangoDB Enterprise - 3.8.6 via Docker. I downloaded a Backup from another ArangoDB . How can I upload these files/backup to my local ArangoDB that runs on Docker, so that my ArangoDB have the files.

The picture below shows what my backup looks like

在此处输入图像描述

I already read the documentation but I do not find any helpful information https://www.arangodb.com/docs/stable/programs-arangorestore-examples.html and Strategy for arangodb data backup in docker container

Inside Docker Desktop I started CLI and wrote down arangorestore

What you downloaded is not a backup unfortunately, but the file system directory. Please perform arangodump on your first instance, which you can then easily restore via arangorestore .

I take it that you would like a full backup and restore, something like this:

arangodump --server.endpoint <source> --server.username <username> --server.password <password> --all-databases true

followed by

arangorestore --server.endpoint <target> --server.username <username> --server.password <password> --all-databases true

No need to get inside the docker container, so to speak.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM