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
3
votes
1 answer

MinIO + Docker - cannot use SSL certificate with new version (x509 doesn't contain any IP sans)

I'm running MinIO under docker. I've been using a version that was released before the integration of the MinIO console (circa July 2021). This was setup with an SSL certificate purchased from a third party, bound to my external web address…
fistameeny
  • 1,048
  • 2
  • 14
  • 27
3
votes
2 answers

accessing the minio object presigned get URL both from inside and outside docker container

I used the following docker-compose.yml file to deploy a FastAPI, MongoDB, Minio docker containers. version: '3.7' services: db: image: mongo:latest container_name: mongodb user: 1000:1000 volumes: -…
Krishna
  • 229
  • 1
  • 2
  • 7
3
votes
0 answers

How to use presigned URLs with different domain names

Minio container startup command sudo docker run -p 13456:9000 --name minio-manisha-manual -e "MINIO_ACCESS_KEY=manisha" -e "MINIO_SECRET_KEY=xxxx" -v /home/manisha/files/images:/data minio/minio:RELEASE.2021-05-26T00-22-46Z server /data I am…
Manisha Bayya
  • 137
  • 1
  • 9
3
votes
0 answers

How to mock minio upload/download using pytest

https://docs.min.io/docs/python-client-api-reference.html I have some implementation like below class Minio: def initialize(self): # Create client with access key and secret key with specific region. self.client = Minio( …
srinath
  • 2,748
  • 6
  • 35
  • 56
3
votes
1 answer

Is it possible to save a group of files with MinIO client in one transaction?

I have a Spring Boot application which stores files on a MinIO server. My application receives groups of files and should save all files per each group or save nothing in a problem group. I use io.minio.MinioClient#putObject for each file in a…
3
votes
3 answers

Is there a way to hide the file listing index page of a MinIO bucket?

I have set a MinIO bucket's access permission to "download" so that files can be read (but not written) by anyone, but this has enabled an "index page" that shows the contents of the entire bucket. For example, consider the bucket store/test that…
luawtf
  • 576
  • 8
  • 21
3
votes
1 answer

S3 / MinIO with Java / Scala: Saving byte buffers chunks of files to object storage

So, imagine that I have a Scala Vert.x Web REST API that receives file uploads via HTTP multipart requests. However, it doesn't receive the incoming file data as a single InputStream. Instead, each file is received as a series of byte buffers handed…
foxtrotuniform6969
  • 3,527
  • 7
  • 28
  • 54
3
votes
0 answers

How to integrate Minio behind a Nginx reverse proxy and interacting with JavaScript API?

for the past 2 weeks I am tring to get a minio service up and running but I can not solve this error. I started with creating a nginx service with a modified version of minio's default configuration provided by them…
R. Polito
  • 544
  • 6
  • 21
3
votes
2 answers

How to catch connection issues to minIO server?

I'm trying to catch authentication errors on a Python client for minio (minio package): from minio import Minio from minio.error import MinioError, ResponseError ## Data Lake (Minio) try : minioClient = Minio(endpoint=…
Leitouran
  • 578
  • 3
  • 16
3
votes
1 answer

How to restrict public user access to s3 buckets or minIO?

I have got a question about minio or s3 policy. I am using a stand-alone minio server for my project. Here is the situation : There is only one admin account that receives files and uploads them to minio server. My Users need to access just their…
3
votes
2 answers

Connection Refused to Minio Docker instance from my Django Application

Hi im trying to connect to my Minio instance which is running inside a docker container from a django instance, which is also running inside a docker container. I keep getting this error: 2020-10-29 13:59:17,568 urllib3.util.retry DEBUG …
3
votes
2 answers

MinIO change user credentials (secret key)

I'm running a distributed MinIO Cluster with 4 nodes with multiple user accounts for different purposes/buckets. I need to write a convenience script or simple web app for users where they can change their passwords. How can I change a password for…
torblerone
  • 163
  • 1
  • 1
  • 10
3
votes
1 answer

minio direct-csi no matches for kind "CSIDriver" in version "storage.k8s.io/v1"

I was to setup the 4 node minio cluster in distributed mode using direct-csi driver. Based on the document I try to create the direct-csi deployment, but is failing with below error message. I am using Kubernetes v1.17.0…
sfgroups
  • 18,151
  • 28
  • 132
  • 204
3
votes
1 answer

Minio Unable to initialize server switching into safe-mode: Unable to initialize config system: Invalid credentials

I have minio with version minio version RELEASE.2020-04-15T19-42-18Z Certificates store in /etc/minio/certs: ls /etc/minio/certs CAs private.key public.crt When run minio MINIO_ACCESS_KEY=4t4twr3r3rw3 MINIO_SECRET_KEY=ert4t4t43rwtw /usr/bin/minio…
Anton Patsev
  • 605
  • 2
  • 13
  • 27
3
votes
1 answer

MinioClient thread safe

I am trying to user minio java sdk. In multi thread environment, can we share MinioClient object between multiple threads simultaneously. Is MinioClient java client object thread safe.
Anupam
  • 31
  • 4