vPlus 7.0
  • Welcome to vPlus!
  • Overview
    • Main Features
    • Support Matrix
    • Components and Architecture
    • Typical Scenarios
    • Licensing
    • Product Life Cycle
  • Deployment
    • Component Requirements
    • Supported Platforms Requirements
    • Sizing Guide
      • Small
      • Medium
      • Large
    • Installation
      • Quick Installation Using All-in-one Script
      • Installing vPlus Offline
      • Adding vPlus Nodes
    • Initial Configuration
    • Backup Destinations
      • File System
        • Synthetic File System
          • XFS
          • DD Boost
        • isoLayer (Synthetic)
        • File System
          • Virtual Data Optimizer (VDO)
        • Catalogic Software vStor
      • Deduplication Appliances
        • Huawei OceanProtect
        • HPE StoreOnce
        • Exagrid
        • Neverfail HybriStor
      • Object Storage
        • Alibaba Cloud OSS
        • AWS S3 or S3-compatible
        • Ceph Rados Gateway
        • Cloudian S3
        • Wasabi
        • Google Cloud Storage
        • IBM Cloud Object Storage
        • Microsoft Azure Blob Storage
        • Nutanix Objects
        • OpenStack SWIFT
        • Oracle Cloud Infrastructure Object Storage
        • Scality RING
      • Tape Pools
    • High Availability
      • 2 Node Cluster
      • 3 Node Cluster
    • Common Tasks
      • Staging Space Configuration
      • Enabling HTTPS Connectivity for Nodes
      • LVM Setup on vPlus Node for Disk Attachment Backup Mode
      • Full Versions of libvirt/qemu Packages Installation
      • SSH Public Key Authentication
      • Enabling HTTP(S) Proxy for vPlus
  • Protecting Virtual Environments
    • Virtual Machines
      • Nutanix Acropolis Hypervisor (AHV)
      • Red Hat Openshift Virtualization
      • Red Hat Virtualization
      • oVirt
      • Oracle Linux Virtualization Manager
      • Oracle VM
      • Proxmox VE
      • KVM/Xen
      • OpenStack
      • OpenNebula
      • Virtuozzo
      • Citrix Hypervisor (XenServer)
      • XCP-ng
      • Huawei FusionCompute
      • SC//Platform
    • Cloud
      • Amazon EC2
      • GCP GCE
      • Azure Cloud
    • Containers
      • Red Hat OpenShift
      • Proxmox VE
    • Backup & Restore
  • Protecting Microsoft 365
    • Microsoft 365 Organization Management
      • Configure Microsoft 365 Access
      • Add Microsoft 365 Organization Manually
      • Add Microsoft 365 Organization Using the Setup Assistant
      • Account Auto-synchronization
    • Backup & Restore
    • Suppoted Sharepoint Templates and Limitations
  • Protecting Applications
    • Applications
      • PostgreSQL
      • DB2
      • Relax and Recover - ReaR
      • Git
      • oVirt/RHV/OLVM
      • Kubernetes/OpenShift etcd
    • Backup & Restore
  • Protecting Storage Providers
    • Storage Providers
      • File System
      • Ceph RBD
      • Nutanix Files
      • Nutanix Volume Groups
    • Backup & Restore
  • Administration
    • Dashboard
    • Virtual Environments
      • Instances
        • Backup On-Demand
        • Restore On-Demand
        • Snapshot Management
      • Virtualization Providers
      • Backup SLAs
        • Policies
        • Schedules
      • Snapshot SLAs
        • Policies
        • Schedules
      • Recovery Plans
        • Policies
        • Schedules
      • Mounted Backups (File-level Restore)
    • Storage
      • Instances
        • Backup On-Demand
        • Restore On-Demand
      • Infrastructure
      • Backup SLAs
        • Policies
        • Schedules
      • Snapshot SLAs
        • Policies
        • Schedules
      • Mounted Backups (File-level Restore)
    • Microsoft 365
      • Instances
      • Organizations
      • Backup SLAs
        • Policies
        • Schedules
      • Download
    • Applications
      • Instances
      • Execution Configurations
      • Backup SLAs
    • Reporting
      • Virtual Environments
      • Storage
      • Microsoft 365
      • Applications
      • Notifications
      • Audit Log
    • Nodes
      • Instances
      • Node Configurations
    • Access Management
      • Users
      • Groups
      • Roles
      • OS Credentials
    • Settings
      • Global Settings
      • Internal DB Backup
      • Notification Rules
      • Mailing Lists
      • Endpoints Global Settings
    • Upgrade
    • CLI Reference
    • CLI v2 Reference (technical preview)
  • Integration
  • Troubleshooting
    • How to Enable vPlus DEBUG Mode
    • Collecting Logs
    • External Log Targets
    • Disaster Recovery
  • Known Software Issues and Limitations
  • Glossary
Powered by GitBook
On this page
  • Overview
  • Examples
  • NFS
  • CIFS
  • Mounting Exagrid network shares
  • Creating a Backup Destination
  1. Deployment
  2. Backup Destinations
  3. Deduplication Appliances

Exagrid

PreviousHPE StoreOnceNextNeverfail HybriStor

Overview

vPlus supports integration with Exagrid. You can create two types of shares (NFS and CIFS), but in this case, we recommend using a CIFS share as the backup destination.

Examples

To create a network share, log in to the Exagrid dashboard and go to Manage -> Shares.

Then create a new share. From here, you can create an NFS or CIFS share, depending on the protocol you choose.

NFS

As we said before, we do not recommend this method for storing backups, but we will describe the basic steps for creating an NFS share.

So, after clicking on New Share you'll see this window. Change the Protocol to NFS, configure the rest according to your requirements.

After creation, you will see a summary window with commands that allow you to mount the NFS share under the vPlus node machine.

From the menu, you can see that we have a new share.

It is good practice to create an NFS share access policy.

As you can see, you can limit access to a single host or the entire address pool. Remember to edit the share and select Access Policy.

CIFS

Now it is time for the method we recommended. After clicking New Share you'll see this window. Change Protocol to CIFS/SMB, configure the rest according to your requirements.

After creation, you will see a summary window with basic information about CIFS share.

From the menu, you can see that we have a new share.

It is good practice to create a CIFS share user access policy.

Select a single user or a whole group of users.

Mounting Exagrid network shares

To mount NFS share:

  • Create an NFS directory mount point on the vPlus node host machine mkdir /directorypath

  • Mount NFS Share mount -t nfs Exagrid_IP:/sharename /mountdirectory

  • Check if you are connected with NFS Share df -kh

To permanently add an NFS share, you must edit the /etc/fstab file Exagrid_IP:/sharename /mountdirectory nfs defaults 0 0

To mount CIFS share:

  • Install the required packages yum install cifs-utils

  • Create a mount point directory mkdir /directorypath

  • To mount a CIFS share mount.cifs //hostname-or-ip_address/sharename /mnt/testmnt -o ro,guest

  • To permanently add a CIFS share, you must edit the /etc/fstab file //hostname-or-ip_address/sharename /mnt/testmnt cifs ro,guest 0 0

Creating a Backup Destination

Now we can create a backup destination for our backups. Please log in to the vPlus dashboard and go to the Backup Destination tab on the left side menu. Then choose File system from the list of backup destinations you can create.

You only need to enter the unique name of the backup destination and mount point as the storage path.