3
I am having a problem starting Tomcat service. When I try to start the service, some problem happens and it is not initialized.
The log in the C:\Program Files\Apache Software Foundation\Tomcat 9.0\logs
is as follows:
[2015-12-12 17:34:58] [info] [ 3476] Running 'FunctionsHandler' Service...
[2015-12-12 17:34:58] [info] [ 4076] Starting service...
[2015-12-12 17:34:59] [error] [ 2236] FindClass org/apache/catalina/startup/Bootstrap failed
[2015-12-12 17:34:59] [error] [ 4076] Failed to start Java
[2015-12-12 17:34:59] [error] [ 4076] ServiceStart returned 4
[2015-12-12 17:34:59] [info] [ 3476] Run service finished.
[2015-12-12 17:34:59] [info] [ 3476] Commons Daemon procrun finished
The variable JAVA_HOME
is already defined.
Any idea what might be going on?
I thought I already set the variable
JAVA_HOME
, but as I was setting up a new environment, I did everything from scratch and ended up setting it pointing to the JRE target folder, and not JDK. After reviewing, I found the variables, I found the error.– Lucas Schneider