NetBackup IT Analytics System Administrator Guide
- Introduction
- Preparing for updates
- Backing up and restoring data
- Monitoring NetBackup IT Analytics
- Accessing NetBackup IT Analytics reports with the REST API
- Defining NetBackup estimated tape capacity
- Automating host group management
- Categorize host operating systems by platform and version
- Bulk load utilities
- Automate NetBackup utilities
- Scheduling utilities to run automatically
- Attribute management
- Importing generic backup data
- Backup job overrides
- Managing host data collection
- System configuration in the portal
- Custom parameters
- Performance profile schedule customization
- Configuring AD/LDAP
- Configuring single sign-on (SSO) using security assertion markup language (SAML)
- Change Oracle database user passwords
- Integrate with CyberArk
- Tuning NetBackup IT Analytics
- Working with log files
- Portal and data collector log files - reduce logging
- Data collector log file naming conventions
- Portal log files
- Defining report metrics
- SNMP trap alerting
- SSL certificate configuration
- Configure virtual hosts for portal and / or data collection SSL
- Keystore on the portal server
- Portal properties: Format and portal customizations
- Data retention periods for SDK database objects
- Troubleshooting
- Appendix A. Configure TLS-enabled Oracle database on NetBackup IT Analytics Portal and data receiver
Setting a host's priority
NetBackup IT Analytics can collect host data from multiple vendor products (subsystems), such as Veritas NetBackup and IBM XIV. When host data is collected from more than one subsystem, host reports will display the data from the primary subsystem. NetBackup IT Analytics provides a default ranking for subsystems. When a host is collected, that rank order is referenced to determine if the collected host is coming from the primary subsystem.
An Administrator can override that default ranking and configure a different source subsystem as primary by using the following instructions to customize the ranking for your enterprise.
Log on to the Portal Server as user
.At the command prompt, type:
Execute the following at the
prompt to view the default host ranking. In this table, the Product Types translate to: 1 = backup, 2 = capacity, 4 = virtualization, 8 = replication, 16 = fabric, 32 = File Analytics.SQL> SELECT * from apt_host_source_rank;
aptare_product_type
product_vendor
priority
product_vendor_name
100
1
202
Veritas NetBackup
1
4
203
Tivoli Storage Manager
1
3
204
EMC NetWorker
1
5
205
CommVault Simpana
1
6
206
HP Data Protector
1
2
207
Veritas Backup Exec
1
9
208
Generic Backup
1
7
209
EMC Avamar
4
51
301
VMware
4
52
302
IBM VIO
2
41
201
Host Resource
2
21
401
Hitachi Data Systems
2
211
402
Hitachi NAS
2
22
403
EMC
2
221
404
EMC CLARiiON
2
222
405
EMC Symmetrix
2
223
406
EMC VNX (Celerra)
2
225
407
EMC Isilon
2
231
408
NetApp Cluster-Mode
2
23
409
NetApp
2
24
410
HP
2
241
411
HP 3PAR
2
25
412
IBM
2
26
413
NetApp E-Series
2
27
414
IBM SVC
2
28
415
HP EVA
2
254
416
IBM XIV
2
29
417
Dell Compellent
8
61
501
NetApp SnapMirror
8
62
502
NetApp SnapVault
16
701
601
Brocade Switch
16
703
603
Cisco Switch
32
801
700
File Analytics
1
32
701
EMC Data Domain
800
HBA CSV Load
801
CSV Load
Execute the following to customize the host source subsystem ranking for your enterprise. This command can be repeated for as many vendor products (subsystems) as needed in your environment. It updates a custom host source ranking table, which is specific to your environment.
SQL> INSERT INTO apt_host_user_source_rank (domain_id, aptare_product_type, product_vendor, priority, product_vendor_name) VALUES (<domain_id_value>, <aptare_product_type_value>, <product_vendor_value>, <priority_value>, '<product_vendor_name_value>'); SQL> Commit;
where:
<domain_id_value>
Most environments have only one Domain ID, however, Managed Service Providers (MSPs) will have a different Domain ID for each of their customers.
To list the currently configured Domain IDs, use the following SQL SELECT statement:
SELECT * from apt_domain;
<aptare_product_type_value>
The product type is a number that represents the NetBackup IT Analytics product, such as Capacity Manager.
1 = backup, 2 = capacity, 4 = virtualization, 8 = replication, 16 = fabric, 32 = File Analytics
<product_vendor_value>
This number represents the vendor and subsystem from which the host data is collected.
<priority_value>
This number sets the priority ranking for the host. Priority numbers used by customers should be between 1 and 99.
'<product_vendor_name_value>'
This name corresponds to the vendor_number; for example, EMC Avamar. This must be entered exactly as it is listed in the Default Host Ranking Table.
Note:
The product vendor name is not mandatory when the product vendor (number) is available. In this case, a null value within single quotes can be used for the product vendor name value.
Example:
INSERT INTO apt_host_user_source_rank (domain_id, aptare_product_type, product_vendor, priority, product_vendor_name) VALUES (100396, 1, 1, 88, 'Veritas NetBackup'); Commit;
Execute the following to view the host ranking that you customized for your enterprise:
SQL> SELECT * from apt_host_user_source_rank;
To update a rank that you have customized, use the following steps. Refer to the
for column names.
SQL> update apt_host_user_source_rank set <column_name> = <value> where <column_name> = <Value>;
Example:
update apt_host_user_source_rank set priority = 91 where product_vendor = 1;