安装VNC,远程连接centos7

2021/10/20 7:09:51

本文主要是介绍安装VNC,远程连接centos7,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

# 检查centos是否装了epel库 执行命令:
rpm -qa | grep epel  

# 没有就安装:
yum install epel-release -y

# 安装xrdp
yum install xrdp -y

# 安装tigervnc-server
yum install tigervnc-server -y

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

# 临时关闭SELinux(设置SELinux 成为permissive模式)
setenforce 0 

# 关闭防火墙或者不关闭防火墙打开3389端口
firewall-cmd --permanent --zone=public --add-port=3389/tcp
firewall-cmd --reload

# 启动服务命令
systemctl start xrdp

# 开机启动命令
systemctl enable xrdp


这篇关于安装VNC,远程连接centos7的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程