1.下载并安装VNC Server
1.1检查是否安装
# rpm -qa | grep vnc 如果出现以下内容则说明已经安装,否则参照1.2安装VNC Server tigervnc-1.1.0-18.el6.x86_64 tigervnc-server-1.1.0-18.el6.x86_64 1.2安装VNC Server
# yum install tigervnc tigervnc-server -y 2.配置VNC Server
# vim /etc/sysconfig/vncservers //打开配置文件 文件修改为以下两行 VNCSERVERS=\VNCSERVERARGS[1]=\ -nolisten tcp -localhost\3.设置或修改vnc登录密码
# vncpasswd //VNC远程登录密码和CentOS的密码不必一致 4.设置为开机启动
# chkconfig --add vncserver # chkconfig vncserver on 5.防火墙端口开放
# /sbin/iptables -I INPUT -p tcp --dport 5901 -j ACCEPT # /etc/rc.d/init.d/iptables save 6. 启动服务
6.1直接启动
# vncserver 6.2指定端口启动
# vncserver :1 7.Windows远程桌面登录
下载安装VNC Viewer
打开客户端添加连接,填写服务器和登录名,其他默认。
1013端口远程登录ip为192.168.12.13:1 1013端口远程登录name为root 1013端口远程登录密码为vncstart
A1(10101) 端口远程登录ip为192.168.12.101:1 A1(10101) 端口远程登录name为root A1(10101)端口远程登录密码为vncstart