Please enter search query.
Search <book_title>...
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:
2018-05-28
Product(s):
Access (7.4)
Platform: Linux
- Veritas Access 与 NetBackup 集成
- 系统要求
- 通过具有 OpenDedup 和 NetBackup 的 S3 配置 Veritas Access 备份
- 将 Veritas Access 与 NetBackup 和 OpenDedup 结合使用的好处
- OpenDedup 工作流程
- 用例 1:使用 S3 协议将已进行重复数据删除的数据(OpenDedup 和 NetBackup)备份到 Veritas Access
- 用例 2:在 Veritas Access 上备份数据 (NetBackup) 和对数据进行重复数据删除 (OpenDedup)
- 在 Veritas Access 上创建 S3 存储桶,来存储 NetBackup 中已进行重复数据删除的备份数据
- 使用 NetBackup 为主备份创建介质服务器重复数据删除池 (MSDP)
- 在 NetBackup 控制台中创建 OST 磁盘池和 STU
- 在同一域中设置多个 NetBackup 介质服务器
- 在 NetBackup 介质服务器上设置多个 SDFS 卷
- 使用 NetBackup CloudCatalyst 将 Veritas Access 配置为云存储服务器
- 使用 NetBackup 策略配置备份和还原
- 故障排除
在 NetBackup 介质服务器上设置多个 SDFS 卷
OST 连接器支持同一个介质服务器上有多个 SDFS 卷,但需要执行其他步骤来支持此配置。
在 NetBackup 介质服务器上设置多个 SDFS 卷
- 按照说明在使用 OST 连接器的每个 NetBackup 介质服务器上设置 OST 连接器。
请参见用例 1:使用 S3 协议将已进行重复数据删除的数据(OpenDedup 和 NetBackup)备份到 Veritas Access。
- 编辑
/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>