Please enter search query.
Search <book_title>...
NetBackup™ Deployment Guide for Kubernetes Clusters
Last Published:
2024-06-17
Product(s):
NetBackup & Alta Data Protection (10.4.0.1)
- Introduction
- Section I. Configurations
- Prerequisites
- Recommendations and Limitations
- Configurations
- Configuration of key parameters in Cloud Scale deployments
- Section II. Deployment
- Section III. Monitoring and Management
- Monitoring NetBackup
- Monitoring Snapshot Manager
- Monitoring MSDP Scaleout
- Managing NetBackup
- Managing the Load Balancer service
- Managing PostrgreSQL DBaaS
- Performing catalog backup and recovery
- Managing MSDP Scaleout
- Section IV. Maintenance
- MSDP Scaleout Maintenance
- PostgreSQL DBaaS Maintenance
- Patching mechanism for Primary and Media servers
- Upgrading
- Cloud Scale Disaster Recovery
- Uninstalling
- Troubleshooting
- Troubleshooting AKS and EKS issues
- Troubleshooting AKS-specific issues
- Troubleshooting EKS-specific issues
- Troubleshooting AKS and EKS issues
- 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/nb-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/nb-health enable