Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

TomCat and SSL cert

Status
Not open for further replies.

rilharri

Technical User
Feb 23, 2011
2
0
0
US
Not sure if this is thr right forum.

am trying to setup and install a SSL cert into TomCat

keytool -certreq -keyalg RSA -alias CFCU -file certreq.csr -keystore TCIKey.jks

keytool -genkey -alias CFCU -keyalg RSA -keystore TCIKey.jks -keysize 2048


Upload the cotents for the certreq.csr to Verisign

Download the .p7b file from Verisign.

keytool -import -alias CFCU -keystore TCIKey.jks -trustcacerts -file cert.p7b

Moved, cert.p7b,certreq.csr,TCIKey.jks to the conf folder in Tomcatt.

<Connector
className="org.apache.tomcat.service.PoolTcpConnector">
<Parameter name="handler"
value="org.apache.tomcat.service.http.HttpConnectionHandler"/>
<Parameter name="port" value="443"/>
<Parameter name="socketFactory"
value="org.apache.tomcat.net.SSLSocketFactory"/>
<Parameter name="keystore" value="conf/TCIkey.jks"/>
<Parameter name="keypass" value="XXXXX"/>
<Parameter name="clientAuth" value="false"/>
</Connector>
From there I restart the Tomcat Services

And nothing when I go to


Im not sure what I am missing any help would be great.

Thank You
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top