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

32 questions
5
votes
4 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.
  • 153
3
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,953
3
votes
1 answer

Serving HTTPS images with Minio

I followed this documentation, but I can't make my images to be served with HTTPS. I have the following /etc/default/minio configuration file: MINIO_ACCESS_KEY="admin" MINIO_VOLUMES="/usr/local/share/minio/" MINIO_OPTS="-C /etc/minio --address…
COil
  • 239
3
votes
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…
RAFIQ RANA
  • 31
  • 1
  • 1
  • 2
2
votes
0 answers

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 Artifactory is not storing the data in the bucket. Using…
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
  • 361
1
vote
1 answer

Create minio bucket with curl

I want to create a bucket in Minio via curl, but this fails curl -X PUT -u "minioroot:miniopassword" "http://localhost:9000/ci-bucket" The authorization mechanism you have provided is not supported. Please use AWS4-HMAC-SHA256. I have Minio…
guettli
  • 3,811
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
  • 623
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 behind kong ingress with https enabled

I am trying to set the minio behind the kong ingress controller with https enabled. Here the TLS communication will be terminated in kong The routing url which I have set /storage I have set the below values in values.yaml Variables: …
bharathi
  • 101
0
votes
1 answer

How to skip tls verification when using OIDC with Authentik

extraEnvVars: - name: MINIO_LOG_LEVEL value: DEBUG - name: MINIO_IDENTITY_OPENID_CONFIG_URL value: "https://authentik.righive.local/application/o/minio/.well-known/openid-configuration" - name: MINIO_IDENTITY_OPENID_CLIENT_ID …
0
votes
0 answers

constant cpu and disk usage from minio instance

I have a single minio instance running on a 64GB / 12Core / NVMe server running with ~15GB and around 15.000 objects. It runs in a docker container. What would be the cpu and hdd usage I would need to expect? The reason I am asking is that my…
pcace
  • 101
1
2 3