在我開始之前,我只是按照來自DZone的步驟進行操作。使用生成的密鑰庫文件的tomcat https配置
Setting Up Tomcal SSL in 5 Minutes
我已經看到了幾個類似的教程,但我無法找到答案我的問題。
問題:
我可以訪問HTTP/8080,但不能訪問HTTPS/8443,它似乎永遠載入。
嘗試使用HTTP/8443其中得到一個錯誤(正如我所料)
我嘗試使用捲曲命令:
[email protected]:/home/borgymanotoy$ curl -Iv https://localhost:8443
* Rebuilt URL to: https://localhost:8443/
* Trying 127.0.0.1...
* Connected to localhost (127.0.0.1) port 8443 (#0)
* found 173 certificates in /etc/ssl/certs/ca-certificates.crt
* found 697 certificates in /etc/ssl/certs
* ALPN, offering http/1.1
* Operation timed out after 300495 milliseconds with 0 out of 0 bytes received
* Closing connection 0
curl: (28) Operation timed out after 300495 milliseconds with 0 out of 0 bytes received
注:
我隨後在給定的位點的步驟。檢查以下內容:
1)成功生成.keystore文件。
2)用密碼正確地更新了tomcat的server.xml和生成密鑰庫文件的確切路徑,並檢查了正確的情況。
3)檢查了tomcat日誌並沒有發現任何錯誤。
任何人試圖按照鏈接中的步驟,得到了錯誤,並修復它?
keystoreFile = 「/用戶/ loiane /的.keystore」 - 這條線的站點。您是否添加了確切的密鑰庫文件名? – jorrin
如果你嘗試'openssl s_client -connect localhost:8443',會發生什麼? – Andreas
@jorrin是我有,keystoreFile =「/ home/borgymanotoy/.keystore」 –