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

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 from one bucket to another using two sets of…
Mourndark
  • 159
  • 3
  • 14
0
votes
1 answer

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 with message. ...skipping... ● minio.service -…
user824624
  • 113
  • 5
0
votes
0 answers

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 restart: always ports: …
soroush
  • 415
  • 1
  • 5
  • 6
0
votes
0 answers

Moving nginx/minio setup to docker/traefik/minio

I am currently running an nginx server in front of a number of minio servers. Each minio server runs on its own port on localhost for a single user and nginx is used for SSL termination and forwarding to that internal process. The nginx config looks…
gctwnl
  • 171
  • 11
0
votes
0 answers

Shared storage between multiple instances of app container

What would be the best way to share persistent storage between multiple container instances of the same app ( for HA/performance purposes ). The app does not do heavy read/writes it just stores files uploaded from the users or generated files (…
spiroski
  • 101
0
votes
0 answers

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 allow 2 IP for this port (9000) only , Is this…
0
votes
1 answer

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
  • 103
  • 3
0
votes
3 answers

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/": dial tcp :9000: i/o timeout What could be the reason…
Felix D.
  • 133
  • 2
  • 7
0
votes
0 answers

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 resources if the request is initiated from our domain…
user394660
0
votes
1 answer

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: credentials. How can I set the simplest way that my nginx…
h.safe
  • 131
  • 1
  • 7
0
votes
0 answers

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 directory. Has anyone an idea how I could achieve this…
1
2