ArangoDB 文檔存儲的備份可以通過使用 arangodump
工具來實現,該工具可以將數據庫的當前狀態導出到文件系統中。以下是備份和恢復的步驟:
備份命令:使用 arangodump
命令進行備份。例如:
arangodump --server.endpoint tcp://192.168.120.123:8529 --server.username root --server.password Root@123 --server.database cmdb --overwrite true --output-directory "/tmp/dump"
備份類型:可以選擇導出所有數據庫、特定數據庫或特定集合的數據。
備份數據:備份目錄 /tmp/dump
下包含數據庫的定義文件(dump.json),以及集合集合的定義文件(*.structure.json)和文檔文件(.data.json.gz)。
加密備份:ArangoDB Oasis 提供的備份是加密的,確保數據在傳輸和靜止時的安全。
恢復命令:使用 arangorestore
命令進行恢復。例如:
arangorestore --input-directory "dump" --server.endpoint tcp://192.168.120.123:8529 --server.username root --server.password Root@123 --server.database cmdb
恢復數據:通過 arangorestore
命令,可以將備份文件恢復到 ArangoDB 數據庫中。
通過上述步驟,您可以有效地備份和恢復 ArangoDB 文檔存儲中的數據,確保數據的安全性和業務的連續性。