commandline.properties 文件用于配置命令行界面。它会随 Data Mover 命令行安装过程一起安装。
运行 Java Message Service (JMS) 消息代理程序的计算机的主机名或 IP 地址会在第一部分指定。如果要在运行时连接到其他 ActiveMQ 服务器(进而使用其他守护程序),则可以通过在 Data Mover 命令中输入相关参数来更改这些缺省值。
# Copyright (C) 2009-2019 by Teradata Corporation.
# All Rights Reserved.
# TERADATA CORPORATION CONFIDENTIAL AND TRADE SECRET
#----------------------------------------------------------------------------------------------
# File: "commandline.properties"
#
# Purpose: This file contains all of the properties used by the DM CommandLine.
#
# Caution: Do not modify the property names/values in this file unless absolutely sure
# of the implications to the DM CommandLine.
#
# Note: Any line of text in this document that begins with a '#' character is a comment and
# has no affect on the DM CommandLine. However, comments should not be modified.
#
# All properties under LOGGING Comment are used for logging purposes
#
#----------------------------------------------------------------------------------------------
# Purpose: The hostname or IP address of the machine running the
# Java Message Service (JMS) Message Broker.
# Default: localhost
# Other examples include:
# broker.url=10.0.1.199
# broker.url=hostname
# broker.url=[fe80::114:23ff:fe1d:32fb]
broker.url=localhost
# Purpose: The port number on the machine in which the
# Java Message Service (JMS) Message Broker is listening.
# Default: 61616
broker.port=61616
# Purpose: When set to true, a connection to a
# Secondary Java Message Service (JMS) Message Broker can be
# established in case the Primary Java Message Service (JMS) Broker fails.
# Default: false
cluster.enabled=false
#----------------------LOGGING-------------------------------
# Purpose: Set Logging level to info. User has 6 options.
# From most amount of logging to least: trace < debug < info < warn < error < fatal
rootLogger.level=info
# Purpose: Informs the logging application to use a specific appender and it's properties. DO NOT CHANGE
appender.rolling.type=RollingFile
appender.rolling.name=RollingFile
appender.rolling.layout.type=PatternLayout
appender.rolling.layout.pattern=%d [%t] %-5p %c{3}(%L) - %m%n
appender.rolling.policies.type=Policies
appender.rolling.policies.size.type=SizeBasedTriggeringPolicy
appender.rolling.strategy.type=DefaultRolloverStrategy
logger.rolling.name=com.teradata
logger.rolling.appenderRef.rolling.ref=RollingFile
# Purpose: Allow's user the ability to change the location of the log file.
# If changing log file location, please give the absolute path of the file;
# for example, /var/log/dmCommandLine.log
# for windows os: use slash instead of back slash:
# For Example: C:/Program File/Teradata/Log/dmCommandLine.log
appender.rolling.fileName=dmCommandLine.log
appender.rolling.filePattern=dmCommandLine.log.%i
# Purpose: The max size of the logging file before being rolled over to backup files.
appender.rolling.policies.size.size=20MB
# Purpose: The number of backup logging files created, after the max number, the oldest file is erased.
appender.rolling.strategy.max=5
#------------------------------------------------------------