windows 远程连接桌面 aws RHEL 8(一)

1、打开 putty, 首先点击Session 输入aws 连接hostName 或者Ip地址。其次点击 Connection --->SSH---->Auth选择 PuttyGen 生成的 ppk文件。

windows 远程连接桌面 aws RHEL 8(一)_第1张图片

注:本文是建立在初次连接的基础上

2、设置用户密码

#sudo passwd    --设置用户密码

#sudo passwd root  --设置root 密码

windows 远程连接桌面 aws RHEL 8(一)_第2张图片

出现如上图,表示设置密码成功

3、安装  EPEL包

# dnf install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm

4、安装xrdp

1) 创建一个xrdp 存储文件. 

   #vi /etc/yum.repos.d/xrdp.repo
在文件中添加如下内容:
[xrdp]
name=xrdp
baseurl=http://li.nux.ro/download/nux/dextop/el7/x86_64/
enabled=1
gpgcheck=0 

2)安装 XRDP 和 tigervnc-server

  #yum -y install xrdp tigervnc-server

3)为用户root设置vnc密码  
 
  #vncpasswd root 

4) 查询SELinux状态,配置或关闭SELinux , 否则可能无法启动xrdp服务,或者启动出错

windows 远程连接桌面 aws RHEL 8(一)_第3张图片

修改SELinux 配置文件 

#vi /etc/selinux/config 

将SELINUX=enforcing改为SELINUX=disabled

windows 远程连接桌面 aws RHEL 8(一)_第4张图片

 

5)开启 ,启用 xrdp    Start and enable XRDP 

 systemctl start xrdp

 systemctl enable xrdp

 

6) 由于是测试,所以在此直接关闭防火墙

---查看防火墙: systemctl status firewalld

systemctl stop firewalld

7)重启xrdp 

 service xrdp restart  

此版本 可以连接到  xrdp 但是 不能登录到 rhel8系统,怀疑是xrdp 版本问题,更换版本见下一节

你可能感兴趣的:(Linux,Red,Hat,8)