Questions tagged [minio]

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

Filter by
Sorted by
Tagged with
4 votes
3 answers
8k views

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 ...
Felix D.'s user avatar
  • 143
3 votes
2 answers
11k views

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 ...
Mat's user avatar
  • 1,893
2 votes
1 answer
330 views

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's user avatar
  • 291
1 vote
0 answers
50 views

MinIO bucket for Artifactory storage

Am trying to configure Jfrog Artifactory to use a MinIO bucket to store data (repositories) After following the guides for a S3 configuration. Using this configuration, just noticed that the ...
Saptronic's user avatar
1 vote
2 answers
3k views

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 ...
RAFIQ RANA's user avatar
1 vote
1 answer
396 views

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&...
erfan's user avatar
  • 11
1 vote
1 answer
1k views

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: ...
user avatar
0 votes
1 answer
935 views

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 ...
cclloyd's user avatar
  • 593
0 votes
1 answer
2k views

How can I sync two S3-compliant buckets which have different credentials?

I've got a MinIO bucket (which uses the S3 API for access) and I want to copy all its data into an AWS S3 bucket. They both use the same API, but the I can't find a tool that lets me copy directly ...
Mourndark's user avatar
  • 159
0 votes
1 answer
796 views

mount a readonly public s3 bucket with s3fs

We have minio server with a public readonly bucket. I want to mount it using s3fs but cannot figure out how to mount it. s3fs always wants credentials from me.
gdkrmr's user avatar
  • 103
0 votes
3 answers
4k views

dial tcp i/o timeout then logging in to minio

I've setup an minio installation via docker on one of my servers. I can access the login screen without a problem. However, when the login itself does not work. Post "https://example.com:9000/&...
Felix D.'s user avatar
  • 143
0 votes
0 answers
60 views

Minio vs CubeFS: Comparison

I was exploring blob storage for custom deployment. Minio and CubeFS are two among them that I felt was really good. Is there any one out there who has experience with both of these tools? If anyone ...
pacman's user avatar
  • 101
0 votes
0 answers
43 views

Cassandra's medusa backup not working. Backup job created, but status missing and medusa container logs not updated(stuck)

I am trying to create medusa backup by running below command, but it doesn't work, it only creates the medusabackup job in MedusaBackupJobs folder, but I never get the status in the medusabackup job ...
Shivi Bhatt's user avatar
0 votes
0 answers
204 views

Minio server behind Nginx throws error 104 connection reset by peer

I have an Minio instance setup behind Nginx. Whenever I sync large folders using rclone I get error 104 connection reset by peer error for some reason. I tracked the tcpdump just to make sure it's not ...
Luccas's user avatar
  • 1
0 votes
0 answers
204 views

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 ...
alexus's user avatar
  • 13.2k
0 votes
0 answers
206 views

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: ...
Steinbitglis's user avatar
0 votes
0 answers
149 views

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 ...
matt's user avatar
  • 101
0 votes
0 answers
128 views

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-...
Subzero123's user avatar
0 votes
1 answer
73 views

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 ...
Jeremy Leys's user avatar
0 votes
0 answers
762 views

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: ...
robokonk's user avatar
0 votes
1 answer
1k views

can't start minio in ubuntu due to unable to create (/mnt/data/.minio.sys/tmp) file access denied

I am installing latest minio on ubuntu 18.04 following the minio installation instruction from here. after the installation, try to run it with sudo systemctl start minio.service but it didn't work ...
user824624's user avatar
0 votes
0 answers
679 views

Redirect to login page after logined to minio console

I am going to run the service with Minio and I run it with docker-compose: version: '3.7' services: service_minio: image: quay.io/minio/minio:latest container_name: service_minio ...
soroush's user avatar
  • 435
0 votes
0 answers
537 views

Nginx how to block IP in specific port

I use nginx as web server and I have use minio port is 9000 location = / { allow ip_1; allow ip_2; deny all; } all coming ip to port 443/80 is allow. but I want to deny all and ...
user3563849's user avatar
0 votes
0 answers
197 views

Is crossdomain.xml exclusive to Adobe?

We use MinIO as our storage server. The issue is that the objects are accessible to the public Internet. To solve this issue someone suggested to use crossdomain.xml file to restrict access to ...
user avatar
0 votes
1 answer
2k views

Nginx reverse proxy the Minio

I am trying to put an Nginx in front of my Minio to serve the static files from the buckets. There are recipes both from Minio and Nginx sites but they never mention a very important concept: ...
h.safe's user avatar
  • 131
0 votes
0 answers
198 views

Kubernetes: Backup to FTP

I want to backup a Kubernetes cluster using velero. Unfortunately I only have access to FTP backup storage. My idea is to start minio in the cluster and have the FTP location mounted in its data ...
Maximilian's user avatar
0 votes
2 answers
2k views

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 ...
Árni St. Steinunnarson's user avatar
0 votes
1 answer
2k views

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 ...
Krzysztofa Krzysztof's user avatar