我在服务器上用
keytool -genkey -keyalg RSA -dname "cn=10.24.10.37,ou=xxx,o=xxx,l=GZ,st=GD,c=CN" -alias server -keypass 123456 -keystore /CIAMC/https/server.keystore -storepass 123456 -validity 99999
生成了..keystore文件
在tomcat的server.xml 
<Connector port="8443" protocol="org.apache.coyote.http11.Http11Protocol"
               maxThreads="150" SSLEnabled="true" scheme="https" secure="true"
               clientAuth="false" sslProtocol="TLS"
               keystoreFile="/CIAMC/https/server.keystore" keystorePass="123456"
web.xml也配置了
<!-- 配置 SSL -->
<security-constraint>
<web-resource-collection>
<web-resource-name>securedapp</web-resource-name>
<url-pattern>/*</url-pattern>
</web-resource-collection>
<user-data-constraint>
<transport-guarantee>CONFIDENTIAL</transport-guarantee>
</user-data-constraint>
</security-constraint>
用ie访问就是找不到网站,求大神帮忙