#!/bin/sh # this script can make certificate of each line in file you point which one! if [ $# -ne 1 ];then echo -e "\033[33m Input your domain's file \033[0m" exit 1 fi for line in `cat $1` do hostname=$line line="`echo $line|awk -F" …
SSL证书请求文件(CSR)生成指南 - Tomcat http://www.zhenssl.com/support/CSRgen/tomcat_CSR.htm 重要注意事项 An Important Note Before You Start 在生成CSR文件时同时生成您的私钥,如果您丢了私钥或忘了私钥密码,则颁发证书给您后不能安装成功!您必须重新生成私钥和CSR文件,免费重新颁发新的证书.为了避免此情况的发生,请在生成CSR后一定要备份私钥文件和记住私钥密码,最好是在收到证书之前不要再动…