使用浏览器
以下生成了一个我可以使用 keytool 导入的证书:
- 级别:sb1.geolearning.com
- 文件类型:DER编码的二进制,单一证书
对于后代,这是用于导入的命令:
sudo keytool -import -keystore /opt/jrun4/jre/lib/security/cacerts -alias "sb1.geolearning.com (Thawte SSL CA)" -storepass changeit -noprompt -trustcacerts -file ~/Downloads/sb1.geolearning.com
没有浏览器
这就是我这些天正在做的事情(在 Vagrant 供应商中)。在这个脚本中,密钥库是硬编码的,因为我现在只将它用于 Lucee;但是,密钥库的路径可以很容易地参数化。此外,runfile
相关代码只是让 Vagrant 不会多次运行脚本;如果您不将代码用作 Vagrant 供应商,那么这些行是多余的。
与上述解决方案真正区别的唯一一点是,它通过openssl s_client
(并用 清理它sed
)而不是通过浏览器手动获取证书。
#!/usr/bin/env bash
set -e
description="Add cert to Lucee's keystore."
while :
do
case $1 in
--provisioned-dir=*)
provisioned_dir=${1#*=} # Delete everything up till "="
shift
;;
--runfile-name=*)
runfile_name=${1#*=} # Delete everything up till "="
shift
;;
--site-host-name=*)
site_host_name=${1#*=} # Delete everything up till "="
shift
;;
-*)
echo "WARN: Unknown option (ignored): $1" >&2
shift
;;
*) # no more options. Stop while loop
break
;;
esac
done
runfile="${provisioned_dir}/${runfile_name}"
if [ -f "${runfile}" ]; then
echo "${description}: Already run."
exit 0
fi
echo "add cert to keystore"
echo -n | \
openssl s_client -connect ${site_host_name}:443 \
| sed -ne '/-BEGIN CERTIFICATE-/,/-END CERTIFICATE-/p' \
> /tmp/${site_host_name}.cert
/opt/lucee/jdk/jre/bin/keytool \
-import \
-keystore /opt/lucee/lib/lucee-server/context/security/cacerts \
-alias "${site_host_name} (self-signed)" \
-storepass changeit \
-file /tmp/${site_host_name}.cert \
-noprompt \
|| true
touch "${runfile}"