config_dd_boost - BAR - Data Stream Architecture - Use the config_dd_boost command to configure the DD Boost server for the DSA repository. 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_dd_boost command configures the DD Boost server for the DSA repository.

Syntax

config_dd_boost -f|-file FILE

Example

dsc config_dd_boost -f configddboost.xml

Parameters

f|file filename
The full path and name of the file containing the necessary configuration parameters.
Example:  configDDBoost.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

When you use the config_dd_boost command, you will be prompted for the DD boost user name and password. For example:

dsc config_dd_boost -f ..\samples\sample_config_dd_boost.xml
Data Stream Controller Command Line 16.00.00.00
Command parameters:
-file : ..\samples\sample_config_dd_boost.xml
Enter DD Boost user name:
dd_user
Enter DD Boost user password:

Connected to DSC version 16.00.00.00
Saving dd_boost server...
Saving dd_boost server name: dddomain1
Saving dd_boost server with server id: 1

XML File Example

The sample XML file below contains the required parameters to configure a DD Boost server.
           <!--****The command below must be on one line.****-->
<dscConfigDDBoost dscVersion="" 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>dddomain1</third_party_server_name>

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

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

 <!-- storage_units' - Required (at least one) -->
 <storage_units>

    <!-- 'storage_unit_name' - Required, max characters 50, alphanumeric and "-","_"   -->
    <storage_unit_name>storage_unit1</storage_unit_name>

    <!-- 'max_files' - Required, Integer, min value is 1-->
    <max_files>4</max_files>
 </storage_units>

 <storage_units>
    <storage_unit_name>storage_unit2</storage_unit_name>
    <max_files>5</max_files>
 </storage_units>
</dscConfigDDBoost>