1、首先确定安装了桌面环境。
[root@localhost ~]# yum -y groupinstall “GNOME Desktop Environment”
2、 安装VNC服务端。
[root@localhost ~]# yum -y install vnc-server
3、配置VNC。
[root@localhost ~]#vncpasswd 设置VNC密码
[root@localhost ~]# vi /etc/sysconfig/vncservers 编辑VNC配置文件
添加一行 VNCSERVERS="2:root",然后wq。意思是,开放5902端口,允许root通过vnc登录。
4、启用VNC。
[root@localhost ~]#vncserver
或者[root@localhost ~]#service vncserver start
5、设置VNC为开机运行。
[root@localhost ~]#chkconfig vncserver on 或者通过[root@localhost ~]#setup,修改启动服务。
6、在防火墙内添加端口,允许VNC通过。
[root@localhost ~]#vi /etc/sysconfig/iptables
添加一行-A INPUT -m state --state NEW -m tcp -p tcp --dport 5902 -j ACCEPT
7、如果遇到报错: starting vnc server :
WARNING: the first attempt to star Xvnc failed,possibly because the font catalog is not properly configured, attempting to determine an appropriate font path for this system and restart Xvnc using that font path ...
是由于字体库路径问题造成的,可以通过更新全部软件包(命令:yum -y upgrade)解决。
8、通过VNC客户端口可以登录了。
|