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
2
votes
1 answer
List out files inside folder in S3 bucket using minio
I am trying to read files from S3 bucket using minio client.
https://docs.min.io/docs/java-client-quickstart-guide.html
I am able to make connection using this client and able to access the bucket also. Now, I need to access a file inside a folder…

Praveenks
- 1,436
- 9
- 40
- 79
2
votes
1 answer
MinIO mc client Error: dial tcp: lookup minio on 192.168.2.254:53: no such host
I'm running a MinIO server instance on my Raspberry Pi 4 (cross compiled for ARMv7):
pi@raspberrypi:~ $ ./minio server data/
Endpoint: http://169.254.65.231:9000 http://192.168.2.49:9000 http://172.17.0.1:9000 http://172.18.0.1:9000 …

Alex
- 95
- 1
- 10
2
votes
1 answer
Kuzzle S3 plugin / Minio cant connect
I have the following Kuzzle S3 Plugin config:
"s3": {
// AWS S3 bucket
"bucketName": "chris", // this is a bucket i created in Minio
"endpoint": "http://10.0.0.66:9000",
"s3ClientOptions": {
"s3ForcePathStyle": false
},
…

Chris Jackson
- 718
- 1
- 6
- 14
2
votes
1 answer
Error on upload file using league/flysystem-aws-s3-v3 on Laravel into Minio
I have error when trying to upload files to Minio object-storage server (something similar to AWS S3).
My endpoint is using hostname such as example.com, and the bucket is "mybucket".
But when I upload file I got error like this :
Error executing…

Agung Prihanggoro
- 131
- 12
2
votes
1 answer
How to upload a directory to Minio using Python
Using the Python client, how can I recursively upload all files in a local directory to Minio while preserving the directory structure?

Emre
- 933
- 15
- 27
2
votes
1 answer
Failed to load object with presigned url Minio Python
i'm using Minio Server to handle files in my Flask API. I generate Presigned Url to upload images directly from Angular FrontEnd to save Backend resources.
Presign Url Generation works fine but when I upload my file from Postman or Angular Code,…

Raphaël Courivaud
- 58
- 5
2
votes
1 answer
How would I set size limits to buckets on minio?
I'm using minio on a VPS to host an S3 server. I'm making a cloud storage website as a personal project. I want every user to have a set amount of space, each user would have their own bucket. I already have most of the stuff set up, all I need is…

DontAsk_
- 139
- 2
- 12
2
votes
1 answer
How do I SQL Query MinIO objects using the MinIO Client (mc)?
Getting into Minio. Investigating a few commands,
If I do mc ls alias/bucket then I get expected output:
[2020-12-09 19:48:15 UTC] 10B Account-9.dta
[2020-12-09 19:48:22 UTC] 10B Account-90.dta
[2020-12-09 19:48:22 UTC] 11B…

Lorin S.
- 754
- 8
- 29
2
votes
1 answer
How to delete whole directory with files in it using Django default_storage
My Storage Structure:
my-bucket/
- dir_1/
- file_1
- dir_A
- dir_2/
What I tried:
default_storage.exists(name='dir_2/')
o/p: True
default_storage.delete(name='dir_2/')
dir_2 got deleted successfully.
But when…

Rakmo
- 1,926
- 3
- 19
- 37
2
votes
1 answer
How to download/get multiple objects from MinIO using a single call?
How can I download download/get multiple objects from MinIO using a single call of MinIO Java SDK.

Shreyas Holla P
- 145
- 2
- 14
2
votes
0 answers
Convert unit8array to "stream.Readable" or "Buffer" or "string"
I am trying to extract image from video frames, then export to s3 storage min.io (https://docs.min.io/docs/javascript-client-api-reference.html)
When writing the image to the s3 bucket using putObject, the 3rd argument "content" needs to be buffer /…

tudou
- 467
- 1
- 7
- 20
2
votes
1 answer
minio+KMS x509: certificate signed by unknown authority
I am trying to use minio as a local S3 server. I am following this article
I downloaded key and cert files.
I added the env parameters:
set MINIO_KMS_KES_ENDPOINT=https://play.min.io:7373
set MINIO_KMS_KES_KEY_FILE=D:\KMS\root.key
set…

Pavel Petrashov
- 1,073
- 1
- 15
- 34
2
votes
2 answers
Distributed MinIO failure scenario's
We want to run MinIO in a distributed / high-availability setup, but would like to know a bit more about the behavior of MinIO under different failure scenario's. Especially given the read-after-write consistency, I'm assuming that nodes need to…

TinkerTank
- 5,685
- 2
- 32
- 41
2
votes
1 answer
I accidentally deleted my images on minio server. Is it possible to restore minio backup (with and without docker)?
I have a minio server running. I accidentally deleted my images on minio server. But I have the backup of images in my local in a zip file. How do I restore it? I am using docker. should I mount or something?

M D R Dixit
- 21
- 1
2
votes
0 answers
How to write parquet to minio from spark?
We've got some code that creates and uses a local spark and writes parquet files to S3. It works with both Amazon S3 and IBM Cloud Object Storage. But when I stand up a minIO container and point the code there, it fails with an error like…

lmsurprenant
- 1,723
- 2
- 14
- 28