博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
openssl CA 自签证书,阿里云配置tomcat https
阅读量:5943 次
发布时间:2019-06-19

本文共 1039 字,大约阅读时间需要 3 分钟。

<一,openssl CA自签发证书>

1,生成私钥

openssl genrsa 1024 > private.key;

2,从私钥中生成公钥(可选项)

openssl rsa -in private.key -pubout > public.key;

3,生成证书请求文件

openssl req -new -key private.key -out my.csr;

CA的配置 

3. 配置做成CA
cd /etc/pki/tls
   vim openssl.cnf
找到[ CA_default ]
 
dir             = /etc/pki/CA              # Where everything is kept
certs           = $dir/certs            # Where the issued certs are kept
crl_dir         = $dir/crl              # Where the issued crl are kept
database        = $dir/index.txt        # database index file.
new_certs_dir   = $dir/newcerts         # default place for new certs.
保存退出
     接着cd ../CA目录下:
        mkdir certs crl newcerts
        touch index.txt  serial
        echo 00 > serial
   4.  创建CA的证书:CA要想给别人发证首先自己得有证
      cd private
      openssl genrsa 1024 > cakey.pem
      生成自签的证书
   cd ..
      openssl req –new –x509 –key private/cakey.pem –out cacert.pem
 给请求者发证:切到
 openssl ca –in my.csr –out my.crt
<配置阿里云tomcat https>
1,首先配置jdk1.7及tomcat7
配置阿里云公网SLB后使用SLB 的ip访问ECS所发布的app
测试使用公网SLB https访问后端ECS所发布的tomcat app
1,我们首先使用crt未安装在客户端情况
 
2,我们使用winscp讲147上的my.crt下载下来
 
posted on
2015-05-06 21:15 阅读(
...) 评论(
...)

转载于:https://www.cnblogs.com/ruiy/p/4483198.html

你可能感兴趣的文章
IPSEC传输模式和隧道模式的区别
查看>>
lnmp分离部署
查看>>
利用nRF Sniffer对蓝牙BLE通信数据进行嗅探和分析
查看>>
我的友情链接
查看>>
一个网络爬虫实验
查看>>
我的友情链接
查看>>
我的友情链接
查看>>
/bin/bash^M解决办法
查看>>
终于拿证了
查看>>
SecureCRT从Windows中上传文件lrzsz工具
查看>>
socket的阻塞非阻塞方法在缓冲区的差别
查看>>
动态rem与1px边框问题的理解
查看>>
PyQt 编程基本思想-HelloWorld
查看>>
Access restriction: The type Unsafe is not accessible due to restriction on required library
查看>>
Ruby错误:iconv will be deprecated in the future, use String#encode instead.
查看>>
SmsManager#sendTextMessage的BUG
查看>>
Brocade光纤交换机FOS升级
查看>>
linux哲学思想
查看>>
我的友情链接
查看>>
如何安全设置无线路由
查看>>