天天看點

給網站加密

1、打開cmd  輸入 keytool -genkey -alias tomcat -keyalg rsa

2、輸入密碼,确認密碼,輸入網站網址,一路回車,然後設定tomcat的密鑰密碼和前面的密碼一緻。

給網站加密

3、然後在c:\users\administrator目錄下會生成一個keystore檔案。将其複制到tomcat伺服器的conf檔案夾下。

4、修改conf目錄下的server.xml檔案,添加

<connector port="8443" protocol="http/1.1" sslenabled="true"

               maxthreads="150" scheme="https" secure="true"

               clientauth="false" sslprotocol="tls" keystorefile="conf\.keystore" keystorepass="你的密碼" />

5、打開浏覽器輸入https://localhost:8443/你的webapp的名字

5、當然,由于你的數字證書沒有經過ca權威機構的認證是以浏覽器會提示你,證書有問題如果要看效果就把證書安裝一下就行了。

繼續閱讀