一.安装
- 以root用户运行以下命令来安装vncserver;
yum install tigervnc-server
- 同样运行以下命令来安装vncviewer;
yum install vnc
- 停止并禁用防火墙;
systemctl stop firewalld.service
systemctl disable firewalld.service
二.配置
- vncviewer基本上不用配置;
- vncserver的配置,创建一个新的配置文件,以开启1号窗口为例(也可以同时开启多个窗口,修改数字即可),方法如下:
cp /lib/systemd/system/[email protected] /lib/systemd/system/[email protected]:1.service
或者再增加一个窗口:
cp /lib/systemd/system/[email protected] /lib/systemd/system/[email protected]:2.service
- 编辑/lib/systemd/system/[email protected]:1.service,设置用户root相关参数,最终内容如下:
[Unit]
|
- 上述内容中最好设置为root用户,否则可能会看到以下报错:
[email protected]:1.service - Remote desktop service (VNC)
|
三.应用
- 更新systemctl以使其生效;
systemctl daemon-reload
- 设置vncserver的密码;
vncpasswd root
按提示输入密码以及确认密码
- 启动该服务用来启用vnc的1号窗口;
systemctl start [email protected]:1.service 或者 vncserver :1
关闭1号窗口:
systemctl stop [email protected]:1.service 或者 vncserver -kill :1
- 设置为开机自动启动;
systemctl enable [email protected]:1.service
- 在/etc/sysconfig/iptables 添加5901端口
.在iptables中加入对应的端口5901(注意,如果有其他用户,那么也需要将端口加上。vnc的端口默认是5900 + n)
[[email protected] system]# cat /etc/sysconfig/iptables
End.