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
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>
Select CTRL+X to exit.
Select Y to save.
Select Enter to keep the same file name.
Run the new .profile by restarting Terminal or using:
source ~/.profile
Remove persistent variables
When your API key and client certificate password are securely stored in the properties file, remove them from persistent variables. This action helps prevent unauthorized access and keeps your credentials secure.
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>
Select CTRL+X to exit.
Select Y to save.
Select Enter to keep the same file name.
Run 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
If your proxy doesn't require authentication, run the following command:
export HTTPS_PROXY=https://<proxy_host>:<proxy_port>
Authenticated proxy
If your proxy requires authentication, run the following command:
export HTTPS_PROXY=https://user:password@<proxy_host>:<proxy_port>