I used letsecncrypt mode for generating the certificates .
i successfully got the certificates but i got stuck here ,as now i have to use these certificates with my tomcat . Please tell me the step by step so i can get my https:grinning:
I am getting this error in tomcat
SEVERE: Failed to initialize connector [Connector[HTTP/1.1-443]]
org.apache.catalina.LifecycleException: Failed to initialize component [Connector[HTTP/1.1-443]]
at org.apache.catalina.util.LifecycleBase.init(LifecycleBase.java:112)
at org.apache.catalina.core.StandardService.initInternal(StandardService.java:549)
at org.apache.catalina.util.LifecycleBase.init(LifecycleBase.java:107)
at org.apache.catalina.core.StandardServer.initInternal(StandardServer.java:875)
at org.apache.catalina.util.LifecycleBase.init(LifecycleBase.java:107)
at org.apache.catalina.startup.Catalina.load(Catalina.java:621)
at org.apache.catalina.startup.Catalina.load(Catalina.java:644)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:498)
at org.apache.catalina.startup.Bootstrap.load(Bootstrap.java:309)
at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:492)
Caused by: org.apache.catalina.LifecycleException: Protocol handler initialization failed
at org.apache.catalina.connector.Connector.initInternal(Connector.java:995)
at org.apache.catalina.util.LifecycleBase.init(LifecycleBase.java:107)
… 12 more
Caused by: java.lang.IllegalArgumentException: java.security.KeyStoreException: Cannot store non-PrivateKeys
at org.apache.tomcat.util.net.AbstractJsseEndpoint.createSSLContext(AbstractJsseEndpoint.java:116)
at org.apache.tomcat.util.net.AbstractJsseEndpoint.initialiseSsl(AbstractJsseEndpoint.java:87)
at org.apache.tomcat.util.net.NioEndpoint.bind(NioEndpoint.java:225)
at org.apache.tomcat.util.net.AbstractEndpoint.init(AbstractEndpoint.java:1082)
at org.apache.tomcat.util.net.AbstractJsseEndpoint.init(AbstractJsseEndpoint.java:267)
at org.apache.coyote.AbstractProtocol.init(AbstractProtocol.java:581)
at org.apache.coyote.http11.AbstractHttp11Protocol.init(AbstractHttp11Protocol.java:66)
at org.apache.catalina.connector.Connector.initInternal(Connector.java:993)
… 13 more
Caused by: java.security.KeyStoreException: Cannot store non-PrivateKeys
at sun.security.provider.JavaKeyStore.engineSetKeyEntry(JavaKeyStore.java:258)
at sun.security.provider.JavaKeyStore$JKS.engineSetKeyEntry(JavaKeyStore.java:56)
at sun.security.provider.KeyStoreDelegator.engineSetKeyEntry(KeyStoreDelegator.java:117)
at sun.security.provider.JavaKeyStore$DualFormatJKS.engineSetKeyEntry(JavaKeyStore.java:70)
at java.security.KeyStore.setKeyEntry(KeyStore.java:1140)
at org.apache.tomcat.util.net.jsse.JSSEUtil.getKeyManagers(JSSEUtil.java:221)
at org.apache.tomcat.util.net.AbstractJsseEndpoint.createSSLContext(AbstractJsseEndpoint.java:114)
… 20 more
What client software are you using? Most Windows clients for Let’s Encrypt generate PFX files for you, because that’s what Microsoft’s IIS web server uses. It’s strange that yours doesn’t.
You might try using a client that supports PFX files out of the box, like win-acme. Then all you have to do is configure your <Connector> to point at the PFX file it generates; no openssl command would be required.
EDIT: I missed that you mentioned that you use win-acme in your post. But I don’t see the example.com-all.pfx file that it usually generates. Is your screenshot cut off? If you do have that file just use it with the <Connector> example @_az linked to.
EDIT 2: I hate the hide extensions from known file types feature. You do have that file, I just couldn’t tell because Windows insists on hiding useful information from you by default.
Tomcat requires forward-slashes in paths, even on Windows. Change all your backslashes (\) to forward-slashes (/) in your certificate paths.
You can’t use a pem file with the Http11NioProtocol connector. Switch to protocol="org.apache.coyote.http11.Http11AprProtocol" to keep using PEM files or use the PKCS12 file as explained earlier. For more information on the difference and how to configure it properly, see the tomcat SSL howto.
If you’re still having trouble after fixing both these things, please share the contents of your catalina.out file so we can debug further.
Yes, I am getting the same issue . I looked for the catalina file but that file is also missing . I am stuck here , can you suggest me anything else .So i can complete this .
Thanks
Sorry, I forgot that Tomcat uses a different naming scheme for its logfiles on Windows. It uses catalina-<DATE>.log (e,g, catalina-2018-07-25.log) or tomcat<VERSION>-stdout-<DATE>.log (e.g. tomcat9.0-stdout-2018-07-25.log) depending on the Tomcat version you’re running.
Yes ,I know about this but unfortunately right now tomcat not generating that file(CATALINA.OUT) thats why i still stuck here .
After generating certificates from letsencrypt , what i need to should i installed them ? or whatelse need to do ?
I got one .pfx file which is protected by password ,from where i can get that password ?
Please do suggest some solid steps .
Thanks
@Patches Can you please guide me ,with proper steps . After generating the certificates what are the steps i need to follow for use these certificates in tomcat .