CentOS 7 配置远程桌面


安装 X Window

yum groupinstall "X Window System"
安装成功后可以通过 yum grouplist 查看可安装的
yum grouplist

安装 GNOME Desktop

yum groupinstall "GNOME Desktop"

安装 xrdp, 用于RDP客户端(mstsc.exe)进行远程连接

# 安装 xrdp
yum install xrdp

# 运行 xrdp 服务
systemctl start xrdp

# 设置开机自启 xrdp 服务
systemctl enable xrdp

# 查看 xrdp 服务状态
systemctl status xrdp

使用 Windows 远程桌面连接(mstsc.exe)测试是否可以正常链接


使用 netstat 命令查看 3389 端口是否正常监听

netstat -anolp | grep 3389
[root@hk ~]# netstat -anolp | grep 3389
tcp6       0      0 :::3389                 :::*                    LISTEN      24795/xrdp           off (0.00/0/0)

发表评论