红联Linux门户
Linux帮助

Linux生成ssl证书

发布时间:2015-12-18 16:07:03来源:linux网站作者:xshanj2

首先安装openssl:
https://www.openssl.org/


然后输入以下命令生成证书:

openssl genrsa -des3 -out server.key 1024
openssl req -new -key server.key -out server.csr
cp server.key server.key.org
openssl rsa -in server.key.org -out server.key
openssl x509 -req -days 365 -in server.csr -signkey server.key -out server.crt


这样生成的证书是无法通过验证的,只能用作测试或者内网使用。


Linux下生成OpenSSL证书:http://www.linuxdiyf.com/linux/10763.html

ubuntu安装openssl库:http://www.linuxdiyf.com/linux/13828.html

Ubuntu编译环境构建(openssl):http://www.linuxdiyf.com/linux/13751.html

Linux下使用OpenSSL生成证书:http://www.linuxdiyf.com/linux/11951.html

Linux下OpenSSL安装图文详解:http://www.linuxdiyf.com/linux/8744.html