VALT Warm Standby

From IVS Wiki
Jump to: navigation, search

DISCLAIMER: This is not a step by step instruction. This article assumes the reader has a working understanding of the VALT application and how to modify the configuration files. This procedure should only be completed by an IVS support engineer. This may be incorporated into the command line menu in the future.

About

The easiest way to achieve a highly available VALT server is by utilizing a VM on a Hypervisor with shared storage that supports High Availability (HA). Both VMWare and Hyper-V have integrated HA capabilities. If there is a need to make the VALT server highly available, IVS strongly recommends deploying the VALT appliance in a virtual environment and leveraging the hypervisor's HA capabilities. If this is not an option, the procedure below will allow you to configure two VALT appliances with one as a primary server and the second as a warm standby. This procedure will configure the MYSQL databases in a master slave configuration and replicate all changes from the primary to the standby server. Video files can be synchronized periodically. The configuration given below will replicate video files on a daily basis, but this can be customized by adjusting the cronjob scheduling.


Prerequisites

  • A DNS entry (CNAME or A) resolving to the primary server.
    • This should not be the primary DNS entry for that server and will be changed in the event of a failure.
    • If https will be used this DNS entry should be used as the CN for the certificate
      • SANs should be included for the FQDN of each server in addition to the DNS entry
    • For this to work properly there must not be an entry in /etc/hosts for the DNS entry
    • Additionally both servers will need to be pointed at a DNS server that can properly resolve the shared DNS entry.
  • /usr/local/WowzaStreamingEngine/conf/dustin/Application.xml should be configured to point to the shared DNS entry.
  • The config files in /etc/apache2/sites-enabled/ should reference the shared DNS entry.
  • The only config file in /etc/apache2/sites-enabled/ should be valt.conf. If default-ssl.conf is in this directory, delete it.
  • If using https, the certificate should already be installed on the primary server

Script Package

  1. Download VALTRedundancy.tar.gz by running the following command: wget --content-disposition https://ivs.box.com/shared/static/1062styfwr387efew51vt6mzqzsdd1m3.gz -O VALTRedundancy.tar.gz
  2. Extract the file using the following command: tar -xvf VALTRedundancy.tar.gz

Primary Server Config

Run PrimaryServerConfig.sh on the primary server. Make sure to modify the variables at the top of the script to reflect your environment. Specifically the standbyip must be changed to the ip address of the standby server.

The script will complete by providing the log file name and position. Make a note of these values as they will be needed to configure the standby server.


Standby Server Config

  1. Run sudo -i
    If you do not use this specific command portions of the script will not execute properly.
  2. Run VALTStandbyServerConfig.sh on the standby server. Make sure to modify the variables at the top of the script to reflect your environment. Specifically the primaryip must be changed to the ip address of the primary server, the logfile and logpos variables must be set to the values output when running the script on the primary server.

If using the VALTRedundancy.tar.gz package, the failure.sh and restore.sh scripts should automatically be copied to the /usr/local/valt/bin/ directory and set to executable. These scripts are provided below if the VALTRedundancy.tar.gz package was not used. It is a good idea to update the variables in these scripts now so they are ready to be used in the event of a failover.


How to Initiate a Failover to the Standby Server

  1. Update the shared DNS entry to reference the standby server.
  2. Run the script by typing the following command:
    sudo /usr/local/valt/bin/failure.sh

How to Return to the Primary Server

  1. Update the shared DNS entry to reference the standby server.
  2. Update the variables in the script below to reflect the correct primary ip, slaveuser, and slavepassword. (If this was not done during initial setup)
  3. Run the script by typing the following command:
    sudo /usr/local/valt/bin/restore.sh

Scripts

[Expand]
ValtPrimaryServerConfig.sh
[Expand]
ValtStandbyServerConfig.sh
[Expand]
failure.sh
[Expand]
restore.sh