minio Questions

1

Is it possible do run MinIO not on default path on nginx? I have a backend that generate presigned url with this code: MinioClient minioClient = new MinioClient("http://x.x.x.x:9000", &qu...
Hydroid asked 6/7, 2020 at 8:49

2

Solved

In Short: Using AmazonS3Client to connect to a local instance of MinIO results in a UnknownHostException thrown because the url is resolved to http://{bucket_name}.localhost:port. Detailed descrip...
Gensler asked 11/5, 2022 at 17:14

3

Solved

If we want to copy a bucket to another MiniO cluster, should we use "mc cp" or "mc mirror"? I have done some simple experiments and it seems that they are the same. Thank~!
Hemiplegia asked 2/1, 2020 at 4:5

1

Solved

We are using Minio for local testing of S3 AND we have created docker-compose file with Minio and our app dependency is as follows: Docker-Compose File: version: "2.1" services: minio: ...
Wakerife asked 15/9, 2022 at 8:13

2

Solved

I am trying to create a default bucket in MiniO docker container with my local files uploaded as a default content. I have written a simple docker-compose file to run Minio client: version: "2...
Dot asked 5/7, 2022 at 9:28

2

I installed local minio storage: wget https://dl.min.io/server/minio/release/linux-amd64/minio chmod +x minio ./minio server /home/myuser/minio_storage --console-address ":5050" I'm tryi...
Debility asked 15/2, 2022 at 8:55

3

The Minio JAVA SDK documentation doesn't clearly articulate how to create a folder inside a bucket. Can somebody help me on this request ? Thanks in Advance!
Sycee asked 5/11, 2017 at 12:41

3

I am trying to create an Minio/S3 container so I can run my test suite as an action on github. I currently have the following: name: Run Tests on: push: branches: [ master ] pull_request: branc...
Twoup asked 23/9, 2020 at 15:42

1

Solved

I have Minio server hosted locally. I need to read file from minio s3 bucket using pandas using S3 URL like "s3://dataset/wine-quality.csv" in Jupyter notebook. I tried using s3 boto3 lib...
Longways asked 14/4, 2021 at 14:39

1

Solved

Goal: run Python program with MinIO access. I can login via. Browser, and can upload/ edit files and am disconnected from VPN. Ubuntu WSL can't see any sockets, such as my VPN when connected. Power...
Dipterous asked 17/2, 2022 at 13:4

1

Solved

after using minio as instructions and fixing it with ways below, I failed.what can i do to solve this bug <dependency> <groupId>io.minio</groupId> <artifactId>minio</a...
Hartzke asked 30/1, 2022 at 12:38

6

I have the following docker-compose.yml to run a local environment for my Laravel App. version: '3' services: app: build: context: . dockerfile: .docker/php/Dockerfile ports: - 80:80 - 443:...
Tellurium asked 17/6, 2019 at 8:23

1

Solved

Hi I am facing an error with providing dependency jars for spark-submit in kubernetes. /usr/middleware/spark-3.1.1-bin-hadoop3.2/bin/spark-submit --master k8s://https://112.23.123.23:6443 --deploy-...
Grantley asked 9/11, 2021 at 17:31

4

My application uses Minio for S3-compatible object storage, and I'd like to use the Minio docker image in my integration tests via Testcontainers. For some very basic tests, I run a GenericContain...
Maidenhood asked 28/3, 2019 at 16:28

1

Solved

I'm trying to run docker containers with airflow and minio and connect airflow tasks to buckets defined in minio. I'm using the new versions - airflow 2.1.3 and the newest minio image. How would I ...
Nihility asked 6/9, 2021 at 20:19

1

Solved

I am having trouble accessing the Minio embedded web based object browser. The http://127.0.0.1:9000 and http://127.0.0.1:45423 addresses immediately shows a "This page isn't working. ERR_INVA...
Etruscan asked 6/9, 2021 at 19:42

1

Solved

I have installed minio in docker. It installed successfully and below are logs of the minio server: I think all is well but when I invoke localhost:9000 url in browser it redirects to localhost:40...
Biosphere asked 9/7, 2021 at 13:9

2

I am running minio in a docker container and I want files that are uploaded to be accessible by the public. I have tried with nginx however that is just a reverse proxy. The problem is that minio h...
Piffle asked 18/12, 2020 at 8:34

1

I have tried several times to start the Minio server as a service in GitLab CI tu run my tests that need S3 buckets, but all the time I get the error that "Cannot link to a non running container". ...
Evanesce asked 4/4, 2019 at 16:46

2

I'm using minio in Kubernetes and it works great. However, I can't seem to to change the domain and protocol for a pre-signed URL. Minio keeps giving me http://minio.test.svc:9000/delivery/ where a...
Twitt asked 31/7, 2019 at 19:51

1

I'm uploading my svg files to my local minio server (running in docker). const uploadedFile = await client.putObject(bucketName, filename, readStream); I then generate a public URL e.g. http://loc...
Basifixed asked 2/9, 2020 at 7:14

3

Solved

I have searched minio.io for hours but id dosn't provide any good information about clustering, dose it has rings and instance are connected? or mini is just for single isolated machine. And for ru...
Beardless asked 2/9, 2016 at 12:2

2

I am using minio to create an s3 like object-store server and I want to test some code against this server during my ci cd process. Using Github actions, I tried to add minio as service in the work...
Scolecite asked 25/3, 2020 at 13:22

1

Solved

We have a minio server. Until now anonymous users were not able to do anything. Now we want to allow them to download object when they know the path. e.g. https://minio.example.com/minio/download/i...
Barthel asked 26/6, 2020 at 13:22

3

Solved

I read the minio docs and I see two methods to upload data: put_object() this needs a io-stream fput_object() this reads a file on disk I want to test minio and upload some data I just created ...
Thirddegree asked 18/3, 2019 at 14:15

© 2022 - 2024 — McMap. All rights reserved.