1. 安装乌班图Ubuntu Server 20.04.4 LTS
    https://cn.ubuntu.com/download/server/step1

  2. 乌班图安装图形界面Ubuntu 20.04 GUI installation
    https://linuxconfig.org/ubuntu-20-04-gui-installation

  3. 一键安装禅道16.4开源版
    https://www.zentao.net/dynamic/zentaopms16.4-80496.html

  4. 在乌班图安装webmin
    下载 Debian package suitable for Debian, Ubuntu or other derived Linux 地址:https://prdownloads.sourceforge.net/webadmin/webmin_1.990_all.deb 大小:14.8 MB,然后在乌班图的图形界面点右键安装deb包即可。

  5. 在webmin设置开机启动禅道:webmin-系统-开机和关机-创建一个新的systemd服务
    脚本并设置开机自动启动。脚本如下:

    [Unit]
    Description=zentao-start
    After=network.target

    [Service]
    Type=forking
    ExecStart=/opt/zbox/zbox start
    ExecReload=/opt/zbox/zbox restart
    ExecStop=/opt/zbox/zbox stop
    PrivateTmp=true

    [Install]
    WantedBy=multi-user.target

感谢:

两种方法设置linux环境下禅道开机自启动
https://blog.csdn.net/lshxuexi/article/details/100011654

ZBOX
https://devel.easycorp.cn/page/zbox.html

systemd.unit — Unit configuration
https://www.freedesktop.org/software/systemd/man/systemd.unit.html