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
相关推荐
weixin_6042366728 分钟前
华三 路由器 极简核心配置
运维·服务器·网络·h3c·h3c路由器
鹤落晴春1 小时前
【Linux复习】管理SELinux安全性
linux·运维·服务器
梦梦代码精1 小时前
2026年PHP开源商城系统实测对比:架构、多商户、商用授权,谁才是真·省心?
vue.js·docker·架构·开源·代码规范
AI智图坊1 小时前
多件装组合SKU图的批量生产效率分析:从PS手工到AI自动化的工作流改造
大数据·运维·人工智能·gpt·ai作画·自动化·aigc
鹤落晴春4 小时前
【K8s】Pod调度、configMaps
云原生·容器·kubernetes
极客先躯5 小时前
高级java每日一道面试题-2026年02月02日-实战篇[Docker]-如何实现容器的持久化存储?
docker·容器·面试宝典·持久化·存储·韵味·java高级面试题
云计算磊哥@6 小时前
运维开发宝典026-MySQL02数据库表操作
运维·数据库·运维开发
天天进步20156 小时前
Tunnelto 源码解析 #9:控制服务器设计:Warp、WebSocket、Ping/Pong 与连接保活
运维·服务器·websocket
My is 李豆6 小时前
CentOS 7 安装 Docker 完整教程(含 docker-compose 插件)
docker·eureka·centos
极客先躯7 小时前
高级java每日一道面试题-2026年02月01日-实战篇[Docker]-Docker Volume 的生命周期管理是怎样的?
java·运维·docker·容器·持久化·架构图·容器卷