Displaying 1 result from an estimated 1 matches for "traceout".
Did you mean:
traceoute
2016 Nov 24
0
Updated my Dovecot certificate for the first time
...previous poster showed you how to do it with a real certificate, and
the steps are the same. However, the way I found out without too much
fuss was to process trace my alpine process and see where it tied to
load a cert
$ strace -o trace.out alpine
... quit after connection
$ grep -F cert traceout
/1: open64("/etc/openssl/cert.pem", O_RDONLY) Err#2 ENOENT
/1: stat("/etc/openssl/certs/cbf06781.0", 0xFFBF8E54) Err#2 ENOENT
...
Your output will be different of course. The first load is the default
pre-loaded root CAs (Thawte, etc.) supplied by OpenSSL,...