技术小站

centos7 rhel7安装配置vnc server

1、安装 VNC

# rpm -ivh tigervnc*.rpm --force --nodeps


2、配置VNC Server

# cp /lib/systemd/system/vncserver@.service /etc/systemd/system/vncserver@:5.service

# vi /etc/systemd/system/vncserver@:5.service     //修改红色的部分为你想用的用户名 以下使用 top 用户。


[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=/sbin/runuser -l top -c "/usr/bin/vncserver %i"

PIDFile=/home/top/.vnc/%H%i.pid

ExecStop=/bin/sh -c '/usr/bin/vncserver -kill %i > /dev/null 2>&1 || :'

[Install]

WantedBy=multi-user.target


3、加入到防火墙或关闭防火墙 @:5对应的端口就是 5905  @:3 就是5903

   3.1、加入到防火墙

   # firewall-cmd --permanent --zone=public --add-port=5905/tcp

   # firewall-cmd --reload

   3.2、关闭防火墙(重启系统后还要在关闭)

   # systemctl stop firewalld.service


4、su top 用户 设置用户vnc的密码

$ vncserver


5、回到 root用户  更新systemctl来确保其生效  

#systemctl daemon-reload


6、启动该服务来启用vnc的5号窗口

#systemctl start vncserver@:5.service


7、我们也可以将其设置为开机自启动

#systemctl enable vncserver@:5.service


8、关闭

 # systemctl stop vncserver@:5.service


9、查看端口占用

# netstat –apn | grep 5905

# netstat –apn | grep vnc

原创文章请注明转载自技术小站本文地址:http://www.i5i6.net/post/188.html,标题:centos7 rhel7安装配置vnc server

打赏

取消

感谢您的支持,我会继续努力的!

扫码支持
扫码打赏,你说多少就多少

打开支付宝扫一扫,即可进行扫码打赏哦

【我来说两句】
分享到:

精彩推荐:

相关文章:

CentOS 7 Linux samba 文件共享  (2022-11-5 19:31:25)

Centos 7 下 pure-ftpd搭建ftp服务器  (2022-5-9 9:56:0)

CentOS Linux系统通过串口console口连接配置网络设备  (2022-2-15 8:5:52)

CentOS 7 单用户修改root密码  (2021-5-25 10:37:24)

redhat 6.5 安装oracle 11gR2 完全手册 图文教程  (2017-9-11 15:20:9)

联想ThinkServer服务器安装CentOS7 Redhat7系统 驱动R110i RAID卡  (2017-4-12 17:27:17)

Linux 下 iSCSI存储开机自动挂载  (2017-3-27 13:42:36)

Linux xfs文件系统 格式化超过16T分区  (2016-10-30 19:46:44)

CentOS 7 and RedHat 7 时间同步即chrony服务配置  (2016-4-16 16:58:7)

RD450 板载r110i raid 安装RHEL 6.5 x64 加载驱动的方法(UEFI引导模式)  (2016-3-28 15:43:24)

评论 0