INFORMATICS

The Best

How to Install Remote Desktop - Xrdp Server on CentOS 8

Star InactiveStar InactiveStar InactiveStar InactiveStar Inactive
 

How to Install Remote Desktop - Xrdp Server on CentOS 8

Installing Desktop Environment

dnf groupinstall "Server with GUI"

Installing Xrdp

dnf install epel-release

dnf install xrdp 
systemctl enable xrdp --now

You can verify that Xrdp is running by typing:
netstat -antup | grep xrdp
systemctl status xrdp

Firewall

firewall-cmd --permanent --add-port=3389/tcp
firewall-cmd --reload

SELinux

chcon --type=bin_t /usr/sbin/xrdp
chcon --type=bin_t /usr/sbin/xrdp-sesman


Search