Issue:
I see below error message in SAS Enterprise Miner log:ERROR: SSL Error: Missing CA trust list
Solution:
This issue occurs if SSL certificate is not set correctly. To rectify this problem, you need to mention the SSL certificate location in SSLCALISTLOC option. SSLCALISTLOC option can be invoked in many ways. Here I will explain invoking this option using Workspace Server.
- Stop the Object spawner.
- Take backup of /sas-config-directory/Lev1/SASApp/WorkspaceServer/sasv9_usermods.cfg and opne the file in your favorite text editor.
- Add the below line to the file
- SSLCALISTLOC="/etc/pki/tls/cert.pem"
- Save the file.
- Start the Object spawner.
Run below code in SAS Enterprise Guide to check the settings change:
proc options option=SSLCALISTLOC value; run;
proc options option=SSLCALISTLOC value; run;
Comments
Post a Comment