为了正常的体验网站,请在浏览器设置里面开启Javascript功能!

linux系统添加根证书 linux证书信任列表

2018-04-28 5页 doc 20KB 50阅读

用户头像

is_633808

暂无简介

举报
linux系统添加根证书 linux证书信任列表linux系统添加根证书 linux证书信任列表 收藏 李星 , 发表于 1年前 , 阅读 3373 , 收藏 13 , 点赞 0 , 评论 0 摘要: linux 访问 https 证书问题 linux系统添加根证书 linux证书信任 列表 1.linux 访问 https 证书问题 [root@boss-test-dev001-jydx ~]# curl -v * About to connect() to mobile.mycard520.com.tw port 443 (#0) * Trying...
linux系统添加根证书 linux证书信任列表
linux系统添加根证书 linux证书信任列表 收藏 李星 , 发表于 1年前 , 阅读 3373 , 收藏 13 , 点赞 0 , 评论 0 摘要: linux 访问 https 证书问题 linux系统添加根证书 linux证书信任 列表 1.linux 访问 https 证书问题 [root@boss-test-dev001-jydx ~]# curl -v * About to connect() to mobile.mycard520.com.tw port 443 (#0) * Trying 220.130.127.122... connected * Connected to mobile.mycard520.com.tw (220.130.127.122) port 443 (#0) * Initializing NSS with certpath: sql:/etc/pki/nssdb * CAfile: /etc/pki/tls/certs/ca-bundle.crt CApath: none * Certificate is signed by an untrusted issuer: 'CN=TWCA Secure SSL Certification Authority,OU=Secure SSL Sub-CA,O=TAIWAN-CA,C=TW' * NSS error -8172 * Closing connection #0 * Peer certificate cannot be authenticated with known CA certificates curl: (60) Peer certificate cannot be authenticated with known CA certificatesMore details here: xx.se/docs/sslcerts.html curl performs SSL certificate verification by default, using a "bundle" of Certificate Authority (CA) public keys (CA certs). If the default bundle file isn't adequate, you can specify an alternate file using the --cacert option.If this HTTPS server uses a certificate signed by a CA represented in the bundle, the certificate verification probably failed due to a problem with the certificate (it might be expired, or the name might not match the domain name in the URL).If you'd like to turn off curl's verification of the certificate, use the -k (or --insecure) option. 2.现有 证书twca.cer 需要添加到 linux 证书信任列表 相关证书转换参见: #转换格式 .cer 到 .pem openssl x509 -inform der -in twca.cer -out twca.pem #追加到信任列表 cat twca.pem >> /etc/pki/tls/certs/ca-bundle.crt 3.添加后访问成功 [root@boss-test-dev01 certs]# curl -v * About to c onnect() to mobile.mycard520.com.tw port 443 (#0)* Trying 220.130.127.122... connected* Connected to mobile.mycard520.com.tw (220.130.127.122) port 443 (#0)* Initializing NSS with certpath: sql:/etc/pki/nssdb* CAfile: /etc/pki/tls/certs/ca-bundle.crt CApath: none* SSL connection using SSL_RSA_WITH_RC4_128_MD5* Server certificate:* subject: CN=mobile.mycard520.com.tw,OU=IT,O=Soft-World International Corporation,L=Kaohsiung,ST=Taiwan, C=TW* start date: Apr 29 03:21:58 2015 GMT* expire date: Nov 12 15:59:59 2017 GMT* com mon name: mobile.mycard520.com.tw* issuer: CN=TWCA Secure SSL Certification Authority,OU=Secure SSL Sub-CA,O=TAIWAN-CA,C=TW> GET /billing/RECEIVE.aspx HTTP/1.1> User-Agent: curl/7.19.7 (x86_64-redhat-linux-gnu) libcurl/7.19.7 NSS/3.13.1.0 zlib/1.2.3 libidn/1.18 libssh2/1.2.2> Host: mobile. mycard520.com.tw> Accept: */*> < HTTP/1.1 200 OK< Cache-Control: private < Content-Type: application/json;charset=utf-8 < Date: Tue, 16 Jun 2015 02:52:04 GMT < Content-Length: 18 < Set-Cookie: NSC_Npcjmf-XfcQ*80=ffffffffaf181f5345525d5f4f58455e445a4a423660;path=/;httponly < * Connection #0 to host mobile.mycard520.com.tw left intact * Closing connection #0 { "ResultCode":0 4.对于java中如果使用 HttpClient 访问https 可以使用以下命令导入到jre中的作为信任证书 keytool -import -keystore "/usr/local/jdk/jre/lib/security/cacerts" -storepass changeit -keypass changeit -alias twca -file twca.cer 过程中提示是否信任:输入yes即可 Trust this certificate? [no]: 配置过程如下: [root@boss-test-dev01 ~]# keytool -import -keystore "/usr/local/jdk/jre/lib/security/cacerts" -storepass chan geit -keypass changeit -alias twca -file /root/twca.cerOwner: CN=TWCA Root Certification Authority, OU= Root CA, O=TAIWAN-CA, C=TWIssuer: CN=TWCA Root Certification Authority, OU=Root CA, O=TAI WAN-CA, C=TW Serial number: 1 Valid from: Thu Aug 28 15:24:33 CST 2008 until: Tue Dec 31 23:59:59 CST 2030 Certificate fingerprints: MD5: AA:08:8F:F6:F9:7B:B7:F2:B1:A7:1E:9B:EA:EA:BD:79 SHA1: CF:9E:87:6D:D3:EB:FC:42:26:97:A3:B5:A3:7A:A0:76:A9:06:23:48 Signature algorithm name: SHA1withRSA Version: 3 Extensions: #1: ObjectId: 2.5.29.15 Criticality=true KeyUsage [ Key_CertSign Crl_Sign ] #2: ObjectId: 2.5.29.19 Criticality=trueBasicConstraints:[ CA:true PathLen:2147483647 ] #3: ObjectId: 2.5.29.14 Criticality=false SubjectKeyIdentifier [ KeyIdentifier [0000: 6A 38 5B 26 8D DE 8B 5A F2 4F 7A 54 83 19 18 E3 j8[&...Z.OzT....0010: 08 35 A6 BA .5.. ] ] Trust this certificate? [no]: yes Certificate was added to keystore
/
本文档为【linux系统添加根证书 linux证书信任列表】,请使用软件OFFICE或WPS软件打开。作品中的文字与图均可以修改和编辑, 图片更改请在作品中右键图片并更换,文字修改请直接点击文字进行修改,也可以新增和删除文档中的内容。
[版权声明] 本站所有资料为用户分享产生,若发现您的权利被侵害,请联系客服邮件isharekefu@iask.cn,我们尽快处理。 本作品所展示的图片、画像、字体、音乐的版权可能需版权方额外授权,请谨慎使用。 网站提供的党政主题相关内容(国旗、国徽、党徽..)目的在于配合国家政策宣传,仅限个人学习分享使用,禁止用于任何广告和商用目的。

历史搜索

    清空历史搜索