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
7
votes
1 answer
minio Unsupported OkHttp library found. Must use okhttp >= 4.8.1
after using minio as instructions and fixing it with ways below, I failed.what can i do to solve this bug
io.minio
minio
8.3.5
…

sexy_Robber
- 89
- 1
- 6
7
votes
1 answer
Installation DVC on MinIO storage
Does anybody install DVC on MinIO storage?
I have read docs but not all clear for me.
Which command should I use for setup MinIO storage with this entrance parameters:
storage url: https://minio.mysite.com/minio/bucket-name/
login:…

Dmitry Korshunov
- 105
- 2
- 5
7
votes
1 answer
How to load file from custom hosted Minio s3 bucket into pandas using s3 URL format?
I have Minio server hosted locally.
I need to read file from minio s3 bucket using pandas using S3 URL like "s3://dataset/wine-quality.csv" in Jupyter notebook.
I tried using s3 boto3 library am able to download file.
import boto3
s3 =…

veeresh patil
- 1,168
- 1
- 11
- 18
7
votes
1 answer
Minio with Nginx and presigned URL
Is it possible do run MinIO not on default path on nginx?
I have a backend that generate presigned url with this code:
MinioClient minioClient = new MinioClient("http://x.x.x.x:9000", "key", "key");
String url =…

oigna
- 121
- 7
7
votes
2 answers
docker -minio - The access key ID you provided does not exist in our records
I have a docker file that should wait for a database with wait_for_it.sh and run a minio server.
I read the secrets from run/secrets and creates the MINIO_SECRET_KEY and MINIO_ACCESS_KEY.
THE MINIO SERVER is up but I cannot connect with a minio…

Tuz
- 1,810
- 5
- 29
- 58
7
votes
1 answer
Configuration to run minio docker container as service by gitlab-ci for testing purpose
I have tried several times to start the Minio server as a service in GitLab CI tu run my tests that need S3 buckets, but all the time I get the error that "Cannot link to a non running container".
This is how docker-compose.yaml for Minio Server…

pikachu_Super
- 83
- 1
- 5
7
votes
0 answers
Minio Large File Upload C# SDK
What is the best practice for uploading large files with Minio C# .Net Core SDK? There is no method I could find to upload chunked files. Only thing I could find is PutObjectAsync method and it uploads files above 5mb in parts. But what about a…

iboware
- 977
- 1
- 12
- 25
6
votes
4 answers
How to add a Minio connection to Airflow connections?
I am trying to add a running instance of MinIO to Airflow connections, I thought it should be as easy as this setup in the GUI (never mind the exposed credentials, this is a blocked of environment and will be changed afterwards):
Airflow as well as…

Roland Deschain
- 2,211
- 19
- 50
6
votes
3 answers
Minio: found backend type fs, expected xl or xl-single
I try to upgrade minio version in my docker commpose(previously I used image: minio/minio:RELEASE.2020-06-22T03-12-50Z and it was working
)
For now I have following docker-compose service:
version: '3.6'
services:
minio:
container_name: minio
…

gstackoverflow
- 36,709
- 117
- 359
- 710
6
votes
2 answers
Getting '[SSL: WRONG_VERSION_NUMBER] wrong version number when working with minio?
I installed local minio storage:
wget https://dl.min.io/server/minio/release/linux-amd64/minio
chmod +x minio
./minio server /home/myuser/minio_storage --console-address ":5050"
I'm trying to connect and create new bucket:
client =…

user3668129
- 4,318
- 6
- 45
- 87
6
votes
1 answer
Minio STS: provider jwt doesn't exist
solved
For anyone who's trying to fix this: this error means that minio is not being able to read your .../.well-known/openid-configuration url*.
(set through MINIO_IDENTITY_OPENID_CONFIG_URL or identity_openid > config_url in the json cnofig…

janwr
- 141
- 7
6
votes
2 answers
How to change port number when hosting minio server?
I am currently working on a project where I am attempting to use MinIO with a data moving program developed by my company. This broker software only allows for devices using port 80 to successfully complete a job; however, any avid user of MinIO…

Ethan G
- 61
- 1
- 1
- 2
6
votes
0 answers
How do i start MinIO Server with custom config in newer versions?
I'm trying to get up and running with Minio server. I've read their "server config guide" here, but there's one thing i don't get.
The guide says that previously you could put a config.json in the mino home dir you specify, but that it's now…

Mathias
- 3,879
- 5
- 36
- 48
6
votes
2 answers
Is there a way to stream data directly from python request to minio bucket
I am trying to make a GET request to a server to retrieve a tiff image. I then want to stream it directly to MinIO using the put_object method in the MinIO python SDK.
I know I could do this by saving the image to a temp file, then uploading but I…

Judson Crouch
- 61
- 1
- 2
6
votes
0 answers
minio presigned get url 403 SignatureDoesNotMatch
The presigned url (which's generated by my golang server side code) of getting object failed with 403 (SignatureDoesNotMatch), but the presigned url i got from minio browser (https:domain.com:9000/) works as expected (can download image from…

Gary
- 133
- 1
- 8