Tomcat配置 https SSL證書
公司網站連結要由原來的http超文字傳輸協議訪問改為https SSl加密傳輸協議訪問。
HTTP與HTTPS的區別:HTTP協議傳輸的資料都是未加密的,也就是明文的,因此使用HTTP協議傳輸隱私資訊非常不安全,為了保證這些隱私資料能加密傳輸,於是網景公司設計了SSL(Secure Sockets Layer)協議用於對HTTP協議傳輸的資料進行加密,從而就誕生了HTTPS。簡單來說,HTTPS協議是由SSL+HTTP協議構建的可進行加密傳輸、身份認證的網路協議,要比http協議安全。
我花了一塊錢(一年)在愛名網購買了一個Symantec Basic DV 證書。下載證書解壓之後是這個樣子的:
開啟IIS資料夾:
包含證書的密碼和一個pfx格式的證書。我開始用pfx格式證書來配置一直沒成功,就選擇了把pfx格式轉換成jks格式的證書來配置,成功了。這裡就講jks格式證書的配置。
一、使用java jdk將PFX格式證書轉換為JKS格式證書
先切換到IIS資料夾下,執行命令:
keytool -importkeystore -srckeystorewww.dongnaoedu.com_ssl.pfx -destkeystoredomains.jks -srcstoretype PKCS12 -deststoretype JKS
這裡要輸入密碼,就是上面www.dongnaoedu.com_pfx_password.txt文字檔案中的密碼,3個口令最好都輸入這個密碼。可以看到資料夾中生成了domains.jks
二、配置server.xml
先把domains.jks證書上傳到Tomcat的conf資料夾下:
切換到conf目錄下編輯server.xml
- cd /usr/tomcat/apache-tomcat-8.5.11/conf
- vim server.xml
找到:
<!-- <Connector port="8443" protocol="HTTP/1.1" SSLEnabled="true" maxThreads="150" scheme="https" secure="true" clientAuth="false" sslProtocol="TLS"/> -->
去掉註釋,修改為:(443為https預設訪問埠)
<Connector port="443" protocol="HTTP/1.1" SSLEnabled="true"
maxThreads="150" scheme="https" secure="true"
keystoreFile="conf/domains.jks" //證書地址
keystorePass="582629" //證書金鑰
clientAuth="false" sslProtocol="TLS" />
為了讓http訪問自動跳轉為https訪問,這裡順便把這兩個標籤也改了,
找到:
<Connector port="8080" protocol="HTTP/1.1"
connectionTimeout="20000"
redirectPort="8443" />
修改為:
<Connector port="8080" protocol="HTTP/1.1"
connectionTimeout="20000"
redirectPort="443" />
找到:
<Connector port="8009" enableLookups="false" protocol="AJP/1.3" redirectPort="8443" />
修改為:
<Connector port="8009" enableLookups="false" protocol="AJP/1.3" redirectPort="443" />
儲存退出。
三、配置web.xml
編輯web.xml
- vim web.xml
在該檔案</welcome-file-list>標籤(一般在檔案最末尾)後面加上這樣一段:
<login-config>
<!-- Authorization setting for SSL -->
<auth-method>CLIENT-CERT</auth-method>
<realm-name>Client Cert Users-only Area</realm-name>
</login-config>
<security-constraint>
<!-- Authorization setting for SSL -->
<web-resource-collection >
<web-resource-name >SSL</web-resource-name>
<url-pattern>/*</url-pattern>
</web-resource-collection>
<user-data-constraint>
<transport-guarantee>CONFIDENTIAL</transport-guarantee>
</user-data-constraint>
</security-constraint>
儲存退出。所有配置完畢。重啟Tomcat即可。證書生效,並且http訪問會自動轉為https訪問。