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.
Questions tagged [minio]
906 questions
0
votes
1 answer
Minio: how to see which policy is applied for a user
Using the minio client one can apply a policy to a user with:
mc admin policy set myminio getonly user=newuser
How can I at a later time find out which policies were applied in the past to user newuser?

Hochstenbach
- 47
- 4
0
votes
1 answer
convert docker run command to kubectl for one time execution
I'm trying to run a docker image once to execute a task using a popular S3 client minio the environment I'm dealing with use Kubernetes.
I can get shell access to execute tasks like so:
docker run -it minio/mc --restart=Never --rm…

Deano
- 11,582
- 18
- 69
- 119
0
votes
1 answer
Multipart upload with urllib3 - value error
I'm writing a script to upload a large file (50GB) to our service at work which utilizes minio.
config = TransferConfig(multipart_threshold=1024 * 100 * 1024, max_concurrency=10,
multipart_chunksize=1024 * 100 * 1024,…

Gilbert Williams
- 970
- 2
- 10
- 24
0
votes
1 answer
How can I update minio credentials from /etc/default/minio
I had create a server with a minio instance following this tutorial. https://www.digitalocean.com/community/tutorials/how-to-set-up-an-object-storage-server-using-minio-on-ubuntu-18-04-es. All is working fine but when I change the credentials at the…
0
votes
1 answer
Docker-compose: cannot connect api container to Minio container
I'm trying to connect my api server to a minio container, i'm using dockercompose like this:
minio:
image: "minio/minio"
# volumes:
# - ./docker-data/minio/data:/data
command: minio server /data
networks:
- backend
…

LeoPret
- 59
- 1
- 5
0
votes
1 answer
odoo 13 upload video files via minio api of Python
I'm trying to develop a module to upload videos files via MinIO API of Python.
The file can be uploaded to MinIO, but it's cannot view via url like: http://localhost:9000/lms-videos/video/output.mp4. And also the file upload via MinIO should be…

Janus
- 13
- 1
- 3
0
votes
1 answer
Best practices to diagnose a object storage health check
I'm programming a health-check for a microservice that relies in a object storage (minio).
My approach to diagnose if the object-storage is healthy is to call: bucketExists function, validating that the bucket exists and I have stable connection to…

gonzalo
- 377
- 2
- 9
0
votes
1 answer
Fetch thousand of files from S3/minio with a single page webapp (no server)
I'm developing a single page app for image annotation. Each .jpg file is stored on S3/minIO services, coupled with a .xml file (Pascal VOC notation), which describes the coordinates and positions for each annotation associated to the image.
I'd like…

EmanueleF
- 513
- 1
- 4
- 11
0
votes
1 answer
Read into Dask from Minio raises issue with reading / converting binary string JSON into utf8
I'm trying to read JSON-LD into Dask from Minio. The pipeline works but the strings come from Minio as binary strings
So
with oss.open('gleaner/summoned/repo/file.jsonld', 'rb') as f:
print(f.read())
results in
b'\n{\n "@context":…

Douglas Fils
- 311
- 4
- 14
0
votes
1 answer
'Working with Minio and Dask I get s3.ServiceResource' object has no attribute 'create_client'
Attempting to read from minio with boto3 and input into Dask
I am getting:
's3.ServiceResource' object has no attribute 'create_client'
I set up boto with:
import botocore, os
from botocore.client import Config
from botocore.session import…

Douglas Fils
- 311
- 4
- 14
0
votes
0 answers
S3/Minio Performance concerns
I am investigating whether an application at work can benefit from an S3 based storage system rather than traditional NFS. So, I downloaded Minio on another computer attached to my local LAN, and wrote a quick S3 PutObject test with the aws-sdk.
I…

CRB
- 111
- 1
- 6
0
votes
0 answers
Minio: password change policy
Is it possible to create a canned policy that prevents the user from changing the password?
minio:RELEASE.2020-06-22T03-12-50Z / Docker

ofstudio
- 747
- 1
- 6
- 16
0
votes
0 answers
Stream file from Minio to web browser
I have a backend web site written in golang using Gin Web Framework and a Minio Serevr with some file stored. What I'm trying to achive is that from my web page (written in ReactJS) I can download a file that is stored in minio. So far I'm able to…

NiBE
- 857
- 2
- 16
- 39
0
votes
2 answers
How do I create a tls cert for a three node server domain that covers the parent domain as well?
I'm not even sure I asked the question right...
I have three servers running minio in distributed mode. I need all three servers to run with TLS enabled. It's easy enough to run certbot, generate a cert for each node, drop said certs into…

rudepeople
- 57
- 1
- 7
0
votes
1 answer
Helm always reports a 403 error when adding minio repo
I have run the latest version of minio with Docker and can access it normally by browser.
Then I installed the MC client and tested Minio with MC, and everything worked fine.
but when I use helm add the minio repo. I get a 403…

Esc
- 521
- 13
- 30