Thanks Rich. openssl version -a … OPENSSLDIR: "/usr/local/openssl-1.0.2a/ssl" ————— That tells me the dir openssl is looking in. ls /usr/local/openssl-1.0.2a/ssl total 36 drwxr-xr-x 6 root root 4096 2019-10-23 16:34 . drwxr-xr-x 7 root root 4096 2019-10-22 12:27 .. drwxr-xr-x 2 root root 4096 2019-10-22 13:23 certs drwxr-xr-x 6 root root 4096 2019-10-21 16:01 man drwxr-xr-x 2 root root 4096 2019-10-21 16:02 misc -rw-r--r-- 1 root root 10835 2019-10-21 16:02 openssl.cnf drwx------ 2 root root 4096 2019-10-21 16:29 private ca-bundle.crt IS in certs. On another system, where openssl s_client works, there is a link: lrwxrwxrwx 1 root root 19 May 10 2015 cert.pem -> certs/ca-bundle.crt I created this link in /usr/local/openssl-1.0.2a/ssl and now openssl s_client works on the system I am working on. I will update to the newer version. Thank you for the pointer. |