请输入搜索词进行查询
搜索 <book_title>...
NetBackup™ for OpenStack 管理指南
Last Published:
2023-12-28
Product(s):
NetBackup & Alta Data Protection (10.3)
- 简介
- 部署 NetBackup for OpenStack
- 要求
- NetBackup for OpenStack 网络注意事项
- 准备安装
- 启动 NetBackup for OpenStack VM
- 安装 NetBackup for OpenStack 组件
- 在 RHOSP 上安装
- 在 Ansible OpenStack Ussuri 上安装
- 在 Kolla Ussuri 上安装
- 将 NetBackup for OpenStack 映像推送到本地注册表
- 配置 NetBackup for OpenStack
- 安装后运行状况检查
- 卸载 NetBackup for OpenStack
- 从 RHOSP 卸载
- 从 Ansible OpenStack 卸载
- 从 Kolla OpenStack 卸载
- 安装 nbosjm CLI 客户端
- 配置 NetBackup OpenStack 设备
- 配置 NetBackup 主服务器
- NetBackup for OpenStack 策略
- 执行 OpenStack 备份和还原
- 关于还原
- CLI 所需的 restore.json
- 在 Horizon 中配置和启动文件搜索
- 执行备份管理任务
- 故障排除
在 nbos_env.yaml 中提供环境详细信息
在提供的环境文件中提供备份目标详细信息和其他必要详细信息。此环境文件用于在 Overcloud 部署中配置 NetBackup for OpenStack 组件。为了准备容器映像,已填充容器映像名称。不过,建议验证容器 URL。
此外,还需要以下信息:
nbosdmapi 的网络
nbosdm 密码
备份目标类型 {nfs/s3}
如果为 NFS
NFS 共享列表
NFS 选项
如果为 S3
S3 类型 {amazon_s3/ceph_s3}
S3 访问密钥
S3 密钥
S3 区域名称
S3 存储桶
S3 端点 URL
S3 签名版本
S3 身份验证版本
已启用 S3 SSL {true/false}
S3 SSL 证书
注意:
对任何非 AWS S3 备份目标使用 ceph_s3。
resource_registry: OS::TripleO::Services::nbosdm: ../services/nbosdm.yaml OS::TripleO::Services::nbosdmapi: ../services/nbosdmapi.yaml # NOTE: If there are addition customizations to the endpoint map (e.g. for # other integratiosn), this will need to be regenerated. OS::TripleO::EndpointMap: endpoint_map.yaml parameter_defaults: ## Enable NetBackup for OpenStack's quota functionality on horizon ExtraConfig: horizon::customization_module: 'dashboards.overrides' ## Define network map for NetBackup OpenStack Datamover API Service ServiceNetMap: nbosdmapiNetwork: internal_api ## NetBackup for OpenStack Datamover Password for keystone and database nbosdmPassword: "test1234" ## NetBackup for OpenStack container pull urls docker_nbosdm_image: nbos-undercloud:8787/nbosdm:9.0.1017-rhosp16.1 docker_nbosdmapi_image: nbos-undercloud:8787/nbosdmapi:9.0.1017-rhosp16.1 ## If you do not want NetBackup for OpenStack’s horizon plugin to replace your horizon container, just comment following line. ContainerHorizonImage: nbos-undercloud:8787/nbos-horizon-plugin: 9.0.1017-rhosp16.1 ## Backup target type nfs/s3, used to store snapshots taken by NetBackup for OpenStack BackupTargetType: 'nfs' ## For backup target 'nfs' NfsShares: '192.168.122.101:/opt/nbos' NfsOptions: 'nolock,soft,timeo=180,intr,lookupcache=none' ## For backup target 's3' ## S3 type: amazon_s3/ceph_s3 S3Type: 'amazon_s3' ## S3 access key S3AccessKey: '' ## S3 secret key S3SecretKey: '' ## S3 region, if your s3 does not have any region, just keep the parameter as it is S3RegionName: '' ## S3 bucket name S3Bucket: '' ## S3 endpoint url, not required for Amazon S3, keep it as it is S3EndpointUrl: '' ## S3 signature version S3SignatureVersion: 'default' ## S3 Auth version S3AuthVersion: 'DEFAULT' ## If S3 backend is not Amazon S3 and SSL is enabled on S3 endpoint u rl then change it to 'True', otherwise keep it as 'False' S3SslEnabled: False ## If S3 backend is not Amazon S3 and SSL is enabled on S3 endpoint URL and SSL certificates are self signed, then ## user need to set this parameter value to: '/etc/nbosdm/s3-cert.pem', otherwise keep it's value as empty string. S3SslCert: '' ## Don't edit following parameter EnablePackageInstall: True