• 首页
  • 产品中心
    • 数式Oinone四大产品

      低代码开发平台无代码开发平台集成开发平台AI大模型开发
    • 数式Oinone体系能力

      用户与组织权限管理文件管理消息中心国际化业务审计
    • 数式Oinone核心产品特性

      低无一体面向软件公司场景无限制应用级扩容可分可合
  • 服务中心
    • 客户服务

      预约演示方案咨询私有部署找人定制
    • 开发者

      问答下载
    • Oinone学院

      社区学习

    《精讲面向软件公司的低代码平台——以Oinone为例》

  • 合作伙伴
    渠道申请伙伴名录专家库
  • 关于数式
0571-88757863

Project Deployment:Common Issues in Docker Deployment


I. Container Startup Exception:

How to handle the exception library initialization failed - unable to allocate file descriptor table - out of memory during container startup?

(I) Cause

After installing Docker on different operating systems, the container runtime environments are inconsistent, requiring adjustments to Docker runtime parameters.

(II) Solution

  • Edit the /etc/systemd/system/docker.service file. In some systems, the file is located at /lib/systemd/system/docker.service.

View the location of Docker's systemd (docker.service) configuration:

systemctl status docker
  • Modify the following parameters:
LimitNOFILE=65535
LimitNPROC=65535
LimitCORE=65535
  • Execute the following scripts:
systemctl daemon-reload
systemctl restart docker

II. Container Startup Exception II:

How to handle the exception library initialization failed - unable to allocate file descriptor table - out of memorypanic: signal: aborted (core dumped) during container startup?

(I) Problem Symptoms

  1. The configuration based on [Issue 1] still does not take effect.
  2. Attempts to modify the ulimits of the host system kernel and restart Docker still result in errors. Modify docker.service (file location: /etc/systemd/system/docker.service or /lib/systemd/system/docker.service in some systems).

(II) Solution

View the location of Docker's systemd (docker.service) configuration using the method in [Issue 1].

Add the default ulimit configuration for container creation after the ExecStart command, as follows, setting the container's ulimit to 65535:65535 when starting:

--default-ulimit nofile=65535:65535

After configuration:

ExecStart=/usr/bin/dockerd -H fd:// --containerd=/run/containerd/containerd.sock --default-ulimit nofile=65535:65535

Execute the following scripts:

systemctl daemon-reload
systemctl restart docker

Reference: https://blog.csdn.net/weixin_42241322/article/details/137122868

III. Error Pulling Designer Image:

Error message: Failed to connect to the image harbor.oinone.top.

docker login --username=schhsw_oinone harbor.oinone.top

i Info → A Personal Access Token (PAT) can be used instead.
          To create a PAT, visit https://app.docker.com/settings


Password:
time="2025-02-27T11:24:58+08:00" level=info msg="Error logging in to endpoint, trying next endpoint" error="Get \"https://harbor.oinone.top/v2/\": dial tcp 0.0.0.0:443: connect: connection refused"
Get "https://harbor.oinone.top/v2/": dial tcp 0.0.0.0:443: connect: connection refused
kfpt@kfpt-virtual-machine:~$ sudo  -i
root@kfpt-virtual-machine:~# docker login --username=schhsw_oinone harbor.oinone.top

i Info → A Personal Access Token (PAT) can be used instead.
          To create a PAT, visit https://app.docker.com/settings


Password:
Error response from daemon: Get "https://harbor.oinone.top/v2/": dial tcp 0.0.0.0:443: connect: connection refused

Troubleshooting process:

After troubleshooting, the cause was found to be a DNS configuration issue. Changing to an Alibaba Cloud IP resolved the problem.

Edit this page
Last Updated:1/15/26, 4:02 AM
Prev
Project Integration:Introducing Nacos as the Registration Center in Oinone Projects
Next
Project Deployment:Oinone Offline Deployment of Designer JAR Package
默认页脚
Copyright © 2026 Mr.Hope