代码之家  ›  专栏  ›  技术社区  ›  Julio Faerman

如何将SSL从Tomcat迁移到ApacheHTTPD?

  •  7
  • Julio Faerman  · 技术社区  · 14 年前

    我正在将我的单服务器Tomcat迁移到一个集群,由ApacheHTTPD(带mod_代理的反向代理)进行负载平衡和缓存。 是否可以将证书和密钥转换为Apache格式,或者我必须重新发布整个内容?

    1 回复  |  直到 11 年前
        1
  •  23
  •   Bruno    11 年前

    keytool openssl

    keytool -importkeystore -srckeystore thekeystore.jks \
                            -srcstoretype JKS \
                            -destkeystore thekeystore.p12 \
                            -deststoretype PKCS12
    

    openssl pkcs12 -in thekeystore.p12 -clcerts -nokeys -out servercert.pem
    

    umask 0077
    openssl pkcs12 -in thekeystore.p12 -nocerts -nodes -out serverkey.pem
    umask 0022
    

    -nodes

    SSLCertificateFile SSLCertificateKeyFile