How to Import a Certificate into Trust Store
Hi All,
This is a pretty basic/silly question, we're running Sun App Server 8.1 EE on Solaris, I need to import a CA cert into the truststore of the app server for one of my applications. Here's what I'm doing
certutil -A -a -n "XXXX-ca" -t "T,C,C" -d ..../domainX/config -i XXXX.cer
This command seems to work but when I try to list all certificates:
certutil -L -d .../domainX/config
I don't see the "XXXX-ca" certificate. I've tried creating a new certificate db (certutil -N) elsewhere and importing my cert file to see if the problem was with the certificate file, but this works okay.

