CentOS7下安装配置vncserver
Posted konglingxi
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CentOS7下安装配置vncserver相关的知识,希望对你有一定的参考价值。
一.vnc server安装1.关闭防火墙
>>systemctl stop firewalld.service >>setenforce 0
也可以配置防火墙
>>firewall-cmd --zone=public --add-port=5901/tcp >>firewall-cmd --zone=public --add-port=5902/tcp >>firewall-cmd --reload
2.centos 服务器需要安装 GNOME Desktop
>>yum groupinstall "GNOME Desktop"
不建议安装GNOME Desktop,它会占用大量系统资源,安装完后大约要占用1G左右的空间,而且安装过程也较长,安装“X Window System”就可以了==》yum groups install "X Window System"
>>yum groups install "X Window System"
3.安装tigervncserver
>>yum install tigervnc-server tigervnc-server-module
4.配置
>>cp /lib/systemd/system/[email protected] /etc/systemd/system/[email protected]:1.service >>vim /etc/systemd/system/[email protected]:1.service
主要修改xxx为用户名:
[Service] Type=forking User=XXX # Clean any existing files in /tmp/.X11-unix environment ExecStartPre=-/usr/bin/vncserver -kill %i ExecStart=/sbin/runuser -l XXX -c "/usr/bin/vncserver %i" PIDFile=/XXX/.vnc/%H%i.pid ExecStop=-/usr/bin/vncserver -kill %i
5.启用配置文件
>>systemctl daemon-reload >>systemctl start [email protected]:1.service >>systemctl enable [email protected]:1.service >systemctl status [email protected]:1.service ##出来错误时 >>rm -f -R /tmp/.X11-unix/ ##再运行 >>systemctl daemon-reload >>systemctl enable [email protected]:1.service
6.设置登陆密码
##XXX为配置文件设置的用户名 ##vncpasswd时需要切换到修改用户目录下su XXX >>vncpasswd XXX
7.再次运用步骤五启动
8.查看端口状态
>>netstat -lnt | grep 590*
9.查看报错信息
>>grep vnc /var/log/messages
二.vnc viewer客户端连接
下载vnc viewer客户端连接,连接账号:服务器ip:端口号
以上是关于CentOS7下安装配置vncserver的主要内容,如果未能解决你的问题,请参考以下文章
CentOS7安装vncserver(启动失败及连接黑屏解决办法)