一、安装tigervnc-server VNC软件包

使用系统镜像文件iso,配置本地yum源来安装tigervnc,配置本地yum源方式参考:Linux本地yum源配置
配置后按照如下命令安装:

[root@localhost ~]# yum -y install tigervnc-server ###没有配置yum源可以使用 rpm -ivh安装

如果不方便配置本地yum源,可以根据系统版本下载对应的tigervnc相关的rpm包。
例如:

[root@localhost ~]# ls
tigervnc-server-1.1.0-5.el6_4.1.x86_64.rpm
[root@localhost ~]# rpm -ivh tigervnc-server-1.1.0-5.el6_4.1.x86_64.rpm
。。。。。。

设置重启自动启动。

[root@localhost ~]# chkconfig --level 35 vncserver on
二、目的:以root用户启动
[root@localhost ~]# vim /etc/sysconfig/vncservers
VNCSERVERS="1:root"

以vnc使用用户登录系统,创建vnc密码,vncpasswd
[root@localhost ~]$ vncpasswd
Password: 输入密码
Password must be at least 6 characters - try again
Password: 再次输入密码
Verify:

启动服务一次,生成 /home/visitor/.vnc/xstartup

[root@localhost ~]$ vncserver

New 'localhost.localdomain:1 (visitor)' desktop is localhost.localdomain:1

Starting applications specified in /home/visitor/.vnc/xstartup
Log file is /home/visitor/.vnc/localhost.localdomain:1.log
三,启动服务
[root@localhost ~]# /etc/init.d/vncserver start
正在启动 VNC 服务器:1:root
New 'localhost.localdomain:1 (visitor)' desktop is localhost.localdomain:1

Starting applications specified in /home/visitor/.vnc/xstartup

Log file is /home/student/.vnc/localhost.localdomain:2.log

[确定]
四.添加防火墙配置
[root@localhost ~]# vim /etc/sysconfig/iptables
-A INPUT -m state --state NEW -m tcp -p tcp --dport 5901 -j ACCEPT
-A INPUT -m state --state NEW -m tcp -p tcp --dport 5902 -j ACCEPT
[root@localhost ~]# service iptables restart
iptables: Flushing firewall rules: [ OK ]
iptables: Setting chains to policy ACCEPT: filter [ OK ]
iptables: Unloading modules: [ OK ]
iptables: Applying firewall rules: [ OK ]

PS: 有时因为网络安全要求,不能使用常用端口,需要更改vnc服务的默认端口,按照以下步骤即可: 1。修改vnc的默认端口
[root@localhost ~]# vim /usr/bin/vncserver
注释:修改如下两行中默认的端口5900为你想要修改的端口 118:$vncPort = 5900 + $displayNumber;
274: if (!bind(S, pack(‘S n x12’, $AF_INET, 5900 + $n))) {
2.重启vnc服务 [root@localhost ~]# /etc/init.d/vncserver restar
3.访问vnc时,比如使用VNC viewer访问,你访问的端口比如是:
192.168.2.11:9701 而你在/etc/sysconfig/vncserver中配置的桌面端口是 1:root 那么在第1步中配置文件中修改的端口号就应该是 9701-1=9700

Logo

为开发者提供学习成长、分享交流、生态实践、资源工具等服务,帮助开发者快速成长。

更多推荐