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).
- Download the binary file.
- Arm
1wget https://dl.min.io/server/minio/release/linux-arm64/minio --no-check-certificate
- x86
1wget https://dl.min.io/server/minio/release/linux-amd64/minio --no-check-certificate
- Arm
- Grant the execute permission on the file.
1chmod +x ./minio
- Copy the file to a specified directory.
1cp ./minio /usr/bin/
- Check the version.
1minio --versionThe 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.
Parent topic: Configuring the Compilation Environment