markdown 使用OpenSSL下载PEM证书并导入Java TrustStore

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了markdown 使用OpenSSL下载PEM证书并导入Java TrustStore相关的知识,希望对你有一定的参考价值。

## Download the Certificate using OpenSSL Command

```
echo "" | openssl s_client -connect server-that-you-want-to-connect:port -showcerts 2>/dev/null | openssl x509 -out cert.pem
```

## Import the downloaded certificate using Java 11 to truststore

```
keytool -import -storepass changeit -noprompt -file cert.pem -cacerts
```

## Import the downloaded certificate using Java 8 to truststore

```
keytool -import -keystore $JAVA_HOME/lib/security/cacerts -storepass changeit -noprompt -file cert.pem -cacerts
```

以上是关于markdown 使用OpenSSL下载PEM证书并导入Java TrustStore的主要内容,如果未能解决你的问题,请参考以下文章

openssl生成.pem证书

pem 格式证书 怎么使用openssl

openssl pem证书 转换为p12类型证书

使用 openssl 以编程方式提取 pem 证书信息

如何配置tomcat证书

openssl .p12 证书只有一个串联的 .pem 证书信息