> CentOS > CentOS教程 >

CentOS 7 安装远程桌面XRDP

1:安装扩展源

2:安装软件包

yum -y install xrdp tigervnc-server

3:配置SELinux

chcon --type=bin_t /usr/sbin/<b>xrdp</b>
chcon --type=bin_t /usr/sbin/<b>xrdp</b>-sesman

4:配置防火墙firewalld

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

5:启动服务

#开机启动
systemctl enable xrdp
#启动
systemctl start xrdp

6:查看服务监听状态

netstat -antup | grep xrdp

tcp        0      0 0.0.0.0:3389            0.0.0.0:*               LISTEN      1508/xrdp
tcp        0      0 127.0.0.1:3350          0.0.0.0:*               LISTEN      1507/xrdp-sesman

(责任编辑:IT)