Ask an expert

Enterprise Download

AIStor is the most advanced version of MinIO's object store. It is designed for the exascale datainfrastructure challenges presented by modern AI workloads. AIStor's minimum requirements. .
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
A set of client libraries that enable developers to integrate the MinIO object store into applications. Please select your programming language below
go get github.com/minio/minio-go/v7
cargo add minio
pip install minio
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'
Install-Package Minio
vcpkg install minio-cpp
npm install --save minio
stack install minio-hs
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: 
    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
Deploy the Key Manager. Replace the HSMKEYVALUE in the example with the value from the previous step.
oc apply -f license.yaml -n keymanager-operator
apiVersion: v1
    data:  
        minio.license: 
    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.
go get github.com/minio/minio-go/v7
cargo add minio
pip install minio
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'
Install-Package Minio
vcpkg install minio-cpp
npm install --save minio
stack install minio-hs
AIStor Server
Enterprise-ready high-performance distributed object store designed for both on-premises and cloud-based hardware.
Documentation
Download
SHA256
https://dl.min.io/server/minio/release/linux-amd64/minio-20250723155402.0.0-1.x86_64.rpm.sha256sum
dnf install https://dl.min.io/aistor/minio/release/linux-amd64/minio-20250719083846.0.0-1.x86_64.rpm
minio --version
wget https://dl.min.io/aistor/minio/release/linux-amd64/minio_20250719083846.0.0_amd64.deb
dpkg -i minio_20250719083846.0.0_amd64.deb
minio --version
wget https://dl.min.io/aistor/minio/release/linux-amd64/minio
chmod +x minio
./minio --version
AIStor Client
MinIO's first-party command-line tool for enabling Unix-like data management and scripting capabilities on S3-compatible Object Stores.
Documentation
Download
SHA256
https://dl.min.io/server/minio/release/linux-amd64/minio-20250723155402.0.0-1.x86_64.rpm.sha256sum
dnf install https://dl.min.io/aistor/mc/release/linux-amd64/mcli-20250728190230.0.0-1.x86_64.rpm
mc --version
wget https://dl.min.io/aistor/mc/release/linux-amd64/mcli_20250728190230.0.0_amd64.deb
dpkg -i mcli_20250728190230.0.0_amd64.deb
mc --version
wget https://dl.min.io/aistor/mc/release/linux-amd64/mc
chmod +x mc
./mc --version
AIStor Key Manager
A highly available, powerful and operationally simple key management server optimized for large storage infrastructures.
Documentation
Download
SHA256
https://dl.min.io/aistor/minkms/release/linux-amd64/minkms.sha256sum
Binary
wget https://dl.min.io/aistor/minkms/release/linux-amd64/minkms
chmod +x minkms
./minkms --version
AIStor Loadbalancer/Firewall
An S3-aware, lightweight and scalable load balancer and firewall for large scale data infrastructure.
Download
SHA256
https://dl.min.io/aistor/minwall/release/linux-amd64/minwall.sha256sum
Binary
wget https://dl.min.io/aistor/minwall/release/linux-amd64/minwall
chmod +x minwall
./minwall --version
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.
go get github.com/minio/minio-go/v7
cargo add minio
pip install minio
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'
Install-Package Minio
vcpkg install minio-cpp
npm install --save minio
stack install minio-hs
AIStor Server
Enterprise-ready high-performance distributed object store designed for both on-premises and cloud-based hardware.
Documentation
Download
SHA256
https://dl.min.io/server/minio/release/linux-amd64/minio-20250723155402.0.0-1.x86_64.rpm.sha256sum
dnf install https://dl.min.io/aistor/minio/release/linux-arm64/minio-20250719083846.0.0-1.aarch64.rpm
minio --version
wget https://dl.min.io/aistor/minio/release/linux-arm64/minio_20250719083846.0.0_arm64.deb
dpkg -i minio_20250719083846.0.0_arm64.deb
minio --version
wget https://dl.min.io/aistor/minio/release/linux-arm64/minio
chmod +x minio
./minio --version
AIStor Client
MinIO's first-party command-line tool for enabling Unix-like data management and scripting capabilities on S3-compatible Object Stores.
Documentation
Download
SHA256
https://dl.min.io/server/minio/release/linux-amd64/minio-20250723155402.0.0-1.x86_64.rpm.sha256sum
dnf install https://dl.min.io/aistor/mc/release/linux-arm64/mcli-20250728190230.0.0-1.aarch64.rpm
mc --version
wget https://dl.min.io/aistor/mc/release/linux-arm64/mcli_20250728190230.0.0_arm64.deb
dpkg -i mcli_20250728190230.0.0_arm64.deb
mc --version
wget https://dl.min.io/aistor/mc/release/linux-arm64/mc
chmod +x mc
./mc --version
AIStor Key Manager
A highly available, powerful and operationally simple key management server optimized for large storage infrastructures.
Documentation
Download
SHA256
https://dl.min.io/aistor/minkms/release/linux-arm64/minkms.sha256sum
Binary
wget https://dl.min.io/aistor/minkms/release/linux-arm64/minkms
chmod +x minkms
./minkms --version
AIStor Loadbalancer/Firewall
An S3-aware, lightweight and scalable load balancer and firewall for large scale data infrastructure.
Documentation
Download
SHA256
https://dl.min.io/aistor/minwall/release/linux-arm64/minwall.sha256sum
Binary
wget https://dl.min.io/aistor/minwall/release/linux-arm64/minwall
chmod +x minwall
./minwall --version
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.
go get github.com/minio/minio-go/v7
cargo add minio
pip install minio
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'
Install-Package Minio
vcpkg install minio-cpp
npm install --save minio
stack install minio-hs
AIStor Server
Enterprise-ready high-performance distributed object store designed for both on-premises and cloud-based hardware.
Podman
podman pull quay.io/minio/aistor/minio:latest
podman run minio/aistor/minio --version
AIStor Client
MinIO's first-party command-line tool for enabling Unix-like data management and scripting capabilities on S3-compatible Object Stores.
Podman
podman pull quay.io/minio/aistor/mc:latest
podman run --name my-mc --hostname my-mc -it --entrypoint /bin/bash --rm minio/mc
mc --version
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.
stack install minio-hs
cargo add minio
pip install minio
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'
Install-Package Minio
vcpkg install minio-cpp
npm install --save minio
stack install minio-hs
amd64
AIStor Server
Enterprise-ready high-performance distributed object store designed for both on-premises and cloud-based hardware.
Documentation
Download
SHA256
https://dl.min.io/aistor/minio/release/windows-amd64/minio.exe.sha256sum
Binary
Invoke-WebRequest -Uri "https://dl.min.io/aistor/minio/release/windows-amd64/minio.exe" -OutFile "minio.exe"
minio.exe --version
AIStor Client
MinIO's first-party command-line tool for enabling Unix-like data management and scripting capabilities on S3-compatible Object Stores.
Documentation
Download
SHA256
https://dl.min.io/aistor/mc/release/windows-amd64/mc.exe.sha256sum
Binary
Invoke-WebRequest -Uri "https://dl.min.io/aistor/mc/release/windows-amd64/mc.exe" -OutFile "mc.exe"
mc.exe --version
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.
stack install minio-hs
cargo add minio
pip install minio
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'
Install-Package Minio
vcpkg install minio-cpp
npm install --save minio
stack install minio-hs
arm64
AIStor Server
Enterprise-ready high-performance distributed object store designed for both on-premises and cloud-based hardware.
Documentation
Download
SHA256
https://dl.min.io/aistor/minio/release/darwin-arm64/minio.sha256sum
brew install minio/aistor/minio
curl --progress-bar -O https://dl.min.io/aistor/minio/release/darwin-arm64/minio
chmod +x minio
./minio --version
MinIO Client
MinIO's first-party command-line tool for enabling Unix-like data management and scripting capabilities on S3-compatible Object Stores.
Documentation
Download
SHA256
https://dl.min.io/aistor/mc/release/darwin-arm64/mc.sha256sum
brew install minio/aistor/mc
curl --progress-bar -O https://dl.min.io/aistor/mc/release/darwin-arm64/mc
chmod +x mc
./mc --version
MinIO SDK
A set of client libraries that enable developers to integrate the MinIO object store into applications. Please select your programming language below
go get github.com/minio/minio-go/v7
cargo add minio
pip install minio
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'
Install-Package Minio
vcpkg install minio-cpp
npm install --save minio
stack install minio-hs

Get a Free Trial License

Access 2 months of an Enterprise Trial License.