Geoserver Error One or more listeners failed to start

I am running GeoServer 2.7.1 on Tomcat 7.0.62 on OS X 10.10. I installed Tomcat with Homebrew and copied the GeoServer 2.7.1 war file to the webapps directory. When I try to start GeoServer this message fails.

SEVERE: One or more listeners failed to start. Full details will be found in the corresponding container log file

I don't see any other specific bugs in Catalina. Maybe this is the problem below?

INFO: at least one JAR was scanned for a TLD but did not contain a TLD. Turn on debug logging for this logger for a complete list of JAR files checked, but no TLDs were found. Skipping unnecessary JARs during scanning can improve JSP startup and compile times.
June 22, 2015 3:48:20 AM org.apache.catalina.core.StandardContext startInternal
SEVERE: One or more listeners failed to start. Full details will be found in the corresponding container log file
on June 22, 2015 3:48:20 AM org.apache.catalina.core.StandardContext startInternal
SEVERE: Context [/ geoserver] startup failed due to previous errors

Does anyone know where I can start looking for configuration errors etc.?

+3


source to share


2 answers


Thanks @SL Bart, that was the problem. I had to override Java8 to Java7. Now it works! This guide was helpful



+2


source


I had a similar problem, adding the setenv.sh file to tomcat / bin folder or changing the jdk path in the service script (if you run tomcat as a service) solves this problem. The deployment of the web app depends on the specific jdk version.



+3


source







All Articles