zoukankan      html  css  js  c++  java
  • Tomcat启动报错整理

    1、启动报

        Connector attribute SSLCertificateFile must be defined when using SSL with APR

           confserver.xml下的

          <Connector port="8443" protocol="HTTP/1.1" SSLEnabled="true"
                  maxThreads="150" scheme="https" secure="true"
                  lientAuth="false" sslProtocol="TLS" 
                  keystoreFile="F:Servicekey	omcat.keystore"  
                  keystorePass="tomcat"  
                  ciphers="tomcat"/>

          修改为

          <Connector port="8443" protocol="org.apache.coyote.http11.Http11Protocol" SSLEnabled="true"
                  enableLookups="false"
                  acceptCount="100" disableUploadTimeout="true"
                  maxThreads="150" scheme="https" secure="true"
                  clientAuth="false" sslProtocol="TLS"
                  keystoreFile="F:Servicekey	omcat.keystore"
                  keystorePass="tomcat" />

          OK,解决了

  • 相关阅读:
    FPM
    Docker记录
    阿里云ECS发送企业邮件
    git操作
    vscode+vagrant+xdebug调试
    Spring Security开发安全的REST服务
    559. Maximum Depth of N-ary Tree
    《算法图解》之散列表
    766. Toeplitz Matrix
    893. Groups of Special-Equivalent Strings
  • 原文地址:https://www.cnblogs.com/fengzhanfei/p/6144636.html
Copyright © 2011-2022 走看看