Avalanche powered by Wavelink

Home 

Accessing the Web Console Over an HTTPS Connection

The Avalanche web server (Apache Tomcat) can be configured to encrypt traffic between the Console and the Avalanche Server using an HTTPS connection. This requires obtaining an SSL certificate, modifying the server.xml file, and then restarting the Tomcat Server.

This process requires an SSL certificate in a pfx/p12 format. For more information about SSL certificates, see SSL Certificates.

Activating SSL for Apache Tomcat

1.Make a copy of the existing pfx/p12 certificate.

2.If it has a pfx extension, rename the certificate with a p12 extension.

3.Copy the p12 certificate to C:\Program Files\Wavelink\Avalanche\jre\bin.

4.Go to C:\Program Files\Wavelink\Avalanche\Web\conf.

5.Copy the server.xml file to a backup folder location.

6.Open the original server.xml file in a text editor.

7.Comment out the current HTTP connector that uses port 8080.
<!--
<Connector port="8080" protocol="HTTP/1.1"
connectionTimeout="20000"
redirectPort="8443" />
-->

8.Modify the Connector port for 8443 with protocol of org.apache.coyote.http11.Http11NioProtocol to reflect the content shown here. You will also need to remove the comments from this connector.
<Connector port="8443" protocol="org.apache.coyote.http11.Http11NioProtocol”
SSLEnabled="true" maxThreads="150" scheme="https" secure="true" clientAuth="false"
sslProtocol="TLS"
keystoreFile="C:\Program Files\Wavelink\Avalanche\jre\bin\<name of SSL certificate>.p12"
keystorePass="<certificate password>" keystoreType="PKCS12" />

9.Restart the Wavelink Tomcat service to ensure the changes are activated.

10.Enter the following URL into the Web browser and log into Avalanche: https://<FQDN or IP address of Avalanche>:8443/AvalancheWeb

Accessing the Web Console over a secure connection

Once you have generated a certificate, activated SSL for Tomcat, and restarted the Tomcat server, you can access the Web Console over an HTTPS connection.

In the address field of your browser, type:

https://[DNS name or IP address of Avalanche]:8443/AvalancheWeb


Was this article useful?    

The topic was:

Inaccurate

Incomplete

Not what I expected

Other