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
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
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