config_nbu - BAR - Data Stream Architecture - Use the config_nbu command to configure a DSA system to use Veritas NetBackup third-party software to back up and restore data. Learn more here.

Teradata® DSA User Guide

Product
BAR
Data Stream Architecture
Release Number
16.20
Published
November 2019
Language
English (United States)
Last Update
2019-11-27
dita:mapPath
xfr1514490991957.ditamap
dita:ditavalPath
3150_DSA_UG_1650-working-RR-new.ditaval
dita:id
B035-3150
lifecycle
previous
Product Category
Software
Teradata Tools and Utilities

Purpose

The config_nbu command configures a DSA system to use Veritas NetBackup third-party software to back up and restore data.

Syntax

config_nbu -f|-file File

Example

dsc config_nbu -f configNbu.xml

Parameters

f|file filename
The full path and name of the file containing the necessary configuration parameters.
Example:  nbu_config.xml
u|user_authentication User
Required when security management is enabled. Supplies the command with the Viewpoint user, and triggers a password prompt for authentication.

Permissions required: Administrator role

Usage Notes

The policies you define are case-sensitive and must match the policies defined in NetBackup.

The component name can only use the following characters: 'A-Z', 'a-z', '0-9' and '_'.

XML File Example

The sample XML file below specifies parameters to configure NetBackup servers.

<?xml version="1.0" encoding="UTF-8" ?> 

          <!--****The command below must be on one line.****-->
<dscConfigNbu xmlns="http://schemas.teradata.com/v2012/DSC"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://schemas.teradata.com/v2012/DSC DSC.xsd">

 <!-- 'third_party_server_name' Required, max characters 32, alphanumeric and "-","_",
       first character must be alphanumeric --> 
 <third_party_server_name>remoteNbu1</third_party_server_name>

 <!-- 'ip_address' - Required, max characters 50, alphanumeric and "-","_",".",":" --> 
 <ip_address>99.23.23.555</ip_address> 

 <!-- 'third_party_media_type' - Required, accepted value: net_backup --> 
 <third_party_media_type>net_backup</third_party_media_type>

 <!-- 'policy_class' - Optional --> 
 <policy_class>

 <!--  'policy_class_name' - Required, max characters 128, alphanumeric and "-","_" --> 
 <policy_class_name>policy711</policy_class_name> 

 <!--  'storage_devices' - Required, max characters 3, numeric range between 1-999 --> 
 <storage_devices>200</storage_devices> 
 </policy_class>
 <policy_class>
  <policy_class_name>policy712</policy_class_name> 
  <storage_devices>100</storage_devices> 
 </policy_class>
 <policy_class>
  <policy_class_name>policy713</policy_class_name> 
  <storage_devices>100</storage_devices> 
 </policy_class>
 <policy_class>
  <policy_class_name>policy721</policy_class_name> 
  <storage_devices>100</storage_devices> 
 </policy_class>
 <policy_class>
  <policy_class_name>policy722</policy_class_name> 
  <storage_devices>100</storage_devices>
 </policy_class>

<!-- 'media_server_name' - Required, used to communicate with NBU server to request 
      information about the catalog --> 
<media_server_name>bets_media_server</media_server_name>
</dscConfigNbu>