Upgrade from 10.2.9.1 to 10.2.9.1.1
The guide describes upgrading from v10.2.9.1 to v10.2.9.1.1 of the Work.AI platform.
Prerequisites
- You have Work.AI up and running.
- All Business Processes are stopped.
Remember to run the commands as APPLICATION_USER.
Upgrade
To apply the patch, do the following:
On the Master1 server, download the patch package and extract it into the directory with the existing installer. Make sure to follow the same directory structure as in the example below when downloading and extracting the patch package:
cd /opt/workfusion/wf_installer/
mkdir -pv ./patches
cd ./patches/
curl -k -o 'patch_10.2.9.1.1.tar.gz' 'https://DOWNLOAD_LINK'
tar xzf patch_10.2.9.1.1.tar.gzA new directory named
patch_10.2.9.1.1with the patch content appears.Navigate to the directory with the patch content and run the command to apply it as in the example below:
export ANSIBLE_PRIVATE_KEY_FILE="/PATH/TO/SSH-PRIVATE-KEY" && export ANSIBLE_VAULT_PASS='YOUR_ANSIBLE_VAULT_PASS'
cd ./patch_10.2.9.1.1
./patch_10.2.9.1.1.sh applyWait for 10 minutes till the patch is successfully applied.
Upgrade in case of multi-point setup
If you apply the patch in an environment provisioned in the multi-point way, upload the patch package to all Master servers (in the case of the HA mode, there are three Master servers) and define additional arguments for the multi-point setup as in the example:
./patch_10.2.9.1.1.sh apply -c local --limit master[0] # When applying for master1 server in multi-point way
./patch_10.2.9.1.1.sh apply -c local --limit master[1] # When applying for master2 server in multi-point way (in case of HA mode)
./patch_10.2.9.1.1.sh apply -c local --limit master[2] # When applying for master3 server in multi-point way (in case of HA mode)
The patch affects Master servers only, so you are not required to apply it on Agent(s) or any other servers.