I completed the following steps to generate my SSL cert request:
openssl genrsa -out key 2048
openssl req -new -key key -out csr
Then I submitted my csr to my signing authority, and got my cert back.
I put in in a file named "cert"
Now I want to verify that the cert is correct.
openssl verify cert
I get the original O and OU results back, but additionally I get the following error:
error 20 at 0 depth lookup:unable to get local issuer certificate
Am I correctly verifying the cert, and if so, why am I getting this error? If not, what am I doing wrong?