DCImanager 6 Knowledge Base

How to enable support for NFS storage?

To enable NFS storage support:

  1. Connect to the server with the platform via SSH.
  2. Create a patch_backup_nfs.yaml file with the following contents:

    If Ubuntu 20.04 is installed on the server
    version: "3.7"
    services:
      dci_backup:
        environment:
          BACKUP_NFS: "on"
        cap_add:
          - CAP_SYS_ADMIN
        security_opt:
          - apparmor=nfs-server
    If another OS is installed on the server
    version: "3.7"
    services:
      dci_backup:
        environment:
          BACKUP_NFS: "on"
        cap_add:
          - CAP_SYS_ADMIN
  3. Run the command:

    dci add-patch -f patch_backup_nfs.yaml -p backup_nfs

To disable NFS storage support, run the command on the server with the platform:

dci remove-patch -p backup_nfs