Setting Up a Multi-Node MinIO Cluster on Four Servers

Prerequisites Each node runs a supported Linux distribution, and you have SSH access with appropriate privileges. The examples use four machines with IP addresses 192.168.8.171, 192.168.8.19, 192.168.8.179, and 192.168.8.168. 1. Create the MinIO System User and Data Directory On every server, prepare a dedicated user and storage location: sudo ...

Posted on Thu, 18 Jun 2026 17:29:38 +0000 by Aretai

Setting Up and Configuring a MinIO Environment

To set up and configure a MinIO environment, follow the steps below: Download the MinIO binary from the official website for your operating system. Extract the downloaded binary to your target folder. Create a data storage directory inside your chosen location. Add the MinIO binary to your system PATH sothat the minio command is available from ...

Posted on Sat, 30 May 2026 00:32:12 +0000 by Greaser9780

Deploying a Standalone MinIO Instance on Rocky Linux 9

Install Server and Client Packages # Install MinIO server package rpm -ivh https://dl.minio.org.cn/server/minio/release/linux-amd64/minio-20230518000536.0.0.x86_64.rpm # Install MinIO client package rpm -ivh https://dl.minio.org.cn/client/mc/release/linux-amd64/mcli-20230518165900.0.0.x86_64.rpm Define Environment Variibles for MinIO Create / ...

Posted on Sun, 17 May 2026 02:33:38 +0000 by lyealain

Deploying and Managing a High-Performance Object Storage Server with MinIO

Comparing Distributed File Storage Solusions When evaluating distributed storage architectures, MinIO stands out as a prominent solution. It is a high-performance object storage server built using Go, allowing it to run seamlessly across various operating systems including Windows, Linux, macOS, and FreeBSD. Its deployment is streamlined, often ...

Posted on Sat, 16 May 2026 00:38:36 +0000 by seek

Implementing Chunked Upload, Instant Transfer, and Resume Functionality with Spring Boot and MinIO

To enible chunked upload, instant transfer, and resume capabilities using Spring Boot with MinIO, follow these implementation steps: Add the MinIO dependency to your pom.xml configuration: <dependency> <groupId>io.minio</groupId> <artifactId>minio</artifactId> <version>8.3.0</version> </d ...

Posted on Sat, 09 May 2026 11:12:18 +0000 by davissj

High-Performance Multipart Upload and Merge with MinIO

Multipart Upload Architecture MinIO delivers near-linear scalability for large-object workloads by combining goroutine-level parallelism with a shared-nothing distributed design. Written in Go and bypassing tradisional GC pauses, it exposes the complete S3 multipart API surface: CreateMultipartUpload – reserve an upload session UploadPart – st ...

Posted on Fri, 08 May 2026 14:21:11 +0000 by Robert07

Implementing S3 Backup and Restore in Easysearch

Easysearch includes native support for S3 storage, enabling users to create and restore snapshots directly to Amazon S3-compatible services without installing external plugins. This integration streamlines the backup and migration workflow for data managed within the cluster. Prerequisite: Object Storage Setup A compatible S3 service is require ...

Posted on Fri, 08 May 2026 13:14:46 +0000 by Naithin