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
3
votes
0 answers
How to upload folder structure to minio (ObjectStorage)
It seems I can upload a file to minio (Web app), but a folder. An alert popped up every time as Error occurred uploading 'folder_name'. Is this forbidden action? If I want to do that, how can I work around?
Thanks

dosuken123
- 438
- 3
- 7
- 19
3
votes
0 answers
About use minio in angular project
import * as Minio from 'minio';
export class MinioClient{
minioClient = new Minio.Client({
endPoint: '54.223.109.***',
port: 80,
secure: true,
accessKey: '',
…

Jack Chen
- 31
- 3
3
votes
1 answer
phoenix elixir exaws use with minio(upload file)
I'm trying to use ExAws library along with minio.
I try to upload the file:
filepath
|> S3.Upload.stream_file
|> S3.upload(bucket_name, path)
|> ExAws.request!
and I get an error:
[error] #PID<0.1041.0> running Myapp.Endpoint terminated
Server:…

Marsel.V
- 1,015
- 1
- 12
- 28
2
votes
0 answers
Trouble Configuring Amazon S3 Integration for Symfony-Sylius App: Images Upload to Default Storage
I've been trying to set up Amazon S3 integration with my Symfony-Sylius app, but I'm facing an issue where the app continues to upload images to the default storage instead of Amazon S3. Upon checking the request coming from the images, I noticed…

amd
- 342
- 1
- 2
- 15
2
votes
1 answer
File stay block until close of the program even if not used C# / Minio
I try to use the Minio API to work with S3. I've spent 2 days on this problem, and i can't reach a solution.
Looking for a local upload to my Minio remote place, I tried the sample code given in MinIo SDK documentation :
using System;
using…

lvbartow
- 41
- 6
2
votes
0 answers
time limits in uploading large files
I want to access users to upload large files to the Django server but my timeout is 50s.
I'm using the Minio server so the first user should upload the file to the Django server and then files copies from the Django server to the Minio server using…

lornejad
- 277
- 1
- 6
2
votes
0 answers
Minio tenant fails to connect to minio-operator and keeps crashing with timeouts
I am trying to create a minio tenant with minio operator.
Just to test, I'm using the simplest setup I can come up with: 1 server and 4 drives.
Name of the tanant is minio-tenant-1 and it's running on a separate namespace: minio-tenant-1.
I also…

alexg
- 902
- 11
- 37
2
votes
1 answer
Persistent volume is not a supported volume type for snapshots (Velero, MinIO, FSB)
We need to backup PV on an on-premise Kubernetes cluster, so we installed Velero, linked to MinIO, with Velero's File System Backup. No PV are backed up and no error is shown, only this mention appears in the logs "Persistent volume is not a…

Eric Hemmerlin
- 111
- 8
2
votes
1 answer
Generate MinIO presignedUrls for localhost instead for docker service name
I have a project setup with a node.js api and a minio service with docker compose:
app:
image: node
# ...
minio:
image: minio/minio
volumes:
- ./data:/data
ports:
- '9000:9000'
- '9001:9001'
command:…

CimChd
- 191
- 6
2
votes
1 answer
How to use Uni and AsyncFile in Quarkus for serve a preview of large file?
How to use Uni and AsyncFile in Quarkus for serve a preview of a large file as, for example, a video/mp4 file, while reading it from minio?
I tried to implement this with Response class, following this, but without success:
@GET
…

Kambei
- 458
- 9
- 23
2
votes
2 answers
SSL encryption with MinIO does not work, its only possible unencrypted
I run a sandboxed environment with 3 Virtual Servers on a 10.1.0.0/24 network.
Server_0: Windows 2019 as a Jumphost with a public and a 10.1.0.x IP
Server_1: Ubuntu 22.04 running Apache SOLR
Server_2: Ubuntu 22.04 Running Tomcat9 and MinIO
When…

FXH
- 56
- 5
2
votes
0 answers
Can we use AWS S3 sdk to connect MinIO(running locally) programatically? If yes, how?
I am trying to connect my local MinIO instance running in docker. I have written a simple Go program to do the work. See following:
package main
import (
"bytes"
"context"
"github.com/aws/aws-sdk-go/aws"
…

Kuldeep Yadav
- 1,664
- 5
- 23
- 41
2
votes
0 answers
I am not able to write delta table into minio
I am not able to write the delta table into minio.
I am running my spark as master and worker pods in Kubernetes. using Jupyter notebook as driver and minio for storage.
While writing the delta table it is…

Gali Sai Surendra
- 21
- 2
2
votes
5 answers
AWS SDK S3 node.js connect to local MinIO server
I have application server written in Node.js which upload files to AWS S3 storage. For that I'm using https://www.npmjs.com/package/aws-sdk and when I'm connecting to and uploading to my AWS production storage it is working fine. However during…

Furman
- 2,017
- 3
- 25
- 43
2
votes
5 answers
Minio: how to get right link to display image on html
I need to get images from Minio bucket, but I cannot display that image.
I found out that problem was in link. I cannot open it even with browser. So, here is the problem:
GET…

Hojamuhammet
- 33
- 1
- 8