生成证书库(包含私钥)有效期365*50=18250天
keytool -genkey -alias thrift -keyalg RSA -keystore E:\thrift\ca\keystore -keysize 1024 -validity 18250
导出凭证文件
keytool -export -alias thrift -keystore E:\thrift\ca\keystore -file E:\thrift\ca\truststore.cer
把认凭证件导入到truststore文件
keytool -import -alias thrift -file E:\thrift\ca\truststore.cer -keystore E:\thrift\ca\truststore
验证新创建的truststore文件
keytool -list -v -keystore E:\thrift\ca\truststore
原创内容转载请保留出处GEEK笔记(https://www.geekapp.cn/)。