Persistent environment variables for AIX
Setting system variables as persistent environment variables is a one-time task. Review the following variables to set:
DigiCert ONE host
Client authentication certificate path and password
Set persistent environment variables
To set persistent variables:
Launch the Terminal application.
Open the file in an editor:
nano ~/.profile
Add any exports definitions you need:
export SM_API_KEY= <API key> export SM_HOST=<host URL> export SM_CLIENT_CERT_FILE=<P12 client authentication certificate file path> export SM_CLIENT_CERT_PASSWORD=<P12 client authentication certificate password>
Click CTRL+X to exit.
Click Y to save.
Click Enter to keep the same file name.
Execute the new .profile by restarting Terminal or using:
source ~/.profile
Remove persistent variables
Once your API key and client certificate password is securely stored in the properties file, ensure that your API key and client authentication certificate password is removed from persistent variables.
To remove persistent variables from .profile:
Launch the Terminal application.
Open the file in an editor:
nano ~/.profile
Remove the following from the .profile:
export SM_API_KEY= <API key> export SM_CLIENT_CERT_PASSWORD=<P12 client authentication certificate password>
Click CTRL+X to exit.
Click Y to save.
Click Enter to keep the same file name.
Execute the new .profile by restarting Terminal or using:
source ~/.profile
Proxy configuration
Configure the HTTPS_PROXY environment variable if the client tool need to communicate through a proxy.
Anonymous proxy
Use this command if your proxy does not require authentication:
export HTTPS_PROXY=https://<proxy_host>:<proxy_port>
Authenticated proxy
Use this command if your proxy requires authentication:
export HTTPS_PROXY=https://user:password@<proxy_host>:<proxy_port>