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

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

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

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

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

      问答下载
    • Oinone学院

      社区学习

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

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

Package installation


I. Overview

Note

This mode is only available for the Enterprise Edition. The open-source Community Edition can be installed through other modes.

The foundation is to prepare a Linux server with 4 cores and 16GB of memory. CentOS 7.6 64-bit is recommended for the operating system, which has all the necessary dependencies for Oinone and common useful packages installed.

It is suitable for using Oinone in formal, R&D, and testing environments. After additional deployment and maintenance work, it can be used long-term. In practical use, middleware such as Redis, Zookeeper, and RocketMQ can be deployed on independent servers. The deployment structure is illustrated as follows:

Deployment Structure
Deployment Structure

Note: If experiencing with other environments, networks need to be interoperable

  • Can the local development IP communicate with the server IP? Execute the command locally: ping 192.168.0.121 (replace with your own server IP)

  • Can the host IP where Docker is deployed communicate with the local development IP? Enter the server and execute the command: ping 192.168.0.60 (replace with your own local IP)

II. Install MySQL Database

If there is no existing database, you can download and install it from the official website: https://dev.mysql.com/downloads/mysql/.

Refer to MySQL Installation and Precautions

III. Deploy Other Middleware

RocketMQMandatory4.7.1+
RedisMandatory5.0.2+
ZookeeperMandatory3.5.8+

IV. Download Oinone Running Package

Browse the official Oinone community (doc.oinone.top), check the release notes of the corresponding version, and download the JAR file for independent deployment of all designers (backend services, including all designers), such as: pamirs-designer-boot-v5.3-5.3.8.4.jar.

V. Run Oinone Standard Backend Application

(I) Download Oinone Exclusive Launcher

After the running package is encrypted, Oinone's exclusive launcher is required. After downloading oinone-boot-starter.zip

(II) Startup Script

Example:

Take the Linux platform as an example

  1. Unzip the Oinone exclusive launcher zip file oinone-boot-starter.zip, and copy the Linux launcher linux-boot to the user's home directory.

  2. In the user's home directory, create a startup.sh file and an oinone directory.

  3. Find the following code in the startup.sh file and modify configuration items such as subject, licensePath, and jarPath.

#startup.sh
#!/bin/bash
# Directory where the script is located
home=$(cd "$(dirname "$0")" && pwd)
# Path to the startup JAR
jarPath=$home/oinone/pamirs-designer-boot-v5.3-5.3.8.4.jar
# Configuration path
applicationPath=$home/oinone/config/application.yml
# License information
subject=
licensePath=
nohup $home/linux-boot java -Duser.timezone=GMT+08:00 -Dhttps.protocols=TLSv1.2 -Dfile.encoding=UTF-8 \
  -jar $jarPath \
  --spring.config.location=$applicationPath \
  -Psubject=$subject \
  -Plicense=$licensePath \
  -Plifecycle=INSTALL > $home/out.log 2>&1  &
sleep 1
tail -200f $home/out.log

Note: Other Platform Support

The Linux (arm64 architecture) launcher is switched to: linux-boot-arm64.

The Mac OS launcher is switched to: darwin-boot

The Mac OS (arm64 architecture) launcher is switched to: darwin-boot-arm64

The Windows platform launcher is switched to: win-boot.exe

Tip

  1. The java -jar command used above is exactly the same as the conventional usage.
  2. The Oinone no-code designer does not support the use of the javaagent parameter.

(III) Modify the application.yml File in the config Directory

Download the application.yml file to the specified location, such as the $home/oinone/config/ directory, and make corresponding modifications.

If Mysql, Zookeeper, Redis, and RocketMQ are not on the same host, find the following code in the file and modify the IP, port, username, password, and other configuration items.

  • Mysql
# application.yml file
# Change to the IP, port (default port 3306, consistent with the port of MySQL on the server), username, password of the MySQL server
pamirs:
  datasource:
    pamirs:
      driverClassName: com.mysql.cj.jdbc.Driver
      type: com.alibaba.druid.pool.DruidDataSource
      url: jdbc:mysql://192.168.0.129:3306/demo_pamirs?useSSL=false&allowPublicKeyRetrieval=true&useServerPrepStmts=true&cachePrepStmts=true&useUnicode=true&characterEncoding=utf8&serverTimezone=Asia/Shanghai&autoReconnect=true&allowMultiQueries=true
      username: root
      password: shushi@2019
    base:
      driverClassName: com.mysql.cj.jdbc.Driver
      type: com.alibaba.druid.pool.DruidDataSource
      url: jdbc:mysql://192.168.0.129:3306/demo_base?useSSL=false&allowPublicKeyRetrieval=true&useServerPrepStmts=true&cachePrepStmts=true&useUnicode=true&characterEncoding=utf8&serverTimezone=Asia/Shanghai&autoReconnect=true&allowMultiQueries=true
      username: root
      password: shushi@2019
  • Zookeeper
# application.yml file
dubbo:
  application:
    name: pamirs-designer
    version: 1.0.0
  registry:
    address: zookeeper://127.0.0.1:2181
  protocol:
    name: dubbo
    port: 20880
    serialization: pamirs
  consumer:
    timeout: 5000
  provider:
    timeout: 5000
  scan:
    base-packages: pro.shushi
  cloud:
    subscribed-services:
pamirs:
  zookeeper:
    zkConnectString: 127.0.0.1:2181
    zkSessionTimeout: 60000
    rootPath: /oinone
  • Redis
# application.yml file
spring:
  redis:
    database: 0
    host: 127.0.0.1
    port: 6379
    timeout: 2000
    password: Abc@1234
    jedis:
      pool:
        # Maximum idle connections in the connection pool, default 8
        max-idle: 16
        # Minimum idle connections in the connection pool, default 0
        min-idle: 0
        # Maximum number of connections in the connection pool, default 8, negative value means no limit
        max-active: 16
        # Maximum blocking wait time for the connection pool (using negative value to indicate no limit), default -1
        max-wait: 3000
  • RocketMQ
# application.yml file
spring:
  rocketmq:
    name-server: 127.0.0.1:9876
  • File storage OSS
cdn:
  oss:
    name: MINIO
    type: MINIO
    bucket: pamirs
    uploadUrl: http://xxx.xxx.xxx.xxx:9000
    downloadUrl: http://xxx.xxx.xxx.xxx:9000
    accessKeyId: xxx
    accessKeySecret: xxx
    mainDir: upload/demo/
    validTime: 3600000
    timeout: 600000
    active: true
    referer:
    localFolderUrl:

Warning

When experiencing the Enterprise Edition, Oinone will provide default configurations, but note that the CDN in the formal environment needs to be replaced with your own server instead of using the test server provided by Oinone Technology. This server is cleaned regularly, leading to file loss.

For more OSS configurations, please refer to: File Storage Configuration

VI. Run Oinone Standard Frontend Application

VII. Common Issues

(I) How to handle the cannot execute binary file exception?

Problem Cause

The Oinone exclusive launcher is compiled and executed using Go language, and needs to be compiled separately for different operating system architectures.

Solution

  1. Install the Go language environment on the physical machine.
  2. Download the boot.go file and place it in the run directory. (Need to ask Oinone customer service for the latest boot.go file)
  3. Enter the run directory and execute the command go build -o "boot-starter" "boot.go".
  4. Add -v $home/run/boot-starter:/opt/pamirs/run/boot-starter \ in the startup.sh command to mount the file to the container.
  5. Delete the Docker container and then execute the startup.sh script to restart the image.

(II) How to handle the failed to open elf at /lib64/ld-linux-x86-64.so.2 exception?

Problem Cause

The host with some arm64 architecture cannot be compatible with the linux-boot launcher compiled in the amd64 environment, and the launcher needs to be replaced with linux-boot-arm64.

Solution

  1. Download oinone-boot-starter.zip and unzip it to obtain the linux-boot-arm64 launcher.
  2. Place the launcher in the run directory.
  3. Add -v $home/run/linux-boot-arm64:/opt/pamirs/run/boot-starter in the startup.sh command to replace the launcher in the image.
  4. Delete the Docker container and then execute the startup.sh script to restart the image.
Edit this page
Last Updated:1/15/26, 4:02 AM
Prev
Deploy Oinone through the cloud marketplace
Next
Switching from Community Edition to Enterprise Edition
默认页脚
Copyright © 2026 Mr.Hope