How to Install XRDP on CentOS and RedHat Linux 8/7

# yum clean all

# yum -y update

# reboot

# yum install epel-release

# sudo yum groupinstall "Server with GUI"

# yum install tigervnc-server xrdp

# sudo systemctl start xrdp.service

# sudo systemctl status xrdp.service

# sudo systemctl enable xrdp.service

# netstat -antp | grep xrdp

# sudo systemctl status firewalld.service

# sudo systemctl enable firewalld.service

# sudo systemctl start firewalld.service

# sudo firewall-cmd --permanent --add-port=3389/tcp

# sudo firewall-cmd --reload

# reboot

  • Centos, RDP
  • 0 Users Found This Useful
Was this answer helpful?

Related Articles

Disabling NetworkManager

  # nmcli device status # systemctl stop NetworkManager # systemctl disable NetworkManager...

How to change hostname through command line.

  following the instruction# hostname# hostname -s# hostname -f# hostnamectl set-hostname...

Install And Configure FTP Server On CentOS 7

  vsftpd (Very Secure File Transport Protocol Daemon) is a secure, fast FTP server for...

Manage and Monitor Processes

  A simple way to monitor and manage processes from the command line fof a Linux system is to...

Installing vsftpd on CentOS 7

  Pre-Flight Check These instructions are intended specifically for installing the vsfptd...