Rate This Document
Findability
Accuracy
Completeness
Readability

Installing MinIO

To ensure that the MinIO version used for compilation meets the Milvus requirements, it is advised to install MinIO Go 1.23.3 or later.

MinIO is a high-performance object storage system that is compatible with Amazon S3 APIs. It is widely used to store a large amount of unstructured data, such as images, videos, and log files. Correctly configuring and using MinIO can significantly improve system reliability and scalability, raise data storage and management efficiency, and streamline operations and maintenance (O&M).

  1. Download the binary file.
    • Arm
      1
      wget https://dl.min.io/server/minio/release/linux-arm64/minio --no-check-certificate
      
    • x86
      1
      wget https://dl.min.io/server/minio/release/linux-amd64/minio --no-check-certificate
      
  2. Grant the execute permission on the file.
    1
    chmod +x ./minio
    
  3. Copy the file to a specified directory.
    1
    cp ./minio /usr/bin/
    
  4. Check the version.
    1
    minio --version
    

    The installation is successful if the following information is displayed:

    1
    2
    3
    4
    minio version RELEASE.2024-11-07T00-52-20Z (commit-id=cefc43e4daa4cbb490ef6726ea374e26a93eb85e)
    Runtime: go1.23.3 linux/arm64
    License: GNU AGPLv3 - https://www.gnu.org/licenses/agpl-3.0.html
    Copyright: 2015-2024 MinIO, Inc.