Advertisement
Guest User

Untitled

a guest
Jul 5th, 2012
559
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.96 KB | None | 0 0
  1. Setting Up HTTPS for JBoss 5.1.0 GA
  2. <!-- SSL/TLS Connector configuration using the admin devl guide keystore-->
  3. <Connector protocol="HTTP/1.1" SSLEnabled="true"
  4. port="8443" address="${jboss.bind.address}"
  5. scheme="https" secure="true" clientAuth="false"
  6. keystoreFile="C:/dev/server/jboss-5.1.0.GA/server/ecotrak/conf/server.keystore"
  7. keystorePass="password" sslProtocol = "TLS" keyAlias="jbosskey" />
  8.  
  9. call %JBOSS_HOME%binrun.bat -c default -b 0.0.0.0 -Djavax.net.ssl.trustStore=C:/dev/server/jboss-5.1.0.GA/server/ecotrak/conf/server.keystore
  10.  
  11. 00:09:03,110 INFO [AprLifecycleListener] The Apache Tomcat Native library which allows optimal performance in production environments was not found on the java.library.path: C:devjdkbin;.;C:WindowsSunJavabin;C:Windowssystem32;C:Windows;C:devjdkjrebin;native
  12.  
  13. 00:09:03,197 INFO [Http11Protocol] Initializing Coyote HTTP/1.1 on http-localhost%2F127.0.0.1-8080
  14.  
  15. 00:09:03,214 INFO [AjpProtocol] Initializing Coyote AJP/1.3 on ajp-localhost%2F127.0.0.1-8009
  16.  
  17. 00:09:03,261 ERROR [Http11Protocol] Error initializing endpoint
  18.  
  19. java.io.IOException: Cannot recover key
  20.  
  21. at org.apache.tomcat.util.net.jsse.JSSESocketFactory.init(JSSESocketFactory.java:456)
  22.  
  23. at org.apache.tomcat.util.net.jsse.JSSESocketFactory.createSocket(JSSESocketFactory.java:139)
  24.  
  25. 00:09:03,265 ERROR [AbstractKernelController] Error installing to Start: name=WebServer state=Create
  26.  
  27. LifecycleException: Protocol handler initialization failed: java.io.IOException: Cannot recover key
  28.  
  29. at org.apache.catalina.connector.Connector.initialize(Connector.java:1031)
  30.  
  31. at org.apache.catalina.core.StandardService.initialize(StandardService.java:683)
  32.  
  33. Deployment "WebServer" is in error due to the following reason(s): LifecycleException: Protocol handler initialization failed: java.io.IOException: Cannot recover key
  34.  
  35. Deployment "jboss.web:service=WebServer" is in error due to the following reason(s): ** NOT FOUND Depends on 'jboss.web:service=WebServer' **
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement