On 22 Dec 2010, at 18:07, Ajay TS <ajayts1...@gmail.com> wrote: I am new to Tomcat and am trying to install Apache Tomcat 7.0.5 on Windows 7 with java version "1.6.0_21". I am able to install it fine but unable to configure SSL. I am configuring it on port 8443 based on documentation provided. After configuration and restarting the Apache Tomcat 7 service I am able to connect tohttp://localhost:8080 but not to https://localhost:8443. Strangely http://localhost:8443 works fine
Connector information: <Connector port="8443" maxThreads="150" minSpareThreads="25" maxSpareThreads="75" enableLookups="true" disableUploadTimeout="true" acceptCount="100" scheme="https" secure="true" clientAuth="false" sslProtocol="TLS" keystoreFile="${user.home}/.keystore" keystorePass="changeit" /> Attached is the error catalina file but heres the line I am confused about: Dec 22, 2010 9:35:35 AM org.apache.tomcat.util.net.jsse.JSSESocketFactory getStore SEVERE: Failed to load keystore type JKS with path C:\Windows\System32\config\systemprofile/.keystore due to C:\Windows\System32\config\systemprofile\.keystore (The system cannot find the file specified) java.io.FileNotFoundException: What's not clear about the above? You told Tomcat where to look for the keystore file, and it's not there. Put the real path to the keystore in the attribute instead. p C:\Windows\System32\config\systemprofile\.keystore (The system cannot find the file specified) at java.io.FileInputStream.open(Native Method) at java.io.FileInputStream.<init>(Unknown Source) at org.apache.tomcat.util.net.jsse.JSSESocketFactory.getStore(JSSESocketFactory.java:382) at org.apache.tomcat.util.net.jsse.JSSESocketFactory.getKeystore(JSSESocketFactory.java:283) at org.apache.tomcat.util.net.jsse.JSSESocketFactory.getKeyManagers(JSSESocketFactory.java:533) at org.apache.tomcat.util.net.jsse.JSSESocketFactory.init(JSSESocketFactory.java:464) at org.apache.tomcat.util.net.jsse.JSSESocketFactory.createSocket(JSSESocketFactory.java:131) at org.apache.tomcat.util.net.JIoEndpoint.init(JIoEndpoint.java:384) at org.apache.coyote.http11.Http11Protocol.init(Http11Protocol.java:118) at org.apache.catalina.connector.Connector.initInternal(Connector.java:873) at org.apache.catalina.util.LifecycleBase.init(LifecycleBase.java:100) at org.apache.catalina.core.StandardService.initInternal(StandardService.java:555) at org.apache.catalina.util.LifecycleBase.init(LifecycleBase.java:100) at org.apache.catalina.core.StandardServer.initInternal(StandardServer.java:729) at org.apache.catalina.util.LifecycleBase.init(LifecycleBase.java:100) at org.apache.catalina.startup.Catalina.load(Catalina.java:548) at org.apache.catalina.startup.Catalina.load(Catalina.java:571) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(Unknown Source) at org.apache.catalina.startup.Bootstrap.load(Bootstrap.java:262) at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:430) -- Regards, Ajay --------------------------------------------------------------------- To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org For additional commands, e-mail: users-h...@tomcat.apache.org