Tim Barnby

Greenhorn
+ Follow
since Aug 01, 2017
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by Tim Barnby

I forgot to mention a few details.  

I generate the key/cert with the following command:
openssl req -x509 -nodes -sha256 -days 365 -newkey rsa:2048 -keyout NewTomcat.key -out NewTomcat.crt

The Connector looks like this:
  protocol="org.apache.coyote.http11.Http11AprProtocol"
              enableLookups="false" disableUploadTimeout="true"
              acceptCount="100" scheme="https" secure="true"
              SSLEnabled="true"
              SSLProtocol="all"
              SSLHonorCipherOrder="On"
              SSLCipherSuite="HIGH:!ADH:!SSLv2"
              SSLCertificateFile="${catalina.base}/conf/OldTomcat.crt"
              SSLCertificateKeyFile="${catalina.base}/conf/OldTomcat.key" />
6 years ago
Hello.  I've struggled finding a solution for this issue.  I have a number of Tomcat 6 servers.  Many of them need new certificates.  I've made new cert/key pairs, and set them up in the server.xml file.  I restart the tomcat service, then try to connect.  The browser just spins, and never connects.  No cert error, no nothing. Tomcat is running.  It's just not responding.  If I put back the original cert/key, it works fine again.  Any help would be appreciated.  
6 years ago