HTTP to HTTPS (SSL - Connection APEX/ORDS-Tomcat)
HTTP to HTTPS (Tomcat) 1) Get the Secure Certificate first https://www.digicert.com/util/ https://support.code42.com/Administrator/6/Configuring/Install_a_CA-signed_SSL_certificate_for_HTTPS_console_access http://certificate.fyicenter.com/97_JDK_Keytool_How_to_Find_the_Java_Keytool_on_Windows.html https://support.code42.com/Administrator/6/Configuring/Install_a_CA-signed_SSL_certificate_for_HTTPS_console_access 2) Do the following step keytool -genkey -alias APEX -keyalg RSA -keystore "C:\apex_way2cis_keystore.jks" -ext SAN=dns:apex.way2cis.com,ip:208.93.232.133 Keystore Password: Way2Cis@2020!! keytool -genkeypair -alias apex.way2cis.com -storetype jks -keystore apex.way2cis.com.jks -validity 366 -keyalg RSA -keysize 4096 keytool -certreq -alias apex.way2cis.com -file apex_way2cis.csr -keystore apex.way2cis.com.jks -ext san=dns:apex.way2cis.com keytool -importcert -alias apex.way2cis.com -file CAreply.p7b -keystore apex.way2cis.com.jks -trustcacerts keytool -importkeystor...