Install VNC in Docker container

In a headless server environment, Docker is installed and the container uses the host network mode, for example --network=host.

If you want to use a desktop environment inside your container, you can install XFCE and TigerVNC. If you want to connect to the desktop from your browser rather than through a VNC client, you also need to install noVNC.

The XFCE desktop is like this:

And the noVNC is like this:

In this example:

  • The VNC port is 5966.
  • The noVNC port is 6080.

Configuration

1. Install Packages

Install XFCE, TigerVNC, noVNC, and the required supporting packages:

bash 复制代码
sudo apt update && sudo apt install -y \
  xfce4 \
  dbus-x11 \
  tigervnc-standalone-server \
  tigervnc-common \
  novnc \
  websockify

2. Set Up the VNC Password

Set the VNC password. In this example, the password is vnc123456.

bash 复制代码
mkdir -p ~/.vnc
printf "vnc123456\nvnc123456\nn\n" | vncpasswd

3. Write the Startup File

Create the VNC startup file so that XFCE starts when you connect to the VNC session.

bash 复制代码
cat > ~/.vnc/xstartup <<'EOF'
#!/bin/sh
unset SESSION_MANAGER
unset DBUS_SESSION_BUS_ADDRESS
export XDG_SESSION_TYPE=x11
exec startxfce4
EOF

chmod +x ~/.vnc/xstartup

Start and Connect

1. Start the VNC Server

Start the VNC server and set the port to 5966.

bash 复制代码
vncserver :66

The display number :66 maps to port 5966. After the VNC server starts, you can connect to the desktop with a VNC client, for example by creating a VNC session in MobaXterm.

Notice: After running vncserver :66 to start the VNC service, the current terminal may become very slow or less responsive. If you need to run other commands, open a new terminal and execute them there.

For example, when I use a container, I usually first connect to the host machine through SSH with MobaXterm. Then, on the host machine, I create a new tmux session. Inside that tmux session, I use one window to SSH into the container and start the VNC service. After the VNC service is started, I switch to other tmux windows to run the other commands I need. The tmux window that was used to start the VNC service is left idle. Do not close this window, because closing it will also stop the VNC service, even if you do not explicitly run the command to kill the VNC server.

2. Stop the VNC Server

If you want to stop the VNC server on port 5966:

bash 复制代码
vncserver -kill :66

3. Start noVNC for Browser Access

After starting the VNC server, start noVNC to allow browser-based access to the desktop:

bash 复制代码
websockify --web=/usr/share/novnc/ 0.0.0.0:6080 localhost:5966

Then use the following URL to connect:

text 复制代码
http://IP:6080/vnc.html

Replace IP with your actual IP address, for example:

text 复制代码
http://192.168.1.2:6080/vnc.html

4. Show Running VNC Services

To check the running VNC services, you can use the following command:

bash 复制代码
vncserver -list
相关推荐
小小的木头人8 小时前
Ubuntu 使用 udev + systemd + UUID 实现 USB 硬盘自动挂载
linux·运维·ubuntu
Kevin Wang7278 小时前
Nvidia-AGX-spark部署手册——课堂质量诊断(jetpack:r36)
python·docker·容器
布鲁飞丝8 小时前
彩笔运维勇闯机器学习--cpu与qps的线性关系
运维·人工智能·机器学习
kaoa0009 小时前
Linux入门攻坚——84、网络虚拟化技术-1
linux·运维·服务器
我头发多我先学10 小时前
linux系统编程:初识进程
linux·运维·服务器
云飞云共享云桌面10 小时前
SolidWorks—天津智能装备工厂1台高配主机共享给10个研发用
运维·服务器·自动化·汽车·制造
回眸不遇10 小时前
将 Docker虚拟磁盘文件ext.vhdx迁移出C盘 ,更换到D盘
c语言·docker·容器
苍狗T11 小时前
LVS相关知识总结
linux·运维·服务器·lvs
雨辰AI11 小时前
K8s人大金仓主从高可用搭建|容器化集群自动同步+故障切换(生产完整版)
云原生·容器·kubernetes
各类产品分享12 小时前
什么是AR智慧运维系统,主要能解决什么问题
运维·ar·ar智慧运维解决方案