katij-uipath / v23.10_Automation_Suite_Upgrade

0 stars 0 forks source link

Copy Secret Server DLL and Customer Orch Params to new Cluster #89

Open katij-uipath opened 8 months ago

katij-uipath commented 8 months ago

Download the secret server DLL file from the primary node of the 22.4 cluster:

chmod -R 777 /var/orchestrator Download from: /var/orchestrator/plugins/securestore/SecretServer.SecureStore.dll

On the new 23.10 target cluster, create this directory on all nodes:

mkdir -p /var/orchestrator/plugins/securestore

Adjust permissions to the new directory: chmod -R 777 /var/orchestrator

Upload the SecretServer.SecureStore.dll file to the /var/orchestrator/plugins/securestore on all machines.

If downloading/uploading through the menu is not working, scp can be used to copy the file to each machine. Edit this command and run once for every node in the 23.10 cluster. You will run this command from the primary node of the 22.4 cluster:

scp /var/orchestrator/plugins/securestore/SecretServer.SecureStore.dll <username>@<ipaddress>:/var/orchestrator/plugins/securestore

Change the permissions and owner on all machines in the 23.10 cluster:

chmod -R 755 /var/orchestrator

chown -R root /var/orchestrator
KKieffer44 commented 7 months ago

completed