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
4 answers
Minio doesn't allow root user change
I am trying to change use a different password on mini. I followed the guide. First time around executed it via sudo (since the guide uses /data folder) and then cleaned everything up (deleted /data as well as .minio dir).
Trying to set the…

Zerg Overmind
- 955
- 2
- 14
- 28
4
votes
0 answers
Get hash of object in Minio
Is there a method to get a hash (md5, sha, etc.) of an object directly of Minio using the python SDK?
Is it possible to get the hash without requesting the file?

Lithilion
- 1,097
- 2
- 11
- 26
4
votes
1 answer
How to stat multiple objects in a single request on minio
I'm working with Minio and graphql in NodeJS and I'd like to set up a dataloader for my minio resources.
I'm aware of the statObject function that lets me get the metadata of a resource by providing the bucket and name of the resource.
I'd like to…

Abir Taheer
- 2,502
- 3
- 12
- 34
4
votes
1 answer
Is it possible to entirely disable authentication when using MinIO?
Is it possible to entirely disable authentication for MinIO for local and CI usage? A bit of background: We're migrating from LocalStack to MinIO and large swathes of code rely on unauthenticated access to S3 so disabling auth entirely would be the…

Mridang Agarwalla
- 43,201
- 71
- 221
- 382
4
votes
2 answers
Kubernetes Pod with hostNetwork True cannot reach external IPs of services in the same cluster
Problem
I have two pods A and B running in a cluster on minikube, both have external IPs www.service-a.com and www.service-b.com. Both external IPs are accessible from outside.
I need A to be able to call B with it's external IP rather than its…

Math is Hard
- 896
- 1
- 12
- 24
4
votes
0 answers
MinIO STS: cannot get temporary credentials
I'm following along this guide on how to get temporary credentials from minIO given an access token than I'm currently getting from WSO2.
However, upon reaching step 3 (the actual step that gets the temp credentials from minIO using STS API), I'm…

janwr
- 141
- 7
4
votes
2 answers
Minio: Render images in browser
I'm uploading my svg files to my local minio server (running in docker).
const uploadedFile = await client.putObject(bucketName, filename, readStream);
I then generate a public URL e.g. http://localhost:9000/link-identifiers/example.svg and I can…

Philipp Fock
- 173
- 2
- 11
4
votes
1 answer
How is the minio etag generated
Does anyone know how the minio etag is generated when you PUT an object?
Is it a hash of the file and can we use it to prevent uploading the same file twice?
Many thanks!

Suemayah Eldursi
- 305
- 4
- 12
4
votes
3 answers
Is it possible to use Spring Cloud AWS for connecting to an on-premise S3 compatible storage?
Is it possible to use Spring Cloud AWS (Spring Cloud AWS Core / Spring Cloud AWS Context) to connect to S3 on-premise (such as Minio/SwiftStack) that support full S3 API?
In short, the URL for S3 service needs to be framed within my application…

Sreenivasulu Guduru
- 53
- 5
4
votes
0 answers
Stream video from MinIO bucket on Node.js server using HTML5 video tag
I need to stream videos stored through MinIO using HTML5 MSE. I am using the minio node client on a sapper server to serve the video stream, with an endpoint like this:
import Minio from 'minio'
const minioClient = new Minio.Client({
endPoint:…

Youssef Moawad
- 2,846
- 5
- 28
- 50
4
votes
0 answers
gitlab runner cache "cache factory not found"
I'm trying to get caching working on my Kubernetes powered Gitlab Runner.
I've set up a custom S3 Minio Deployment running on minio:9000 and configured the config.toml file using a ConfigMap with this content:
concurrent = 10 # This sets the maximum…

Sam
- 5,375
- 2
- 45
- 54
4
votes
2 answers
Minio OOM(Out Of Memory) when uploading a file
I have a local Kubernetes cluster inside Minikube on my Mac. I deploy a Minio standalone server as a single container with resource limits specified. When I upload a file which is larger than container memory limit, the container is terminated with…

Michael Radionov
- 12,859
- 1
- 55
- 72
4
votes
1 answer
Can I disable the Minio web GUI?
I wonder if it is possible to disable the Minio GUI and only expose the REST API.
I am using the Docker image minio/minio and have to run Minio under a sub-path like example.com/the/path/to/minio, which is not supported by Minio and breaks the…

Datz
- 3,156
- 3
- 22
- 50
4
votes
1 answer
How to start using Minio without accessKey and secretKey?
I have a minio server running on debian using SystemD and proxied with NGINX and secured with Let's Encrypt. In the docs it suggests the service is comparable to Amazon S3 but I can't figure out how to actually use the service.
Version:…

AJcodez
- 31,780
- 20
- 84
- 118
4
votes
3 answers
Minio Python Client: Upload Bytes directly
I read the minio docs and I see two methods to upload data:
put_object() this needs a io-stream
fput_object() this reads a file on disk
I want to test minio and upload some data I just created with numpy.random.bytes().
How to upload data which is…

guettli
- 25,042
- 81
- 346
- 663