NetBackup™ Snapshot Manager for Cloud Install and Upgrade Guide
- Introduction
- Section I. NetBackup Snapshot Manager for Cloud installation and configuration
- Preparing for NetBackup Snapshot Manager for Cloud installation
- Deploying NetBackup Snapshot Manager for Cloud using container images
- Deploying NetBackup Snapshot Manager for Cloud extensions
- Installing the NetBackup Snapshot Manager extension on a VM
- Installing the NetBackup Snapshot Manager extension on a managed Kubernetes cluster (AKS) in Azure
- Installing the NetBackup Snapshot Manager extension on a managed Kubernetes cluster (EKS) in AWS
- Installing the NetBackup Snapshot Manager extension on a managed Kubernetes cluster (GKE) in GCP
- NetBackup Snapshot Manager for cloud providers
- AWS plug-in configuration notes
- Google Cloud Platform plug-in configuration notes
- Prerequisites for configuring the GCP plug-in using Credential and Service Account option
- Microsoft Azure plug-in configuration notes
- Microsoft Azure Stack Hub plug-in configuration notes
- OCI plug-in configuration notes
- Configuration for protecting assets on cloud hosts/VM
- Protecting assets with NetBackup Snapshot Manager's on-host agent feature
- Installing and configuring NetBackup Snapshot Manager agent
- Configuring the NetBackup Snapshot Manager application plug-in
- Microsoft SQL plug-in
- Oracle plug-in
- Protecting assets with NetBackup Snapshot Manager's agentless feature
- Snapshot Manager for cloud catalog backup and recovery
- NetBackup Snapshot Manager for cloud assets protection
- Volume encryption in NetBackup Snapshot Manager for cloud
- NetBackup Snapshot Manager for Cloud security
- Preparing for NetBackup Snapshot Manager for Cloud installation
- Section II. NetBackup Snapshot Manager for Cloud maintenance
- NetBackup Snapshot Manager for Cloud logging
- Upgrading NetBackup Snapshot Manager for Cloud
- Migrating and upgrading NetBackup Snapshot Manager
- Post-upgrade tasks
- Uninstalling NetBackup Snapshot Manager for Cloud
- Troubleshooting NetBackup Snapshot Manager for Cloud
Issues with SELinux configuration
If you enable SELinux on systems where it has been previously disabled or if you run a service in a non-standard configuration, then SELinux configurations issues are observed.
SELinux denials are signs of incorrect configuration.
Workaround:
Perform the following:
Check the SELinux audit logs for Snapshot Manager related denials using
utility as follows:# ausearch -m avc -se VRTSflexsnap.process | audit2allow
allow VRTSflexsnap.process container_var_lib_t:dir watch;
allow VRTSflexsnap.process container_var_lib_t:file watch;
Identify the Snapshot Manager related SELinux denials and apply corresponding policy changes using the following command:
# flexsnap_configure updatecil -i
Following are the SELinux policy updates detected for Snapshot Manager:
allow VRTSflexsnap.process default_t:dir create; allow VRTSflexsnap.process default_t:file { create read }; Do you want to update Snapshot Manager's SELinux policy? (y/n): y Updating runtime SELinux policy ...done
For changes to take effect, run the following command:
flexsnap_configure restart
Validate the policy change by using the following command:
# ausearch -m avc -se VRTSflexsnap.process | audit2allow
For validation the following message must be displayed:
!!!! This avc is allowed in the current policy allow VRTSflexsnap.process container_var_lib_t:dir watch; !!!! This avc is allowed in the current policy allow VRTSflexsnap.process container_var_lib_t:file watch;