CentOS 7 安裝配置 VNC 詳解

2021-08-25 14:32:29 字數 2522 閱讀 5185

vnc是什麼( virtual network computing)vnc允許linux系統可以類似實現像windows中的遠端桌面訪問那樣訪問linux桌面。本文配置是在centos 7 hp伺服器環境下執行。

首先試試伺服器裝了vnc沒

[root@linuxidc ~]# rpm -q tigervnc tigervnc-server
沒安裝的話會直接出現

package tigervnc is not installed

package tigervnc-server is not installed

如果沒有安裝x-windows 桌面的話要先安裝xwindows

[root@linuxidc ~]# yum check-update

[root@linuxidc ~]# yum groupinstall "x window system"

[root@linuxidc ~]# yum install gnome-classic-session gnome-terminal nautilus-open-terminal control-center liberation-mono-fonts

[root@linuxidc ~]# unlink /etc/systemd/system/default.target

[root@linuxidc ~]# ln -sf /lib/systemd/system/graphical.target /etc/systemd/system/default.target

[root@linuxidc ~]# reboot

第一步,安裝vnc packages:

[root@linuxidc ~]# yum install tigervnc-server -y
第二步,修改配置資訊,在/etc/systemd/system/下建立資料夾vncserver@:1.service 把example config 檔案從/lib/systemd/system/[email protected]複製到裡面

[root@linuxidc ~]# cp /lib/systemd/system/[email protected] /etc/systemd/system/vncserver@:1.service
然後開啟這個配置檔案/etc/systemd/system/vncserver@:1.service替換掉預設使用者名稱

找到這一行

execstart=/sbin/runuser -l -c "/usr/bin/vncserver %i"

pidfile=/home//.vnc/%h%i.pid

這裡我直接用root 使用者登入,所以我替換成

execstart=/sbin/runuser -l root -c "/usr/bin/vncserver %i"

pidfile=/root/.vnc/%h%i.pid

如果是其他使用者的話比如john替換如下

execstart=/sbin/runuser -l -c "/usr/bin/vncserver %i"

pidfile=/home//.vnc/%h%i.pid

第三步,重載入 systemd

[root@linuxidc ~]# systemctl daemon-reload
第四步,為vnc設密碼

[root@linuxidc ~]# 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@linuxidc ~]# firewall-cmd --permanent --add-service vnc-server

[root@linuxidc ~]# systemctl restart firewalld.service

第六步,設預設啟動並開啟vnc

[root@linuxidc ~]# systemctl enable vncserver@:1.service

[root@linuxidc ~]# systemctl start vncserver@:1.service

這樣基本上centos 端就設好了,windows 端要去下乙個vnc viewer 的軟體。連線一下試試看著有點簡陋但是上去了的

Centos7安裝配置vnc

前提條件,已經安裝了乙個圖形介面 yum install tigervnc server y 安裝vnc服務 systemctl status vncserver service 檢查服務狀態 vncserver service remote desktop service vnc loaded l...

CentOS 7 安裝配置 VNC 詳解

from vnc是什麼 virtual network computing vnc允許linux系統可以類似實現像windows中的遠端桌面訪問那樣訪問linux桌面。本文配置是在centos 7 hp伺服器環境下執行。首先試試伺服器裝了vnc沒 root linuxidc rpm q tigerv...

CentOS 7 上安裝配置 VNC 服務

vnc virtual network computing vnc允許linux系統可以類似實現像windows中的遠端桌面訪問那樣訪問linux桌面。一般生產環境中並不需要安裝這個服務,若本機測試需要或者伺服器要求安裝,可以通過如下步驟配置。vnc 服務需要 x windows 支援,你要配置 v...