Questions tagged [minio]

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.

MinIO offers high-performance, S3 compatible object storage on any cloud environment.

Resources :

  1. Official Website
  2. GitHub
  3. License and Paid (SLA backed) Support
  4. Community support
906 questions
2
votes
2 answers

How to Add folder in Minio bucket using c#?

I am using Minio .net client library my requirement is how can i store my files in folder structure like ABC is Bucket, CMS is inner folder and CMS folder contains files so how can i achive this ? amazon s3 doing same things using key value pair i.e…
Rahul Mistry
  • 192
  • 2
  • 15
2
votes
2 answers

How to get minio-server version in docker?

By using minio server in docker, i installed and started using it before couple of months ago, now i need to know what version of minio server i am using. Also want to know how to update existing minio server to latest version, without losing my…
HarisH Sharma
  • 1,101
  • 1
  • 11
  • 38
2
votes
1 answer

Use minio for storing attachments of an android application

Im trying to use minio as I want to use minio for self-host instead amazon S3 in my android application, so my yml file configuration look like this : s3: accessKey: 1PAVK1425juiUAH accessSecret: inhoKJSHDUIIrichskiY7Fpc9 attachmentsBucket:…
Josep Ng
  • 43
  • 7
2
votes
2 answers

minio presigned put with superagent results in a 403

I'm attempting to write a basic test to make sure my minio installation works correctly. I wrote a test that follows their example of using a presigned POST policy and it works just fine, but I cannot seem to create a working example of a presigned…
Paul S
  • 892
  • 10
  • 25
2
votes
1 answer

python post request not working with Minio server import

I have a problem with POST request with Python/Django and Minio server, this is the code from django.http import HttpResponse import json from minio import Minio minioClient = Minio('mypath:9000', access_key='mykey', …
Katia Riva
  • 21
  • 2
1
vote
0 answers

directories method in Storage->('minio') return error SignatureDoesNotMatch

i'm trying to get list of folder in my minio bucket using this code public function handle() { $baseDirectory = 'product/'; $directories = Storage::disk('minio')->directories($baseDirectory); } when i run the code i got this error Error…
Mike
  • 83
  • 3
  • 4
  • 11
1
vote
1 answer

restore version of file with minio-js

Is there any way to restore a specific version of a file on a minio server with minio-js on a bucket with active versioning? On the web console there is a button to restore, but I didn't found any docs to do this with the minio-js client.
Roger
  • 75
  • 7
1
vote
0 answers

how to use Minio-go sdk to download files in chunks concurrently?

I want to know how to use Minio to download files in chunks concurrently, and then finally merge the chunks and return them to the client. Here's the code I wrote. I thought opts.PartNumber = partNumber would do the chunk download, but I got an…
Xian
  • 11
  • 2
1
vote
1 answer

Download file from MINIO with node.js

New in node.js! please ignore incase invalid question! I am having one minio bucket hosted in local server. I wanted to download data from minio bucket to user machine with help to following flow: Valid user on browser => Node.js backend (To…
Santosh Dhanawade
  • 1,756
  • 14
  • 29
1
vote
1 answer

Not able to connect between Celery and Minio containers?

In my Django app, I'm offloading resizing of uploaded videos to a celery worker. I'm also storing all media files in Minio S3 buckets. The resizing goes well without any errors, however Celery can't connect to the Minio container. This is the logs…
kunambi
  • 756
  • 1
  • 10
  • 25
1
vote
0 answers

Loki + S3 (minIO) configuration

I'm tryig to configure Loki on separate VM with S3 (minIO) as a object store, using docker-composer. The minIO/s3 bucket is public and addiotionaly I have added r/w permission to it. There are no errors in logs. The file loki_cluster_seed.json…
Serge
  • 21
  • 4
1
vote
0 answers

upload to minio suddenly goes very slow

I have a minio cluster server with 2 nodes on linux(minio version Release.2023-05-04T21-44-30Z). The minio is used by a java(spring boot) application manages file upload and download. Minio runs with default config. The application runs good and…
Joshua
  • 125
  • 2
  • 16
1
vote
0 answers

FTP Connect with Minio Server using Laravel

I am trying to FTP connect with Minio server using Laravel. In this file "config/filesystems.php" I add this code 'ftp' => [ 'driver' => 'ftp', 'host' => env('FTP_HOST'), 'username' => env('FTP_USERNAME'), 'password'…
1
vote
0 answers

How to stream zip before closing writer

I have written a small script downloading data from MinIO, zipping them and uploading the created zip file. package main import ( "archive/zip" "bytes" "context" "fmt" "io" "log" "sync" …
Fabian
  • 546
  • 5
  • 14
1
vote
0 answers

Steup Minio behind Nginx reverse proxy and access via react

For a few days, I've been trying to get minio running in docker-compose behind Nginx as a reverse proxy. Unfortunately, the Minio documentation did not help much (https://min.io/docs/minio/linux/integrations/setup-nginx-proxy-with-minio.html). If I…
CeKl
  • 85
  • 5