# Using Silo with Veeam

LLMS index: [llms.txt](/llms.txt)

---

<a id="using-minio-with-veeam"></a>

When using Veeam Backup and Replication, you can use S3-compatible object storage such as Silo as a capacity tier for backups. This disaggregates storage for the Veeam infrastructure and allows you to retain control of your data. Silo's straightforward setup and administration let a Veeam backup administrator deploy an object store for capacity tiering.

## Prerequisites {#prerequisites}

- One or both of Veeam Backup and Replication with support for S3 compatible object store (e.g. 9.5.4) and Veeam Backup for Office365 (VBO)
- Silo object storage set up according to the [deployment procedure](/operations/deployments/baremetal-deploy-minio-on-redhat-linux/#procedure)
- Veeam requires TLS connections to the object storage. Configure TLS using the [network encryption guide](https://silo.pgsty.com/operations/network-encryption/).
- The S3 bucket, Access Key and Secret Key have to be created before and outside of Veeam.
- Configure the Silo client for the Veeam Silo endpoint using the [`mc` command reference](/reference/minio-mc/).

## Setting up an S3 compatible object store for Veeam Backup and Replication {#setting-up-an-s3-compatible-object-store-for-veeam-backup-and-replication}

### Create a bucket for Veeam backups {#create-a-bucket-for-veeam-backups}

Create a bucket for Veeam Backup, e.g.,

```text
mc mb myminio/veeambackup

```

> NOTE: For Veeam Backup with Immutability, create the bucket with object lock enabled, e.g.,

```text
mc mb -l myminio/veeambackup

```

> Object locking requires erasure coding on the silo server. See the [erasure coding documentation](/operations/concepts/erasure-coding/) for more information.

### Add Silo as an object store for Veeam {#add-minio-as-an-object-store-for-veeam}

Follow the Veeam documentation for adding S3-compatible object storage: [Add Object Storage](https://helpcenter.veeam.com/docs/backup/vsphere/adding_s3c_object_storage.html?ver=100).

For Veeam Backup with Immutability, choose the amount of days you want to make backups immutable for

![Choose Immutability Days for Object Store](/images/integrations/veeam/object_store_immutable_days.png)

### Creating the Scale-out Backup Repository {#creating-the-scale-out-backup-repository}

- Under the Backup Infrastructure view, click on Scale-out Repositories and click the Add Scale-out Repository button on the ribbon.
- Follow the on screen wizard
- On the Capacity Tier screen, check the box to Extend scale-out backup repository capacity with object storage checkbox and select the object storage. If you want to be able to test backup data immediately after a job is run, under the object storage selection, check the “Copy” box and uncheck the “Move” box.

### Create a backup job {#create-a-backup-job}

#### Backup Virtual Machines with Veeam Backup and Replication {#backup-virtual-machines-with-veeam-backup-and-replication}

- Under Home &gt; Jobs &gt; Backup in Navigation Pane, click on Backup Job button in the ribbon and choose Virtual Machine. Follow the on screen wizard.
- On the Storage screen, choose the Scale-out Backup Repository that was configured previously.
- Continue with the backup job creation. On the Summary screen, check the Run the Job when I click Finish checkbox and click the Finish button. The backup job will start immediately. This will create an Active Full backup of the VMs within the backup job.
- Since we selected Copy mode when creating the SOBR, the backup will be copied to the capacity tier as soon as it is created on the performance tier.
- For Veeam Backup with Immutability, you can choose a number of restore points or days to make backups immutable.

![Choose Immutability Options for Backups](/images/integrations/veeam/backup_job_immutable_days.png)

#### Backup Office 365 with VBO {#backup-office-365-with-vbo}

- Create a new bucket for VBO backups

```text
mc mb -l myminio/vbo

```

- Under Backup Infrastructure, right click on Object Storage Repositories and choose “Add object storage”

![Adding Object Storage to VBO Step 1](/images/integrations/veeam/1_add_object_store.png)

- Follow through the wizard as above for Veeam Backup and Replication as the steps are the same between both products
- Under Backup Infrastructure -&gt; Backup Repositories, right click and “Add Backup Repository”
- Follow the wizard. Under the “Object Storage Backup Repository” section, choose the Silo object storage you created above

![Adding Object Storage to VBO Backup Repository](/images/integrations/veeam/6_add_sobr_with_object_store.png)

- When you create your backup job, choose the backup repository you created above.

## Test the setup {#test-the-setup}

The next time the backup job runs, you can use the `mc admin trace myminio` command and verify traffic is flowing to the Silo nodes. For Veeam Backup and Replication you will need to wait for the backup to complete to the performance tier before it migrates data to the Silo capacity tier.

```text
20:09:10.216 [200 OK] s3.GetObject veeam-minio01:9000/vbo/Veeam/Backup365/vbotest/Organizations/6571606ecbc4455dbfe23b83f6f45597/Webs/ca2d0986229b4ec88e3a217ef8f04a1d/Items/efaa67764b304e77badb213d131beab6/f4f0cf600f494c3eb702d8eafe0fabcc.aac07493e6cd4c71845d2495a4e1e19b 139.178.68.158    9.789ms      ↑ 90 B ↓ 8.5 KiB
20:09:10.244 [200 OK] s3.GetObject veeam-minio01:9000/vbo/Veeam/Backup365/vbotest/RepositoryLock/cad99aceb50c49ecb9e07246c3b9fadc_bfd985e5deec4cebaf481847f2c34797 139.178.68.158    16.21ms      ↑ 90 B ↓ 402 B
20:09:10.283 [200 OK] s3.PutObject veeam-minio01:9000/vbo/Veeam/Backup365/vbotest/CommonInfo/WebRestorePoints/18f1aba8f55f4ac6b805c4de653eb781 139.178.68.158    29.787ms     ↑ 1005 B ↓ 296 B

```
