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,解决了

  • 相关阅读:
    Xshell 使用纪要
    矩阵求逆
    Ubuntu 增加新用户
    matlab 常用图像处理
    Surface Evolver 基本操作、使用指南和珍贵资料
    latex 裁剪图片
    Inkscape 输入希腊字母
    Pyton——int内部功能介绍
    python——登陆接口设计(循环方法)
    Python之三层菜单
  • 原文地址:https://www.cnblogs.com/fengzhanfei/p/6144636.html
Copyright © 2011-2022 走看看