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