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.RDP2Install 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.serviceStart the service:
sudo systemctl start Primo.Orchestrator.RDP2Verify the service status:
sudo systemctl status Primo.Orchestrator.RDP2View the service log:
sudo journalctl -u Primo.Orchestrator.RDP2Configuring 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/tcpUpdating the RDP2 service
Stop the service:
sudo systemctl stop Primo.Orchestrator.RDP2Updating 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.RDP2Start the service:
sudo systemctl start Primo.Orchestrator.RDP2Verify the service status:
sudo systemctl status Primo.Orchestrator.RDP2Last updated on