katij-uipath / v23.10_Automation_Suite_Upgrade

0 stars 0 forks source link

Download Installation Packages to Primary Nodes #79

Open katij-uipath opened 8 months ago

katij-uipath commented 8 months ago

In this step, you will be downloading packages to both the source and target cluster, which will be noted in each step.

On the primary node only of the SOURCE CLUSTER - Download the large service fabric bundle (may take several hours to download):


#Open a TMUX Session:
tmux new -s uipath_download

#make a 23.10.1 directory in the /uipath directory
#navigate to the 23.10 data disk directory
mkdir /uipath/2023.10.1

#navigate to the 23.10 data disk directory
cd /uipath/2023.10.1

#download the 23.10 offline bundle 
wget -O as.tar.gz https://download.uipath.com/automation-suite/2023.10.1/as-2023.10.1.tar.gz --no-check-certificate

#change owner and permissions
chown -R root as.tar.gz
chmod -R 755 as.tar.gz

Next download the 23.10.1 scripts on the SOURCE CLUSTER PRIMARY NODE ONLY:

cd /uipath/2023.10.1

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

wget -O versions.json https://download.uipath.com/automation-suite/2023.10.1/versions.json

chmod -R 755 /uipath/2023.10.1
chown -R root /uipath/2023.10.1
unzip as-installer.zip -d installer

Next download the temporary registry files ON THE NEW TARGET CLUSTER PRIMARY NODE:


#navigate to the 23.10 data disk directory
cd /uipath/2023.10.1

#make a tmp directory in the uipath disk directory
mkdir /uipath/tmp

#download the temp registry files
wget -O as-fs.tar.gz https://download.uipath.com/automation-suite/2023.10.1/as-fs-2023.10.1.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 7 months ago

first two parts done, working on third one

KKieffer44 commented 7 months ago

all finished