先囉嗦一下VNC是什麼( Virtual Network Computing)VNC容許Linux系統能夠相似實現像Windows中的遠程桌面訪問那樣訪問Linux桌面。本文配置機器是興寧市網絡信息中心的一臺Centos 7 HP服務器環境下運行。vim
首先試試服務器裝了VNC沒windows
[root@wic ~]# rpm -q tigervnc tigervnc-server
沒安裝的話會直接出現服務器
package tigervnc is not installed package tigervnc-server is not installed
若是沒有安裝X-Windows 桌面的話要先安裝Xwindows網絡
[root@wic ~]# yum check-update [root@wic ~]# yum groupinstall "X Window System" [root@wic ~]# yum install gnome-classic-session gnome-terminal nautilus-open-terminal control-center liberation-mono-fonts [root@wic ~]# unlink /etc/systemd/system/default.target [root@wic ~]# ln -sf /lib/systemd/system/graphical.target /etc/systemd/system/default.target [root@wic ~]# reboot
第一步,安裝VNC packages:session
[root@wic ~]# yum install tigervnc-server -y
第二步,修改配置信息,在/etc/systemd/system/下創建文件夾vncserver@:1.service 把example config 文件從/lib/systemd/system/vncserver@.service複製到裏面tcp
[root@wic ~]# cp /lib/systemd/system/vncserver@.service /etc/systemd/system/vncserver@:1.service
而後打開這個配置文件/etc/systemd/system/vncserver@:1.service替換掉默認用戶名ide
找到這一行rest
ExecStart=/sbin/runuser -l <USER> -c "/usr/bin/vncserver %i" PIDFile=/home/<USER>/.vnc/%H%i.pid
這裏我直接用root 用戶登陸,因此我替換成code
ExecStart=/sbin/runuser -l root -c "/usr/bin/vncserver %i" PIDFile=/root/.vnc/%H%i.pid
若是是其餘用戶的話好比linoxide替換以下server
ExecStart=/sbin/runuser -l linoxide -c "/usr/bin/vncserver %i" PIDFile=/home/linoxide/.vnc/%H%i.pid
第三步,重加載 systemd
[root@wic ~]# systemctl daemon-reload
第四步,爲VNC設密碼
[root@wic ~]# vncpasswd
第五步,因爲我這邊的Centos 7 是用iptable防火牆的因此
vim /etc/sysconfig/iptables
在合適位置加上
-A INPUT -m state --state NEW -m tcp -p tcp --dport 5900:5903 -j ACCEPT
重啓iptable
service iptables restart
若是是用Centos 7 默認防火牆的可能須要
[root@wic ~]# firewall-cmd --permanent --add-service vnc-server [root@wic ~]# systemctl restart firewalld.service
若是仍是有問題能夠試試關閉防火牆
中止並禁用防火牆; systemctl stop firewalld.service systemctl disable firewalld.service
若是報:
Centos7 VNC報vncserver@:1.service:control process exited,code-exited status=98
修改type爲 type=simple
第六步,設默認啓動並開啓VNC
[root@wic ~]# systemctl enable vncserver@:1.service [root@wic ~]# systemctl start vncserver@:1.service
這樣基本上Centos 端就設好了,Windows 端要去下一個VNC Viewer 的軟件。鏈接一下試試看着有點簡陋可是上去了的