Please enter search query.
Search <book_title>...
NetBackup™ Deployment Guide for Azure Kubernetes Services (AKS) Cluster
Last Published:
2022-09-08
Product(s):
NetBackup & Alta Data Protection (10.1)
- Introduction to NetBackup on AKS
- Deployment with environment operators
- Assessing cluster configuration before deployment
- Deploying NetBackup
- About primary server CR and media server CR
- Upgrading NetBackup
- Deploying Snapshot Manager
- Migration and upgrade of Snapshot Manager
- Deploying MSDP Scaleout
- Upgrading MSDP Scaleout
- Monitoring NetBackup
- Monitoring MSDP Scaleout
- Monitoring Snapshot Manager deployment
- Managing the Load Balancer service
- Performing catalog backup and recovery
- Managing MSDP Scaleout
- About MSDP Scaleout maintenance
- Uninstalling MSDP Scaleout from AKS
- Uninstalling Snapshot Manager
- Troubleshooting
- Appendix A. CR template
Primary pod goes in non-ready state
When jobs are running and if failover or upgrade of NetBackup primary server is triggered then primary pod may go in non-ready state. To confirm the issue,
Exec into primary pod by running the following command:
kubectl exec -it <primary_pod_name> -n <namespace> -- bash
Open the logs using the cat /mnt/nblogs/setup-server.log command and verify the last lines:
Softlink /mnt/nbdata/usr/openv/netbackup/db/rb.db does not exist or broken. Error: Issue detected while validating soft links, restarting the pod may fix this. NetBackup health check disabled.
To resolve this issue, delete the corrupted database and correct symlink as follows:
Exec into primary pod by running the following command:
kubectl exec -it <primary_pod_name> -n <namespace> - bash
In primary pod run the following commands in order:
# /opt/veritas/vxapp-manage/nbu-health disable # bp.kill_all # mv -f /mnt/nbdata/usr/openv/netbackup/db/rb.db /mnt/nbdb/usr/openv/netbackup/db/rb.db # ln -sf /mnt/nbdb/usr/openv/netbackup/db/rb.db /mnt/nbdata/usr/openv/netbackup/db/rb.db # chown -h nbsvcusr:nbsvcusr /mnt/nbdata/usr/openv/netbackup/db/rb.db # bp.start_all # /opt/veritas/vxapp-manage/nbu-health enable