Upgrade from 10.2.6.10 to 10.2.6.10.1
The article guides you through the upgrade from v.10.2.6.10 to v.10.2.6.10.1 of WorkFusion Intelligent Automation Cloud Enterprise Edition.
Prerequisites
- You have Enterprise Edition up and running.
- All business processes are stopped.
Upgrade
On the MASTER1 server, download the patch package and extract it into the directory with the existing installer. When downloading and extracting the patch package, make sure to follow the same directory structure as in the example below:
cd /opt/workfusion/wf_installer/ mkdir -pv ./patches cd ./patches/ curl -k -o 'patch_10.2.6.10.1.tar.gz' '${DOWNLOAD_LINK}' tar xzf patch_10.2.6.10.1.tar.gzAs a result, you get a new directory named
patch_10.2.6.10.1with the patch content.Navigate to the directory with the patch content and run the following command to apply it:
export ANSIBLE_PRIVATE_KEY_FILE="/PATH/TO/SSH-PRIVATE-KEY" && export ANSIBLE_VAULT_PASS='YOUR_ANSIBLE_VAULT_PASS' cd ./patch_10.2.6.10.1 ./patch-10.2.6.10.1.sh applyThe procedure takes about 5 minutes to complete.
Important considerations
If you install the patch in an environment with the multi-point setup, apply it on all MASTERs, for example:
./patch-10.2.6.10.1.sh apply -c local --limit master[0] # When applying for master1 server
./patch-10.2.6.10.1.sh apply -c local --limit master[1] # When applying for master2 server (in case of HA mode)
./patch-10.2.6.10.1.sh apply -c local --limit master[2] # When applying for master3 server (in case of HA mode)
important
The patch affects only MASTERs so, in the multi-point setup, it's not required to apply it on AGENT(s).