Skip to Content
Primo RPA OrchestratorInstallationInstalling and Configuring RDP2 Version 1.25.1.x on Astra Linux 1.7.x

Installing and configuring RDP2 version 1.25.1 on Astra Linux 1.7.x

ℹ️

Information about the new RDP2 version 1.25.9.x configuration features can be found in the article.

Installing the RDP2 service

Deploying RDP2 files on the machine (the RDP2-linux.zip file must be in the /srv/samba/shared/install directory):

sudo mkdir -p /opt/Primo/RDP2 sudo unzip /srv/samba/shared/install/RDP2-linux.zip -d /opt/Primo/RDP2 sudo chmod a+x /opt/Primo/RDP2/Primo.Orchestrator.RDP2

Install RDP2 as a service and configure auto-start:

sudo cp /opt/Primo/RDP2/Primo.Orchestrator.RDP2.service /etc/systemd/system/ sudo systemctl daemon-reload sudo systemctl enable /etc/systemd/system/Primo.Orchestrator.RDP2.service

Start the service:

sudo systemctl start Primo.Orchestrator.RDP2

Verify the service status:

sudo systemctl status Primo.Orchestrator.RDP2

View the service log:

sudo journalctl -u Primo.Orchestrator.RDP2

Configuring the ufw firewall

The installation and configuration of the ufw firewall are described in the article ufw firewall.

To allow access to the RDP2 API, run the following command:

sudo ufw allow 5102/tcp

Updating the RDP2 service

Stop the service:

sudo systemctl stop Primo.Orchestrator.RDP2

Updating RDP2 files on the machine (the RDP2-linux.zip file must be in the /srv/samba/shared/install directory):

sudo unzip -o -u /srv/samba/shared/install/RDP2-linux.zip -d /opt/Primo/RDP2 -x appsettings.ProdLinux.json appsettings.json rdpclientexternalsettings.json sudo chmod a+x /opt/Primo/RDP2/Primo.Orchestrator.RDP2

Start the service:

sudo systemctl start Primo.Orchestrator.RDP2

Verify the service status:

sudo systemctl status Primo.Orchestrator.RDP2
Last updated on