katij-uipath / v23.10_Automation_Suite_Upgrade

0 stars 0 forks source link

Download Installation Packages to Primary Node #127

Open katij-uipath opened 2 months ago

katij-uipath commented 2 months ago

Follow these commands to download the as-installer.zip file on the primary node only:

rm -r -f /opt/UiPathAutomationSuite/latest/*

cd /opt/UiPathAutomationSuite/latest

wget -O as-installer.zip https://download.uipath.com/automation-suite/2023.10.3/installer-2023.10.3.zip --no-check-certificate

Once downloaded:

unzip as-installer.zip -d installer ui755 uiroot

Next download the temporary registry files:


#create and navigate to the 23.10.x data disk directory
mkdir /uipath/2023.10.3

cd /uipath/2023.10.3

#download the temp registry files
wget -O as-fs.tar.gz https://download.uipath.com/automation-suite/2023.10.3/as-fs-2023.10.3.tar.gz --no-check-certificate

#change owner and permissions
chown -R root as-fs.tar.gz
chmod -R 755 as-fs.tar.gz
KKieffer44 commented 1 month ago

completed