Important Update: Cohesity Products Documentation


All Cohesity product documentation are now managed via the Cohesity Docs Portal: https://docs.cohesity.com/HomePage/Content/home.htm. Some documentation available here may not reflect the latest information or may no longer be accessible.

Veritas Access NetBackup 解决方案指南

Last Published:
Product(s): Access (7.4)
Platform: Linux
  1. Veritas Access 与 NetBackup 集成
    1.  
      关于 Veritas Access
    2.  
      关于 Veritas Access 作为 NetBackup 客户端
    3.  
      关于 Veritas Access 作为 NetBackup 的备份存储
    4.  
      长期数据保留的用例
  2. 系统要求
    1.  
      OpenDedup 安装的系统要求
    2.  
      NetBackup 与 OpenDedup 结合使用时支持的配置和版本
    3.  
      支持 NetBackup CloudCatalyst 的配置和版本
  3. 通过具有 OpenDedup 和 NetBackup 的 S3 配置 Veritas Access 备份
    1.  
      将 Veritas Access 与 NetBackup 和 OpenDedup 结合使用的好处
    2.  
      OpenDedup 工作流程
    3.  
      用例 1:使用 S3 协议将已进行重复数据删除的数据(OpenDedup 和 NetBackup)备份到 Veritas Access
    4.  
      用例 2:在 Veritas Access 上备份数据 (NetBackup) 和对数据进行重复数据删除 (OpenDedup)
    5.  
      在 Veritas Access 上创建 S3 存储桶,来存储 NetBackup 中已进行重复数据删除的备份数据
    6.  
      使用 NetBackup 为主备份创建介质服务器重复数据删除池 (MSDP)
    7.  
      在 NetBackup 控制台中创建 OST 磁盘池和 STU
    8.  
      在同一域中设置多个 NetBackup 介质服务器
    9.  
      在 NetBackup 介质服务器上设置多个 SDFS 卷
  4. 使用 NetBackup CloudCatalyst 将 Veritas Access 配置为云存储服务器
    1.  
      将 Veritas Access 与 NetBackup 和 CloudCatalyst 结合使用的好处
    2.  
      在 Veritas Access 上创建 S3 存储桶,来存储 NetBackup 中已进行重复数据删除的备份数据
    3.  
      在 NetBackup 服务器上将 Veritas Access 配置为云存储服务器
    4.  
      使用 NetBackup 配置 Veritas Access SSL
  5. 使用 NetBackup 策略配置备份和还原
    1.  
      存储生命周期策略
    2.  
      备份和还原
    3.  
      手动运行备份策略
    4.  
      还原备份的文件
  6. 故障排除
    1.  
      在重新启动 Veritas Access 或 NetBackup 介质服务器之前卸载 SDFS 卷
    2.  
      进行故障排除的日志位置
    3.  
      其他资源
    4.  
      使用 helper 脚本生成 Veritas Access S3 服务器密钥
    5.  
      OpenDedup 优化建议

在 NetBackup 介质服务器上设置多个 SDFS 卷

OST 连接器支持同一个介质服务器上有多个 SDFS 卷,但需要执行其他步骤来支持此配置。

在 NetBackup 介质服务器上设置多个 SDFS 卷

  1. 按照说明在使用 OST 连接器的每个 NetBackup 介质服务器上设置 OST 连接器。

    请参见用例 1:使用 S3 协议将已进行重复数据删除的数据(OpenDedup 和 NetBackup)备份到 Veritas Access

  2. 编辑 /etc/sdfs/ostconfig.xml 并在新卷的 <CONNECTIONS> 标记内部添加一个新的 <CONNECTION> 标记。

    为 <NAME> 标记添加一个唯一的名称,并在 <LSU_NAME> 标记中指定新的卷名 (pool1)。

    在新的 <CONNECTION> 标记中,将通过运行 mount 命令标识的端口号添加到示例输出中所示的 <URL> 标记 (http://localhost:6443/) 中。

    [root@host1 ~]# mount | grep opendedupe
    sdfs:/etc/sdfs/S3fs1497346133-volume-cfg.xml:6443 on
    /opendedupe/volumes/S3fs1497346133 type fuse
    (rw,nosuid,nodev,allow_other,allow_other)
    sdfs:/etc/sdfs/S3fs1497258807-volume-cfg.xml:6442 on
    /opendedupe/volumes/pool1 type fuse
    (rw,nosuid,nodev,allow_other,allow_other)

    以下是具有两个卷的 ostconfig.xml 文件的完整示例。

    <!-- This is the config file for the OST connector for opendedup and Netbackup -->
    <CONNECTIONS>
    <CONNECTION>
    <!--NAME is the local server name that you will reference within Netbackup -->
    <NAME>
    local
    </NAME>
    <LSU_NAME>
    svol4
    </LSU_NAME>
    <URL>
    http://localhost:6442/
    </URL>
    <!--PASSWD - The password of the volume if one is required for this sdfs volume -->
    <PASSWD>admin</PASSWD>
    <!-
    <SERVER_SHARE_PATH>
    A_SUBDIRECTORY_UNDER_THE_MOUNT_PATH
    </SERVER_SHARE_PATH>
    -->
    </CONNECTION>
    <!-- Below is the new volume-->
    <CONNECTION>
    <!--NAME is the local server name that you will reference within Netbackup -->
    <NAME>
    hostname0
    </NAME>
    <LSU_NAME>
    svol10
    </LSU_NAME>
    <URL>
    http://localhost:6443/
    </URL>
    <!--PASSWD - The password of the volume if one is required for this sdfs volume -->
    <PASSWD>admin</PASSWD>
    <!--
    <SERVER_SHARE_PATH>
    A_SUBDIRECTORY_UNDER_THE_MOUNT_PATH
    </SERVER_SHARE_PATH>
    -->
    </CONNECTION>
    </CONNECTIONS>