Please enter search query.
Search <book_title>...
NetBackup™ for OpenStack Administrator's Guide
Last Published:
2023-10-22
Product(s):
NetBackup & Alta Data Protection (10.3.0.1, 10.3)
- Introduction
- Deploying NetBackup for OpenStack
- Requirements
- NetBackup for OpenStack network considerations
- Preparing the installation
- Spinning up the NetBackup for OpenStack VM
- Installing NetBackup for OpenStack Components
- Installing on RHOSP
- Prepare for deployment
- Updating the overcloud roles data file to include NetBackup for OpenStack services
- Verifying the deployment
- Additional Steps on NetBackup for OpenStack Appliance
- Installing on Ansible OpenStack Ussuri
- Installing on Kolla Ussuri
- Pushing NetBackup for OpenStack images to the local registry
- Installing on RHOSP
- Configuring NetBackup for OpenStack
- Post Installation Health-Check
- Uninstalling NetBackup for OpenStack
- Uninstalling from RHOSP
- Uninstalling from Ansible OpenStack
- Uninstalling from Kolla Openstack
- Uninstalling from RHOSP
- Install nbosjm CLI client
- Configuring NetBackup OpenStack Appliance
- Configuring NetBackup Master Server
- NetBackup for OpenStack policies
- Performing backups and restores of OpenStack
- About restores
- Required restore.json for CLI
- Configuring and starting a file search in Horizon
- Performing Backup Administration tasks
- NBOS Backup Admin Area
- Policy Attributes
- Policy Quotas
- Managing Trusts
- Policy import and migration
- Disaster Recovery
- Example runbook for disaster recovery using NFS
- Disaster recovery of a single policy
- Copy the policy directories to the configured NFS Volume
- Make the Mount-Paths available
- Reassign the policy
- Restore the policy
- Clean up
- Disaster recovery of a complete cloud
- Reconfigure the Target NetBackup for OpenStack installation
- Make the Mount-Paths available
- Reassign the policy
- Restore the policy
- Reconfigure the Target NetBackup for OpenStack installation back to the original one
- Clean up
- Troubleshooting
- General Troubleshooting Tips
- Health check of NetBackup for OpenStack
- Important log files
Creating a file recovery manager instance
Create an OpenStack image using a Linux-based cloud image like Ubuntu, CentOS, or RHEL. Add the following metadata parameters and upload the cloud image to the Glance.
--file <File Manager Image Path> \ --container-format bare \ --disk-format qcow2 \ --public \ --property hw_qemu_guest_agent=yes \ --property nbos_recovery_manager=yes \ --property hw_disk_bus=virtio \ nbos-file-manager
Spin up an instance from that image. It is recommended to have at least 8GB RAM for the mount operation. Bigger snapshots may require more RAM.
Steps to apply on CentOS and RHEL cloud images
- Install and activate qemu-guest-agent.
- Edit /etc/sysconfig/qemu-ga and remove the following from BLACKLIST_RPC section.
guest-file-read guest-file-write guest-file-open guest-file-close
- Disable SELINUX in /etc/sysconfig/selinux.
SELINUX=disabled
- Install python3.
yum install python3
- Install lvm2.
yum install lvm2
- Restart the instance.
Steps to apply on Ubuntu cloud images
- Install and activate qemu-guest-agent.
- Edit
/etc/init.d/qemu-guest-agent
and add Freeze-Hook file path in daemon args.DAEMON_ARGS="-F/etc/qemu/fsfreeze-hook
- Restart the qemu-guest-agent service.
- Install Python3.
apt-get install python3
- Restart the instance.