适用VNC图形化会安装比较多的依赖包,所以建议最好预留1G的内存

1.部署图形化和VNC

1)查看配置文件,修改当前系统默认启动模式
获取当前系统启动模式
[root@localhost ~]# systemctl get-default
multi-user.target
[root@localhost ~]# cat /etc/inittab
multi-user.target: analogous to runlevel 3 //命令行模式
graphical.target: analogous to runlevel 5 //图形界面模式
[root@localhost ~]# systemctl set-default graphical.target //由命令行模式更改为图形界面模式
[root@localhost ~]# systemctl set-default multi-user.target //由图形界面模式更改为命令行模式
获取当前系统启动模式
[root@localhost ~]# systemctl get-default
graphical.target

2)关闭防火墙
centos的防火墙是firewalld,关闭防火墙的命令
[root@localhost ~]# systemctl stop firewalld.service #停止firewall
[root@localhost ~]# systemctl disable firewalld.service #禁止firewall开机启动
[root@localhost ~]# setenforce 0
[root@localhost ~]# getenforce
[root@localhost ~]# cat /etc/sysconfig/selinux
SELINUX=disabled
SELINUXTYPE=targeted

3)安装软件:
yum groupinstall -y “GNOME Desktop”
yum install tigervnc-server tigervnc vnc vnc-server

4)配置vnc连接
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

重加载 systemd
systemctl daemon-reload

为VNC设密码

vncpasswd

启动vnc

systemctl enable vncserver@:1.service
systemctl start vncserver@:1.service

查看vnc端口

netstat -antulp | grep Xvnc

关闭vnc连接

[root@localhost ~]# /usr/bin/vncserver -kill :1

5)安装noVNC
安装依赖软件包
yum install -y epel*
yum install -y git
yum install -y tigervnc-server

安装noVNC
git clone git://github.com/kanaka/noVNC

创建安全连接(一路回车下去…)
cd ./noVNC/utils/
openssl req -new -x509 -days 365 -nodes -out self.pem -keyout self.pem

测试运行noVNC,在noVNC目录下,执行
./utils/launch.sh --vnc localhost:5901

查看占用端口进程
lsof -i:6080

正式运行
nohup ./utils/launch.sh --vnc localhost:5901 &

GitHub 加速计划 / li / linux-dash
10.39 K
1.2 K
下载
A beautiful web dashboard for Linux
最近提交(Master分支:2 个月前 )
186a802e added ecosystem file for PM2 4 年前
5def40a3 Add host customization support for the NodeJS version 4 年前
Logo

旨在为数千万中国开发者提供一个无缝且高效的云端环境,以支持学习、使用和贡献开源项目。

更多推荐