Questions tagged [minio]

MinIO is a software defined object storage server compatible with Amazon S3, released under Apache License v2.

While being very light-weighted, MinIO supports distributed deployments with erasure coding, bitrot protection and encryption.

For details, see the MinIO site and MinIO Documentation

26 questions
3
votes
3 answers

configure minio in docker to use https

This is my docker-compose.yml: version: '3.7' services: minio: image: minio/minio command: server -C /etc/minio --address ":9000" --console-address ":9001" /data ports: - "9000:9000" - "9001:9001" environment: …
Felix D.
  • 133
  • 2
  • 7
2
votes
2 answers

Deploy Minio distributed on 3 nodes with 1 drive

I need to deploy a MinIO infrastructure on three nodes, where each nodes has a single local directory where they can save files in. I read the MinIO Erasure Code Quickstart Guide, but I don't need MinIO to manage data replication on different local…
Mat
  • 1,873
  • 7
  • 25
  • 41
2
votes
1 answer

Convert distributed minio backup to standalone

I have a backup of a distributed minio server (e.g. everything's a xl.meta file) that I need to restore in standalone mode. I can't find any documentation for this; any recommendations?
koehn
  • 291
  • 2
  • 10
1
vote
2 answers

What's the right way to configure Nginx for MinIO server running as a docker service

I am just trying to proxy pass from Nginx to Docker Minio service; however, with my current nginx config file, it's not working as expected and keeps loading when I browse any Minio buckets from the Minio console (web interface). Note that the minio…
1
vote
1 answer

Use NGINX as a reverse proxy for Object storage to serve WEBP conditionally

I'm using a location config like this in Nginx for serving WEBP when the user supports it map $http_accept $webp_suffix { default ""; "~*webp" ".webp"; } server { #... location ~* \.(?:jpg|jpeg|png|webp)$…
1
vote
1 answer

Access MinIO API on Port 80

My MinIO API is listening on IP of the server and port 9000. It works fine. However, if I try to change the port to 80 and restart the service, it fails to start: ● minio.service - MinIO Loaded: loaded (/etc/systemd/system/minio.service;…
user394660
0
votes
1 answer

Cannot access Minio After Helm Installation

I tried installing Minio via the helm chart. You can see my values.yml below. I set the accessKey and secretKey myself. But after I bring up the deployment, I cannot log in. When I go to the webpage and try to, it says The access key ID you…
cclloyd
  • 593
  • 2
  • 14
  • 29
0
votes
2 answers

nginx proxying S3 public bucket hosted by minio service

I'm trying to do what I would have thought was the easiest proxy directive in the world, proxying a public S3 bucket. This is my config: server { listen 80; listen [::]:80; server_name experiment.local; location /404.html { …
0
votes
1 answer

Minio - how to generate read-only access for mirroring

Given I have a PRIMARY server and a REPLICA. When I need to run a MIRROR server I want for security reasons to have READ-ONLY ACCESS Q: How to generate a second pair of access key and secret key for read-only access? Thanks for your help!
0
votes
0 answers

minio A header you provided implies functionality that is not implemented

I'm trying to move object on MinIO yet running into weird issue (even though I'm able to move other objects fine without any issues) summary: mc: Failed to copy https://FQDN/path1/file.txt. A header you provided implies functionality that is not…
alexus
  • 13,112
  • 32
  • 117
  • 174
0
votes
0 answers

How do I give "git lfs" access my self-hosted MinIO instance?

I have a MinIO server that I have set up as follows (docker compose): services: minio: image: minio/minio ports: - "9000:9000" - "9001:9001" environment: MINIO_ACCESS_KEY: MINIO_SECRET_KEY:…
Steinbitglis
  • 183
  • 1
  • 8
0
votes
0 answers

How to transfer a Minio bucket without loosing version IDs

I have a MinIO bucket that I need to transfer from one server to another. mc --insecure mirror source/my-bucket dest/my-bucket This MinIO bucket is versioned, and I use the MinIO version UUIDs as document references in my application. I noticed…
matt
  • 101
  • 4
0
votes
0 answers

Any multi-cloud storage service that can connect to both GCP and Azure Storage?

MinIO Gateway used to provide S3 functionality where you could connect to both GCP and Azure to: Create/delete buckets in GCP/Blob containers in Azure Upload/download/delete files/folders Create pre-signed URLs ... But MinIO Gateway was…
0
votes
1 answer

Using S3 instead of MinIO for video management

I am relatively new to AWS so I wanted to reach out to the gurus in the community to get some advice on architecture, and I thought I would share my thoughts. I am building out cloud infrastructure for a Video Management Software for a Body Worn…
0
votes
0 answers

How run minio on docker-compose + nginx reverse proxy?

I have a problem with minio, not starting on the selected domain - 502 error. my docker-compose.yml for nginx proxy reverse + le services: nginx: container_name: nginx image: nginxproxy/nginx-proxy restart:…
1
2