• linux服务器无法显示tomcat详细错误信息



    严重: One or more listeners failed to start. Full details will be found in the appropriate container log file

    WEB-INF/classes目录下新建一个文件叫logging.properties

    handlers = org.apache.juli.FileHandler, java.util.logging.ConsoleHandler  
    ############################################################  
    # Handler specific properties.  
    # Describes specific configuration info for Handlers.  
    ############################################################  
    org.apache.juli.FileHandler.level = FINE  
    org.apache.juli.FileHandler.directory = ${catalina.base}/logs  
    org.apache.juli.FileHandler.prefix = error-debug.  
      
    java.util.logging.ConsoleHandler.level = FINE  
    java.util.logging.ConsoleHandler.formatter = java.util.logging.SimpleFormatter
    

     我们再启动tomcat时,就会在logs目录下生成一个更详细的日志error-debug.xxx.log

  • 相关阅读:
    VS Code 调试报错
    Nginx反向代理设置
    Nginx 的配置文件
    Nginx 的常用的命令
    CentOS7安装Nginx
    Docker配置
    Centos7 安装MySQL 5.7
    限制Redis使用的最大内存
    C#操作Redis
    Font Awesome 字体图标
  • 原文地址:https://www.cnblogs.com/wujixing/p/5945025.html
Copyright © 2020-2023  润新知