MinIO offers high-performance, S3 compatible object storage. Native to Kubernetes, MinIO is the only object storage suite available on every public cloud, every Kubernetes distribution, the private cloud and the edge. MinIO is software-defined and is 100% open source under GNU AGPL v3.
Questions tagged [minio]
906 questions
4
votes
1 answer
How is the timeout in a GET request handled when retrieving a file from Minio in Dropwizard?
I want to add a GET request to my Dropwizard app so that a file is returned which was retrieved from a Minio server.
Consider
@Path("/file")
public class FileResource {
@GET
@Produces(MediaType.APPLICATION_OCTET_STREAM)
public Response…

A.Dumas
- 2,619
- 3
- 28
- 51
4
votes
0 answers
Minio/AWS-S3 upload file using multipart
I know that to upload binary file we should use multipart instead of Form-Urlencoded! but it seems like AWS-S3/Minio does not support it. Minio returns following error:

Hossein Nasr
- 1,436
- 2
- 20
- 40
3
votes
1 answer
get encrypted minio url
I have minio server and i want to download files from it with URL.
so i used the presigned_get_object function but it returned something like this:
https://dk-mini-io.darkube.app/media1/user_12/x.txt?X-...
but i don't want to show user id (user_12)…

lornejad
- 277
- 1
- 6
3
votes
1 answer
An error occurred (InvalidArgument) when calling the ListBuckets operation: S3 API Requests must be made to API port
We are using Minio for local testing of S3 AND we have created docker-compose file with Minio and our app dependency is as follows:
Docker-Compose File:
version: "2.1"
services:
minio:
image: minio/minio
container_name: minio
ports:
…

Anshita Singh
- 1,583
- 1
- 17
- 40
3
votes
1 answer
How to simulate AWS S3 in docker-compose using MinIO?
I have an application server that must fetch data from AWS S3, e.g. https://my-bucket.s3.us-east-1.amazonaws.com/assets/images/557a84a8-bd4b-7a8e-81c9-d445228187c0.png
I want to test this application server using docker-compose.
I can spin up an…

sdgfsdh
- 33,689
- 26
- 132
- 245
3
votes
2 answers
How to customize AccessDenied page of MinIO?
When the expiration date of MinIO links passes, It responds to an XML like this:
Request has expired
key-of-the-resource
bucket-name
…
AccessDenied

mostafa8026
- 273
- 2
- 12
- 25
3
votes
0 answers
MinIo Java cannot connect to s3 by https
I ran into a problem connecting to MinIO over https.
If my backend server connects to MinIO via http, then everything is fine.
But when trying to connect via https, an error occurs:
"The request signature we calculated does not match the signature…

mirrol
- 63
- 1
- 2
3
votes
1 answer
minio kes and Hashicorp vault using docker-compose
I want to use KES and Hashicorp vault to encrypt files in minio. Without using docker, I managed to encrypt files using these servers. My problem is that I want to run KES as a docker container using docker-compose. When I run the kes container…

Zahra Vahidi
- 103
- 1
- 10
3
votes
1 answer
Encode .parquet into io.Bytes
Goal: Upload a Parquet file to MinIO - this requires converting the file to Bytes.
I've been able to do this for .csv, .json and .txt:
bytes = data.to_csv().encode('utf-8')
bytes = json.dumps(self.data, indent=4, separators=(',', ':…

DanielBell99
- 896
- 5
- 25
- 57
3
votes
0 answers
How to deploy MinIO object storage in K8s via Helm chart?
As a K8s and MinIO newbie/learner, I would like to enable MinIO Operator in Kubernetes cluster for object storage service via Helm Charts (https://github.com/minio/operator/tree/master/helm, v4.4.1), I have 1 controller/4 nodes.
Each node has 4 x…

spark
- 531
- 6
- 17
3
votes
1 answer
Custom S3Boto3Storage with django-storages
I developed a Django app that I'm using VM's disk for saving and serving media and static files but in one of my models, I want to save my files in a FileField connected to my MinIO object storage. I set up the settings like this in the…

Omid Roshani
- 1,083
- 4
- 15
3
votes
1 answer
Docker-Compose minio switches port when viewed in browser
I am using the following section of my docker-compose.yml to add an s3 compatible service to my local development area:
minio:
image: minio/minio
container_name: experiments_minio
ports:
- '9000:9000'
- '9001:9001'
…

sisko
- 9,604
- 20
- 67
- 139
3
votes
2 answers
MinIO cluster on different hosts by Docker
Many post, forums and video has been checked, but I didn't see any solution.
I would like to build a MinIO Cluster with 4 different hosts with docker-compose.
Is there any solution?
Recent error message:
API: SYSTEM()
Time: 13:26:13 UTC…

zeerk
- 103
- 2
- 8
3
votes
1 answer
Minio dial tcp 127.0.1.1:443: connect: connection refused
after upgrading via mc command i get this error when i try to login to the (kind of new) minio console:
Post "https://fqdn.org/": dial tcp 127.0.1.1:443: connect: connection refused
I have a signed and valid SSL Certificate.
Downgrading minio (aka…

Thomas Lang
- 1,285
- 17
- 35
3
votes
0 answers
How to configure artifact store of mlflow tracking service to connect to minio S3 using minio STS generated acces_key, secret_key and session_token
Minio is configured with LDAP and am generating credentials of user
with AssumeRoleWithLDAPIdentity using STS API (reference)
From above values, I'm setting the variables AWS_ACCESS_KEY, AWS_SECRET_KEY, AWS_SESSION_TOKEN (reference)
I'm getting…

veeresh patil
- 1,168
- 1
- 11
- 18