先啰嗦一下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 的软件。链接一下试试看着有点简陋可是上去了的