centos7 安装VNCserver
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了centos7 安装VNCserver相关的知识,希望对你有一定的参考价值。
首先试试服务器装了VNC没
[[email protected] ~]# rpm -q tigervnc tigervnc-server
没安装的话会直接出现
package tigervnc is not installed package tigervnc-server is not installed
如果没有安装桌面的话要先安装GNOME Desktop
[[email protected] ~]# yum groupinstall GNOME Desktop
第一步,安装VNC packages:
[[email protected] ~]# yum install tigervnc-server -y
第二步,修改配置信息,在/etc/systemd/system/下建立文件夹[email protected]:1.service 把example config 文件从/lib/systemd/system/[email protected]复制到里面
[[email protected] ~]# cp /lib/systemd/system/[email protected] /etc/systemd/system/[email protected]:1.service
然后打开这个配置文件/etc/systemd/system/[email protected]:1.service替换掉默认用户名
找到这一行
ExecStart=/sbin/runuser -l <USER> -c "/usr/bin/vncserver %i" PIDFile=/home/<USER>/.vnc/%H%i.pid
这里我直接用root 用户登录,所以我替换成
ExecStart=/sbin/runuser -l root -c "/usr/bin/vncserver %i" PIDFile=/root/.vnc/%H%i.pid
第三步,重加载 systemd
[[email protected] ~]# systemctl daemon-reload
第四步,为VNC设密码
[[email protected] ~]# 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 默认防火墙的可能需要
[[email protected] ~]# firewall-cmd --permanent --add-service vnc-server [[email protected] ~]# systemctl restart firewalld.service
第六步,设默认启动并开启VNC
[[email protected] ~]# systemctl enable [email protected]:1.service [[email protected] ~]# systemctl start [email protected]:1.service
这样基本上Centos 端就设好了,Windows 端要去下一个VNC Viewer 的软件。连接一下VNCSERVER_IP:1试试看着有点简陋但是上去了的
以上是关于centos7 安装VNCserver的主要内容,如果未能解决你的问题,请参考以下文章