Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Tomcat-8.0.44: Why a SEVERE log "One or more Filters failed to start"

I installed Tomcat-8.0.44 and put a war file named bimserver.war in webapps folder. But when I ran the startup.bat routine, I got two Severe Log info:

24-May-2017 01:15:53.065 SEVERE [localhost-startStop-1] org.apache.catalina.core.StandardContext.startInternal One or more Filters failed to start. Full details will be found in the appropriate container log file
24-May-2017 01:15:53.068 SEVERE [localhost-startStop-1] org.apache.catalina.core.StandardContext.startInternal Context [/bimserver] startup failed due to previous errors

It seems that some filters of tomcat failed to start. This prevented bimserver from starting. How should the filters be configured?

like image 464
KyrinWoo Avatar asked May 23 '17 17:05

KyrinWoo


1 Answers

As your log suggests (Full details will be found in the appropriate container log file), you should check Tomcat log, and then you can find the message starts with Exception starting filter ....

like image 66
Kohei TAMURA Avatar answered Sep 18 '22 11:09

Kohei TAMURA