Download High-Performance Object Storage | MinIO
MinIO Logo

Enterprise Download

AIStor is the most advanced version of MinIO's object store. It is designed for the exascale data
infrastructure challenges presented by modern AI workloads. AIStor's minimum requirements.

License Key

AIStor Helm Repository

helm repo add minio https://helm.min.io
helm search repo minio

AIStor Server

Enterprise-ready high-performance distributed object store designed for both on-premises and cloud-based hardware.

1

Install Operators

Install the Object Store Operator and its supporting resources

helm install aistor minio/aistor-objectstore-operator \
    --namespace aistor \
    --create-namespace \
    --set license="<YOUR_LICENSE_KEY>"
2

Install Object Store

Create a new Object Store using the default Helm values.

helm install my-objectstore minio/aistor-objectstore \
    --namespace my-objectstore \
    --create-namespace 

AIStor Key Manager

A highly available, powerful and operationally simple key management server optimized for large storage infrastructures.

1

Install Key Manager Operator

helm install keymanager-operator minio/aistor-keymanager-operator \
    --namespace keymanager-operator \
    --create-namespace  \
    --set license="<YOUR_LICENSE_KEY>"
2

Create HSM key

Create an HSM key used for protecting all KMS data on disk:

docker run quay.io/minio/aistor/minkms:latest --soft-hsm
    hsm:aes256:HSMKEYVALUE
3

Install KeyManager

Deploy the Key Manager. Replace the HSMKEYVALUE in the example with the value from the previous step.

helm install my-keymanager minio/aistor-keymanager \ 
    --namespace my-keymanager \ 
    --create-namespace \ 
    --set keyManager.hsm.key="hsm:aes256:HSMKEYVALUE"

AIStor Volume Manager

DirectPV is a CSI driver for Direct Attached Storage. In a simpler sense, it is a distributed persistent volume manager, and not a storage system like SAN or NAS.

HELM
helm install directpv minio/aistor-volumemanager \ 
    --set license="<YOUR-LICENSE-KEY>"

MinIO SDK

Each SDK exposes only S3 API functions, allowing developers build applications on AIStor Object Storage without the overhead associated with common cloud provider S3 libraries.

Maven Central
<dependency>
    <groupId>io.minio</groupId>
    <artifactId>minio</artifactId>
    <version>8.4.3</version>
</dependency>
Gradle Groovy DSL
implementation 'io.minio:minio:8.4.3'
go get github.com/minio/minio-go/v7
npm install --save minio
pip install minio
.NET Framework and .NET Core
Install-Package Minio
stack install minio-hs
vcpkg install minio-cpp
cargo add minio

AIStor Server

Enterprise-ready high-performance distributed object store designed for both on-premises and cloud-based hardware.

1

Create AIStor namespace

oc new-project aistor
2

Install AIStor Object Store Operator bundle

oc apply -f subscription.yaml -n aistor
apiVersion: operators.coreos.com/v1alpha1
    kind: Subscription
    metadata:  
        name: minio-object-store-operator
    spec:  
        channel: stable  
        installPlanApproval: Automatic  
        name: minio-object-store-operator  
        source: certified-operators  
        sourceNamespace: openshift-marketplace  
        startingCSV: minio-object-store-operator.v2025.7.1011319
    ---
    apiVersion: operators.coreos.com/v1
    kind: OperatorGroup
    metadata:  
        name: objectstore-operator-group
3

Install the license

oc apply -f license.yaml -n aistor
apiVersion: v1
    data:  
        minio.license: <base 64 encoded license here>
    kind: Secret
    metadata:  
        name: minio-license
    type: Opaque

AIStor Key Manager

A highly available, powerful and operationally simple key management server optimized for large storage infrastructures.

1

Create AIStor namespace

oc new-project keymanager-operator
2

Install AIStor Object Store Operator bundle

oc apply -f subscription.yaml -n keymanager-operator
apiVersion: operators.coreos.com/v1alpha1
    kind: Subscription
    metadata:  
        name: minio-key-manager-operator
    spec:  
        channel: stable  
        installPlanApproval: Automatic  
        name: minio-key-manager-operator  
        source: certified-operators  
        sourceNamespace: openshift-marketplace  
        startingCSV: minio-key-manager-operator.v2025.7.1011319
    ---
    apiVersion: operators.coreos.com/v1
    kind: OperatorGroup
    metadata:  
        name: key-manager-operator-group
3

Install the license

oc apply -f license.yaml -n keymanager-operator
apiVersion: v1
    data:  
        minio.license: <base 64 encoded license here>
    kind: Secret
    metadata:  
        name: minio-license 
    type: Opaque

MinIO SDK

Each SDK exposes only S3 API functions, allowing developers build applications on AIStor Object Storage without the overhead associated with common cloud provider S3 libraries.

Maven Central
<dependency>
    <groupId>io.minio</groupId>
    <artifactId>minio</artifactId>
    <version>8.4.3</version>
</dependency>
Gradle Groovy DSL
implementation 'io.minio:minio:8.4.3'
go get github.com/minio/minio-go/v7
npm install --save minio
pip install minio
.NET Framework and .NET Core
Install-Package Minio
stack install minio-hs
vcpkg install minio-cpp
cargo add minio

AIStor Server

Enterprise-ready high-performance distributed object store designed for both on-premises and cloud-based hardware.

AIStor Client

MinIO's first-party command-line tool for enabling Unix-like data management and scripting capabilities on S3-compatible Object Stores.

AIStor Key Manager

A highly available, powerful and operationally simple key management server optimized for large storage infrastructures.

AIStor Loadbalancer/Firewall

An S3-aware, lightweight and scalable load balancer and firewall for large scale data infrastructure.

MinIO SDK

Each SDK exposes only S3 API functions, allowing developers build applications on AIStor Object Storage without the overhead associated with common cloud provider S3 libraries.

Maven Central
<dependency>
    <groupId>io.minio</groupId>
    <artifactId>minio</artifactId>
    <version>8.4.3</version>
</dependency>
Gradle Groovy DSL
implementation 'io.minio:minio:8.4.3'
go get github.com/minio/minio-go/v7
npm install --save minio
pip install minio
.NET Framework and .NET Core
Install-Package Minio
stack install minio-hs
vcpkg install minio-cpp
cargo add minio

AIStor Server

Enterprise-ready high-performance distributed object store designed for both on-premises and cloud-based hardware.

AIStor Client

MinIO's first-party command-line tool for enabling Unix-like data management and scripting capabilities on S3-compatible Object Stores.

MinIO SDK

Each SDK exposes only S3 API functions, allowing developers build applications on AIStor Object Storage without the overhead associated with common cloud provider S3 libraries.

Maven Central
<dependency>
    <groupId>io.minio</groupId>
    <artifactId>minio</artifactId>
    <version>8.4.3</version>
</dependency>
Gradle Groovy DSL
implementation 'io.minio:minio:8.4.3'
go get github.com/minio/minio-go/v7
npm install --save minio
pip install minio
.NET Framework and .NET Core
Install-Package Minio
stack install minio-hs
vcpkg install minio-cpp
cargo add minio

AIStor Server

Enterprise-ready high-performance distributed object store designed for both on-premises and cloud-based hardware.

AIStor Client

MinIO's first-party command-line tool for enabling Unix-like data management and scripting capabilities on S3-compatible Object Stores.

MinIO SDK

Each SDK exposes only S3 API functions, allowing developers build applications on AIStor Object Storage without the overhead associated with common cloud provider S3 libraries.

Maven Central
<dependency>
    <groupId>io.minio</groupId>
    <artifactId>minio</artifactId>
    <version>8.4.3</version>
</dependency>
Gradle Groovy DSL
implementation 'io.minio:minio:8.4.3'
go get github.com/minio/minio-go/v7
npm install --save minio
pip install minio
.NET Framework and .NET Core
Install-Package Minio
stack install minio-hs
vcpkg install minio-cpp
cargo add minio

AIStor Server

Enterprise-ready high-performance distributed object store designed for both on-premises and cloud-based hardware.

AIStor Client

MinIO's first-party command-line tool for enabling Unix-like data management and scripting capabilities on S3-compatible Object Stores.

MinIO SDK

Each SDK exposes only S3 API functions, allowing developers build applications on AIStor Object Storage without the overhead associated with common cloud provider S3 libraries.

Maven Central
<dependency>
    <groupId>io.minio</groupId>
    <artifactId>minio</artifactId>
    <version>8.4.3</version>
</dependency>
Gradle Groovy DSL
implementation 'io.minio:minio:8.4.3'
go get github.com/minio/minio-go/v7
npm install --save minio
pip install minio
.NET Framework and .NET Core
Install-Package Minio
stack install minio-hs
vcpkg install minio-cpp
cargo add minio

You are using Internet Explorer version 11 or lower. Due to security issues and lack of support for web standards, it is highly recommended that you upgrade to a modern browser.