Step1. 安裝tigerVNC套件
Step2. 透過tiverVNC範本建立設定檔
CentOS 7 的 VNC Server 設定檔在 /lib/systemd/system/vncserver@.service,複製它來建立新的設定檔。
Step3. 修改所需tiverVNC設定檔
Step4. 設定指定user的vnc密碼
Step5. 啟用服務並設定開機自動啟用
Step6. 防火牆放行vnc使用的TCP Port
本文內容參考自CentOS 7 安裝與設定 VNC 伺服器。
[root@vnc ~]# yum install -y tigervnc-server
[root@vnc ~]# cp /lib/systemd/system/vncserver@.service /etc/systemd/system/vncserver@:88.service
[root@vnc ~]# vi /etc/systemd/system/vncserver@:88.service [Unit] Description=Remote desktop service (VNC) After=syslog.target network.target [Service] Type=forking # Clean any existing files in /tmp/.X11-unix environment ExecStartPre=/bin/sh -c '/usr/bin/vncserver -kill %i > /dev/null 2>&1 || :' ExecStart=/usr/sbin/runuser -l tester -c "/usr/bin/vncserver %i" PIDFile=/home/tester/.vnc/%H%i.pid ExecStop=/bin/sh -c '/usr/bin/vncserver -kill %i > /dev/null 2>&1 || :' [Install] WantedBy=multi-user.target
[root@vnc ~]# su tester [root@vnc ~]$ vncpasswd [root@vnc ~]$ exit
[root@vnc ~]# systemctl start vncserver@:88.service [root@vnc ~]# systemctl enable vncserver@:88.service
[root@vnc ~]# firewall-cmd --add-port=5988/tcp --permanent success [root@vnc ~]# firewall-cmd --reload success
0 Comments:
張貼留言