CentOS7开启远程桌面连接

参考:https://www.bnxb.com/linuxserver/27459.html

一、安装

//安装CentOS桌面
yum upgrade
yum -y groupinstall "X Window System"   //执行这条命令时报错,跳过不影响
yum -y groupinstall "GNOME Desktop"
startx

//安装xrdp
yum install epel* -y
yum --enablerepo=epel -y install xrdp

//添加防火墙
firewall-cmd --permanent --zone=public --add-port=3389/tcp
firewall-cmd --reload

//启动服务
systemctl start xrdp
systemctl enable xrdp
netstat -tnlp | grep xrdp

特别说明:在运行yum -y groupinstall “X Window System” 时报错,不知道什么原因。

[root@localhost ~]# yum -y groupinstall "X Window System"
已加载插件:fastestmirror, langpacks
Loading mirror speeds from cached hostfile
 * base: mirrors.aliyun.com
 * extras: mirrors.aliyun.com
 * updates: mirrors.aliyun.com
Maybe run: yum groups mark install (see man yum)
指定组中没有可安装或升级的软件包
[root@localhost ~]#

试了一些方法,没有解决,于是跳过,没想到不影响后面的操作。

二、测试远程桌面

在windows上运行mstsc,输入LINUX的IP地址
CentOS7开启远程桌面连接_第1张图片

然后就进入登录界面,输入账号密码即可。
CentOS7开启远程桌面连接_第2张图片

你可能感兴趣的:(系统管理和服务器,Linux,linux,centos,服务器)