博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
将VNC 安装在Centos 7步骤
阅读量:5951 次
发布时间:2019-06-19

本文共 2306 字,大约阅读时间需要 7 分钟。

( Virtual Network Computing)VNC允许Linux系统可以类似实现像Windows中的远程桌面访问那样访问Linux桌面。本文配置机器是兴宁市网络信息中心的一台Centos 7 HP服务器环境下运行。

首先试试服务器装了VNC没


[root@wic ~]# rpm -q tigervnc tigervnc-server



没安装的话会直接出现

package tigervnc is not installedpackage 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:

[root@wic ~]# yum install tigervnc-server -y


第二步,修改配置信息,在/etc/systemd/system/下建立文件夹vncserver@:1.service 把example config 文件从/lib/systemd/system/vncserver@.service复制到里面

[root@wic ~]# cp /lib/systemd/system/vncserver@.service /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



如果是其他用户的话比如linoxide替换如下

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


如果还是有问题可以试试关闭防火墙

  1. 停止并禁用防火墙;systemctl stop firewalld.servicesystemctl disable firewalld.service

第六步,设默认启动并开启VNC

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


如果出现如下错误

Job for vncserver@:1.service failed. See ‘systemctl status vncserver@:1.service’ and ‘journ 
alctl -xn’ for details.

把 vncserver@:1.service 中的 Type 參數設置為 simple 
再執行 systemctl daemon-reload和启动开启VNC

这样基本上Centos 端就设好了,Windows 端要去下一个VNC Viewer 的软件。连接一下试试看着有点简陋但是上去了的

本文转自 Mr_sheng 51CTO博客,原文链接:http://blog.51cto.com/sf1314/1978785

转载地址:http://vkpxx.baihongyu.com/

你可能感兴趣的文章
Maven: 为Compiler插件设置source和target版本
查看>>
linux下永久添加静态路由
查看>>
android 全局变量和局部变量命名规则
查看>>
Ubuntu Sub-process /usr/bin/dpkg
查看>>
详解DNS的常用记录(下):DNS系列之三
查看>>
linux的日志服务器关于屏蔽一些关键字的方法
查看>>
事情的两面性
查看>>
只要会营销,shi都能卖出去?
查看>>
TCP/IP三次握手详细过程
查看>>
sed单行处理命令奇偶行输出
查看>>
走向DBA[MSSQL篇] 从SQL语句的角度 提高数据库的访问性能
查看>>
VC++深入详解学习笔记1
查看>>
安装配置discuz
查看>>
CentOS7 64位小型操作系统的安装
查看>>
线程互互斥锁
查看>>
KVM虚拟机&openVSwitch杂记(1)
查看>>
win7下ActiveX注册错误0x80040200解决参考
查看>>
《.NET应用架构设计:原则、模式与实践》新书博客--试读-1.1-正确认识软件架构...
查看>>
网址收藏
查看>>
2013 Linux领域年终盘点
查看>>