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
Example: Create a CSR for use on all nodes of a cloud-based system
# tlsutil -c -s -n mydb.example.com