NetBackup IT Analytics Data Collector Installation Guide for Backup Manager
- Introduction
- Pre-Installation setup for Commvault Simpana
- Open TCP/IP access to the Commvault database
- Set up a read-only user in the CommServe server
- Pre-Installation setup for Cohesity DataProtect
- Pre-Installation setup for EMC Avamar
- Import EMC Avamar server information
- Pre-Installation setup for EMC Data Domain backup
- Pre-Installation setup for EMC NetWorker
- Architecture overview (EMC NetWorker)
- Pre-Installation setup for Dell EMC NetWorker backup & Recovery
- Pre-Installation setup for generic backup
- CSV format specification
- Pre-Installation setup for HP Data Protector
- Architecture overview (HP Data Protector)
- Configure the Data Collector server in Cell Manager (HP Data Protector)
- Pre-Installation setup for IBM Spectrum Protect (TSM)
- Architecture overview (IBM Spectrum Protect -TSM)
- Import IBM Spectrum Protect (TSM) information
- Pre-Installation setup for NAKIVO Backup & Replication
- Pre-Installation setup for Veritas Backup Exec
- Pre-Installation setup for Veritas NetBackup
- Prerequisites to use SSH and WMI (Veritas NetBackup)
- Prerequisites for NetBackup collection over SSH (Kerberos option)
- Configuring file analytics in NetBackup Data Collector policy
- Pre-Installation setup for Oracle Recovery Manager (RMAN)
- Pre-Installation setup for Rubrik Cloud Data Management
- Pre-Installation setup for Veeam Backup & Replication
- Discovery policies for Veritas NetBackup
- About Discovery types
- About SNMP probes
- Installing the Data Collector software
- Validate data collection
- Manually start the Data Collector
- Uninstall the Data Collector
- Appendix A. Load historic events
- Load Veritas NetBackup events
- Appendix B. Firewall configuration: Default ports
Load events for a group of NetBackup clients
To load the historic events for a group of NetBackup clients, execute the following command-line scripts.
Note:
This process will only load data for clients that are listed in standard policies. It will not retrieve data for clients not explicitly listed in policies. For example, VMware VMs that are part of a VMware Intelligent Policy will not be included.
Create a NetBackup client list:
/usr/openv/netbackup/bin/admincmd/bpplclients -noheader -allunique > /tmp/client_list.txt
Load the list into a for loop:
for i in `awk '{print $3}' /tmp/client_list.txt` do /<APTARE HOME>/mbs/bin/veritas/load_nbu_backups.sh <metaDataCollectorId> <primaryServerName> $i "<Start_Date>" "<End_Date>" done
Note:
Start_Date and End_Date must be in the format: YYYY-MM-DD HH:MM:SS
Where:
The MetadataCollectorID can be found by executing the following utility:
For Windows: C:\opt\Aptare\mbs\bin\listcollectors.bat
For Linux: /opt/aptare/mbs/bin/listcollectors.sh
Create a NetBackup client list:
C:\program files\Veritas\netbackup\bin\admincmd\bpplclients -noheader -allunique > c:\client_list.txt
Load the list into a for loop:
for /F "tokens=3" %A in (c:\client_list.txt) do "c:\program files\aptare\mbs\bin\veritas\load_nbu_backups.bat" <metaDataCollectorId> <primaryServerName> %A "<Start_Date>" "<End_Date>"
Start_Date and End_Date must be in the format: YYYY-MM-DD HH:MM:SS
Note:
If the path C:\Program Files fails, try it as C:\Progra~1 or C:\Progra~2