On Thu, Jun 12, 2014 at 5:10 AM, Francesco Viscomi <fvisc...@gmail.com> wrote:
> Hi, > in this other case tomcat has started without the .keystore file: > > at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:433) > 12-Jun-2014 11:07:52 org.apache.catalina.startup.Catalina start > SEVERE: Catalina.start: > LifecycleException: service.getName(): "Catalina"; Protocol handler start > failed: java.io.FileNotFoundException: C:\Users\francesco\.keystore (The > system cannot find the fil > e specified) > at > org.apache.catalina.connector.Connector.start(Connector.java:1097) > at > org.apache.catalina.core.StandardService.start(StandardService.java:457) > at > org.apache.catalina.core.StandardServer.start(StandardServer.java:700) > at org.apache.catalina.startup.Catalina.start(Catalina.java:552) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at > > sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) > at > > sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) > at java.lang.reflect.Method.invoke(Method.java:597) > at org.apache.catalina.startup.Bootstrap.start(Bootstrap.java:295) > at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:433) > 12-Jun-2014 11:07:52 org.apache.catalina.startup.Catalina start > INFO: Server startup in 10657 ms > > Francesco, Your Tomcat server "started" in both cases: "INFO: Server startup in 10657 ms" "INFO: Server startup in 672 ms" What did not start is your HTTPS connector (Coyote), as illustrated in your first log files: "INFO: Starting Coyote HTTP/1.1 on http-8081" Your HTTPS connector failed because it did not find the proper keystore file. Can you post relevant portion of your server.xml, e.g. <Connector port="8081" ...> </Connector> See how to enable SSL properly: http://tomcat.apache.org/tomcat-5.5-doc/ssl-howto.html However, more importantly - why are you using this old and unsupported version of Tomcat? As pointed many times on this mailing list, you should definitely look into upgrading this to the newer versions of Tomcat. Tomcat 5.x is old project, that is not being patched, and probably has some serious security risks. It is recommended that you upgrade to at least Tomcat 6.x, but you should look into Tomcat 7.x and Tomcat 8.x. See the list here: http://wiki.apache.org/tomcat/TomcatVersions Good luck.