When I changed https for secure connection in server.xml tomcat 7.0
<Connector
clientAuth="false" port="8443" minSpareThreads="5" maxSpareThreads="75"
enableLookups="true" disableUploadTimeout="true"
acceptCount="100" maxThreads="200"
scheme="https" secure="true" SSLEnabled="true"
SSLCertificateFile="test.cer"
SSLCertificateKeyFile="test.key"
SSLCACertificateFile="CertPath.txt"
SSLVerifyClient="require" SSLEngine="on" SSLVerifyDepth="2" sslProtocol="TLS"
/>
I have error when starting tomcat from IDE
Called: java.io.FileNotFoundException: C: \ Documents and Settings \ User.keystore (the system cannot find the specified file) in java.io.FileInputStream.open (native method)
but there is no error starting tomcat 7.0 / bin / tomcat7.exe.
What is wrong with these two? Please explain me! Thank.
source
share