Hello, So SAS support resolved my issue. What had happened was I had imported one of PKCS7 cert file which actually messed up the trustedcerts.jks/trustedcerts.pem file in the /opt/sas/sashome/SASSecurityCertificateFramework/1.1/cacerts directory. Due to which even when I trying the import the right certs, I was getting an error. The reason is SDM actually saves all the certs that we import and so it was constantly throwing an error. SAS support mentioned it as a defect in SDM and are planning to correct it. So as a workaround, we removed the trustedcerts.jks and trustedcerts.pem file and removed all the unwanted/bad certs from the directory and re-imported the right certs again and that did the trick. Here are the command to check the certs that your IT provides. Would save a lot of time, keytool -printcert -file ca-chain.pem openssl x509 -text -noout -in <your-server>.cer openssl verify -CAfile ./ca-chain.pem <your-server>.cer Thanks
... View more