1,003 questions
-2
votes
0
answers
59
views
minio signature does not match golang api [closed]
I encountered a SignatureDoesNotMatch issue when switching MinIO from Docker Run to Docker Compose. I'm using PresignedUploadURLs to upload files from the frontend (React/Axios).
I've tried all the ...
0
votes
1
answer
89
views
contextlib tries to change a "frozen" exception
I got a strange error in my pytest after some Dependabot updates.
In my case it's triggered by an non-existent MinIO bucket exception.
None of the updates made by Dependabot were in MinIO or Python (...
2
votes
0
answers
57
views
connect MinIO server from another machine: boto3 503 and mc “Unable to initialize alias”
I run MinIO in Docker on Machine A and want to access it from Machine B (via Wi-Fi). boto3 returns 503 on HeadBucket, and the mc alias set fails. How should I configure MinIO and clients?
docker yml ...
0
votes
0
answers
120
views
Setting default access/secret token in minio through docker
I spent all afternoon with ChatGPT and couldn't figure this out. Using Minio in a Docker Stack for local development, everything works fine. Would love to, though, start it up with:
a default ...
1
vote
1
answer
221
views
Sending logs from Airflow to S3/Minio
I am in the process of setting up Airflow on my Kubernetes cluster using the official Helm chart. I want to push my task instance logs to S3 (well, Minio actually) to a bucket called airflow-logs. To ...
3
votes
1
answer
295
views
Upload a large file to Minio from Minio objects
I have the next case:
Get a certain count of N objects from Minio and create zip archive and upload it zip to Minio as one object.
Problem:
I have many objects, that are up to 40gb in size
I can't ...
2
votes
1
answer
840
views
Docker compose with MinIO `entrypoint` raises `config is not a recognized command`
I was using the following service definition in a docker compose file without problems,
to create a MinIO bucket.
createbucket:
image: minio/mc:latest
networks:
- main-network
entrypoint: &...
0
votes
1
answer
155
views
Download folder (or list of file) with large file (500MB) and build zip with laravel and minio
I'm trying to download a folder by calling my controller in Laravel.
However, I'm running into a "memory exceeded" issue because one of the files I'm downloading is around 500MB.
Currently, ...
0
votes
0
answers
128
views
MinIO in Kubernetes fails with "Rename across devices" error when using PersistentVolumeClaim (works with hostPath)
I'm setting up MinIO and MLflow in a Minikube Kubernetes cluster and encountering persistent volume issues. The deployment works correctly when using hostPath, but fails with a "Rename across ...
0
votes
1
answer
4k
views
Correct CORS configuration for minio
I have minio running locally, and I face cors issue while fetching a file. So I try to run this config:
<CORSConfiguration>
<CORSRule>
<AllowedOrigin>*</AllowedOrigin>
&...
2
votes
1
answer
104
views
How to stream a large file on Kubernetes pod
I want to create a large file(>200GB) and store it in Min.IO store. I deploy my attempts in a web app on a Kubernetes pod.
One attempt was with a modified Redeable stream and csv-writter library ...
0
votes
1
answer
1k
views
minio: Unsupported header for CORS configuration
I am trying to set CORS config for a bucket in minio. This is content of cors.xml
<CORSConfiguration>
<CORSRule>
<AllowedOrigin>*</AllowedOrigin>
<AllowedMethod>...
2
votes
2
answers
612
views
Docker minio web console access not accessible
i have used host windows virtual box and running rocky linux and docker.
highly appreciated results/inputs
docker minio pulled
docker run executed
virtual box port forward enabled 9000 , 9001
results ...
3
votes
1
answer
773
views
Laravel with MinIO on Docker: Unable to Write File When Uploading an Image
I’m working on a Laravel project that uses MinIO as the storage solution. The project is running on Laravel Sail/Docker. However, when I attempt to upload an image, I encounter the following error:
...
-1
votes
1
answer
1k
views
Cannot connect to local minio instance using S3 Browser
I have setup a Minio server on my local network. It only has access via http on the local network configured. I am able to connect to this instance using both the CLI mc command and using a test ...
-1
votes
1
answer
2k
views
podman entrypoint - crun: executable file not found in $PATH
Issue
I am (desperately) trying to replicate this mlflow/ minio setup in podman: https://github.com/minio/blog-assets/blob/main/mlflow-minio-setup/docker-compose.yml. The tutorial runs fine in a VM ...
9
votes
2
answers
22k
views
How to authenticate in REST request to MinIO [closed]
I am experimenting with MinIO. I try to send REST API calls directly to MinIO port 9000. So far, I understood that authentication works the same as the Amazon S3 API authentication works - correct? ...
0
votes
0
answers
26
views
cannot add lifecycle rule to minio using curl
I always get: The request signature we calculated does not match the signature you provided. Check your key and signing method.
I am using this:
curl --location --request PUT 'http://172.22.24.93:9000/...
7
votes
3
answers
7k
views
Downloading a file from MinIO S3 storage in ASP.NET
I am trying to download a file from minio using official Minio package.
The way I managed to download a file seems pretty incorrect to me:
var downloadStream = new MemoryStream();
var args = new ...
0
votes
1
answer
850
views
switching from http to https(mtls) for minio i am receiving "message": "invalid Login"
switching from http to https(mtls) for minio i am receiving "message": "invalid Login".
Before switching to mtls, i could successfully login with the given credentials:
...
1
vote
1
answer
1k
views
How to correctly stream videos from a S3 bucket using HLS format
I am totally confused about a video streaming app I have been making for fun.
I have:
Node JS server
Minio Buckets
Javascript Client
HLS ()H.264 and MP4 version of uploading and streaming.
Should I ...
1
vote
1
answer
304
views
Spring Not Allowing File Upload (Application-Octet Not Supported)
I'm trying to upload pdfs to MinIO using Kotlin Spring. I've written a controller to upload pdfs:
@PostMapping(consumes = [MediaType.MULTIPART_FORM_DATA_VALUE, MediaType.APPLICATION_OCTET_STREAM_VALUE]...
0
votes
0
answers
69
views
could not open file after downloading
I could download files the API but after download the file doesnt open. It shows either corrupted or sent as an attachment but same file after downloading from POSTMAN response works. I am using ...
1
vote
1
answer
1k
views
trino select from iceberg tables in Minio not working
I'm writing data from Kafka to Minio using the Confluent Iceberg sink. The catalog is a REST catalog.
I can see the tables in the catalog:
trino> show tables from iceberg.callcenter;
Table
-----...
0
votes
0
answers
1k
views
minio - s3 - CORS policy not well-formed
I set a bucket policy that my specific domain can get the bucket object, now how to set CORS policy in minio - s3? I purchase it from my hosting company and they give me only client web interface so ...