tlsutil Examples | Teradata Vantage - tlsutil Examples - Advanced SQL Engine - Teradata Database

Security Administration

Product
Advanced SQL Engine
Teradata Database
Release Number
17.10
Published
July 2021
Language
English (United States)
Last Update
2022-02-15
dita:mapPath
ppz1593203596223.ditamap
dita:ditavalPath
wrg1590696035526.ditaval
dita:id
B035-1100
lifecycle
previous
Product Category
Teradata Vantageā„¢

Run the following examples from the command line.

tlsutil is located in /opt/teradata/tdgss/bin.

You must be logged in as root to run tlsutil.

Example: Create a CSR for every node

# tlsutil -c mydb.example.com

Example: Install signed certificates on nodes

# tlsutil -i

Example: Create a single CSR for use on every node

# tlsutil -c -s mydb.example.com

Example: Create a CSR for the local node only

# tlsutil -c -l mydb.example.com

Example: Create CSRs only for nodes where the certificates are invalid or will expire within 30 days

# tlsutil -c -u -e 30 mydb.example.com

Example: Create a CSR for every node using a 4096 bit RSA key

# tlsutil -c -k rsa:4096 mydb.example.com

Example: Create a CSR for every node using an elliptic curve key

# tlsutil -c -k ec:secp384r1 mydb.example.com