Linux系統安裝VNC

Z少校發表於2020-02-13
一、安裝tigervnc-server VNC軟體包
[root@localhost ~]# yum install tigervnc-server ###沒有配置yum源可以使用 rpm -ivh安裝
[root@localhost ~]# rpm -qc tigervnc-server
/etc/sysconfig/vncservers
[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


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/30484956/viewspace-2675382/,如需轉載,請註明出處,否則將追究法律責任。

相關文章