CentOS 7 安装VNC远程套件。
2
2022-08-05
首先试试服务器装了VNC没

[root@localhost ~]# rpm -q tigervnc tigervnc-server package tigervnc is not installed package tigervnc-server is not installed如果没有安装X-Windows 桌面的话要先安装Xwindows
[root@10-20-30-125 ~]## yum check-update [root@10-20-30-125 ~]## yum groupinstall "X Window System" [root@10-20-30-125 ~]## yum install gnome-classic-session gnome-terminal nautilus-open-terminal control-center liberation-mono-fonts [root@10-20-30-125 ~]## unlink /etc/systemd/system/default.target [root@10-20-30-125 ~]## ln -sf /lib/systemd/system/graphical.target /etc/systemd/system/default.target [root@10-20-30-125 ~]## reboot第一步,安装VNC packages:
[root@localhost ~]# yum install tigervnc-server -y第二步,修改配置信息,在/etc/systemd/system/下建立文件夹vncserver@:1.service 把example config 文件从/lib/systemd/system/vncserver@.service复制到里面
[root@localhost ~]# cp /lib/systemd/system/vncserver@.service /etc/systemd/system/vncserver@:1.service然后打开这个配置文件/etc/systemd/system/vncserver@:1.service替换掉默认用户名 找到这一行
ExecStart=/sbin/runuser -l这里我直接用root 用户登录,所以我替换成-c "/usr/bin/vncserver %i" PIDFile=/home/ /.vnc/%H%i.pid
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@localhost ~]# systemctl daemon-reload第四步,为VNC设密码
[root@localhost ~]# 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@localhost ~]# firewall-cmd --permanent --add-service vnc-server [root@localhost ~]# 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@localhost ~]# systemctl enable vncserver@:1.service [root@localhost ~]# systemctl start vncserver@:1.service
利用VNC Viewer软件访问IP:1端口

- 0
-
分享