Запуск Tomcat7 для https

Когда я изменил https для безопасного соединения в 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"
/>

У меня ошибка при запуске tomcat из IDE

Caused by: java.io.FileNotFoundException: C:\Documents and Settings\User.keystore (The system cannot find the file specified) at java.io.FileInputStream.open(Native Method)

но при запуске tomcat 7.0 / bin / tomcat7.exe ошибки нет.

What wrong in these two? Пожалуйста, объясните мне! Благодарю.

Ответы на вопрос(2)

Ваш ответ на вопрос