# 4.3.7.2 Off-boarding from OpenCRVS

Perhaps you may wish to manually decrypt and extract the raw data from an encrypted OpenCRVS backup file if migrating the data to another vendor's civil registration system.

Using the BACKUP\_ENCRYPTION\_PASSPHRASE the backup zip that is downloaded in the **Disaster Recovery Procedure** can be decrypted and unzipped (extracted) like this:

**Decrypt:**

```
openssl enc -d -aes-256-cbc -salt -pbkdf2 -in ${DATE_OF_REQUIRED_BACKUP}.tar.gz.enc --out ${DATE_OF_REQUIRED_BACKUP}.tar.gz -pass pass:$BACKUP_ENCRYPTION_PASSPHRASE
```

**Extract the raw data into a directory named "extracted\_data":**

```
mkdir extracted_data
tar -xvf ${DATE_OF_REQUIRED_BACKUP}.tar.gz -C extracted_data
```

You can now write whatever custom migration script you wish using the raw MongoDB / Minio / Elasticsearch & CSV files.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://documentation.opencrvs.org/setup/3.-installation/3.3-set-up-a-server-hosted-environment/4.3.7-backup-and-restore/4.3.7.2-off-boarding-from-opencrvs.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
