Hi,
I have one solution for ur problem. Its very simple to do that.Try the following
If the keystore is avilable just delete it and try the following
Goto the $JAVA_HOME/bin
Type the following
keytool -genkey -alias tomcat -keyalg RSA
Give the inputs accordingly
Then uncomment the follwing code in server.xml
<Connector port="8443"
maxThreads="150" minSpareThreads="25" maxSpareThreads="75"
enableLookups="false" disableUploadTimeout="true"
acceptCount="100" debug="0" scheme="https" secure="true"
clientAuth="false" sslProtocol="TLS" />
Restart ur Tomcat.
Then try
http://localhost:8443 Then I guess u wont get any problem.
Reddy