Tomcat日志中的错误码是服务器运行时异常的标识,常见类型及含义如下:
4xx 客户端错误
5xx 服务器错误
其他常见错误
OutOfMemoryError
(内存溢出)、Cannot allocate memory
(内存分配失败)。ClassNotFoundException
(类未找到)、FileNotFoundException
(文件不存在)。Permission denied
。server.xml
等配置文件语法错误或参数异常。具体错误需结合日志上下文进一步分析,可通过tail -f catalina.out
实时查看日志,或使用grep
过滤关键字定位问题。