I am currently working on deploying my application with Tomcat 8.0.47 on a Windows Server 2012 but for some reason my Tomcat service is not starting.
Here is what I did to create my service:
"D:\Tomcat 8.0 API_RECETTE\bin\tomcat8.exe" //IS//Tomcat_API_RECETTE --DisplayName="Apache Tomcat API_RECETTE" --Description="Apache Tomcat 8.0.47 Server - http://tomcat.apache.org/" --Startup="auto"
"D:\Tomcat 8.0 API_RECETTE\bin\tomcat8.exe" //US//Tomcat_API_RECETTE --Classpath="D:\Tomcat 8.0 API_RECETTE\bin\bootstrap.jar;D:\Tomcat 8.0 API_RECETTE\bin\tomcat-juli.jar"
"D:\Tomcat 8.0 API_RECETTE\bin\tomcat8.exe" //US//Tomcat_API_RECETTE --Jvm="C:\Program Files\Java\jdk1.8.0_111\jre\bin\server\jvm.dll"
"D:\Tomcat 8.0 API_RECETTE\bin\tomcat8.exe" //US//Tomcat_API_RECETTE --StartClass="org.apache.catalina.startup.Bootstrap" --StartMode="jvm" ++StartParams="start
"D:\Tomcat 8.0 API_RECETTE\bin\tomcat8.exe" //US//Tomcat_API_RECETTE --StopClass="org.apache.catalina.startup.Bootstrap" --StopMode="jvm" ++StopParams="stop" --StopTimeout="0"
When I start the service, even the service's state is set tot "startup", but when I refresh the page, the service is actualy not started at all. I have no error message returned, so it is quite difficult to understand what is going on.
My question is : how can I make it start ?