本文介绍了是否可以将cacerts的所有内容导入到jssecacerts文件中?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
使用keytool或其他方法,是否有简单的方法将cacerts的所有内容导入jssecacerts文件?
Using keytool , or some other method, is there an easy way to import all contents of cacerts into a jssecacerts file?
基本上,我想定义自己的jssecacerts,但我希望jssecacerts也包含cacerts文件的所有受信任条目.原因是我相信当jssecacerts文件存在时,cacerts文件的内容将被忽略.
Basically, I want to define my own jssecacerts but I want that jssecacerts to also contain all the trusted entries of the cacerts file. The reason for this is that I believe that when the jssecacerts file exists, the cacerts file contents are ignored.
推荐答案
我知道了:
%JRE_HOME%\bin\keytool.exe -importkeystore -destkeystore jssecacerts
-deststoretype jks -srcstorepass changeit -deststorepass changeit
-v -noprompt -srckeystore %JRE_HOME%\lib\security\cacerts
这篇关于是否可以将cacerts的所有内容导入到jssecacerts文件中?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!