标签:请求 公钥 openssl sign 输出 conf 密钥对 glin tmp
cd /usr/local/nginx/confwhich openssl
openssl genrsa -des3 -out tmp.key 2048 //rsa形式的key文件为私钥
openssl rsa -in tmp.key -out aminglinux.key //-in转换key,取消密码 -out输出的
rm -f tmp.key
openssl req -new -key aminglinux.key -out aminglinux.csr //生成证书请求文件,需要拿这个文件和私钥一起生产公钥文件
openssl x509 -req -days 365 -in aminglinux.csr -signkey aminglinux.key -out aminglinux.crt
这里的aminglinux.crt为公钥
标签:请求 公钥 openssl sign 输出 conf 密钥对 glin tmp
原文地址:http://blog.51cto.com/lsxme/2058937