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
0 answers
Unit test for uploading file on Minio Storage in Spring boot
I have a service class which uses Minio Cloud storage to upload a file.
I want to write a unit test for that class using Mockito. How can I do that in spring boot. Searched over internet but not able to find how will this be done. Below is my…

Aditya
- 950
- 8
- 37
0
votes
1 answer
Can't login in minIO with docker compose
I am trying to use minIO with docker docker compose and Laravel, so I have the following docker-compose
MINIO
minio:
image: minio/minio
ports:
- "9000:9000"
- "9001:9001"
environment:
MINIO_ROOT_USER: minio
…

Juan Pablo B
- 385
- 1
- 5
- 17
0
votes
2 answers
How do I get rid of okhttp3 "A connection to ... was was leaked" warning when returning a minio stream as spring ResponseEntity?
I am reading a file with minio and have a REST controller that returns the inputstream given by minio as an InputStreamResource. Here is my code:
@GetMapping("/download")
fun download(): ResponseEntity {
// read file from…

schrom
- 1,372
- 1
- 22
- 36
0
votes
0 answers
How to use url in MinioClient
I have used "MinioClient" for s3 (simple storage service) in C# Code, I have used "Image File download" and "Image File upload".It works fine.I would like to know how to get "url" of Image file instead of download.Please advise how to do this.I…

OneERP
- 1
- 3
0
votes
1 answer
Is it possible to write a serialized object (in String) into the user meta data using AmazonS3?
I've a flink job that consumes kafka content and writes it into a minio via AmazonS3 api.
I've encountered error 400 bad header request if I attempt to copy a string output of a serialized object.
Is there any work-around if I need to save the…

angelhalo
- 131
- 1
- 1
- 8
0
votes
1 answer
minio command cannot be found after deploy
I created a docker-compose file to use s3. the file is a follows:
version: "3"
services:
s3:
image: "docker.example.com/minio/minio:latest"
restart: always
networks:
local:
ports:
- "${s3port}:8080"
volumes:
…

miki
- 1
- 1
0
votes
1 answer
k8s deploy minio,but web console page cannot be accessed
k8s file like this from bitnami
apiVersion: apps/v1
kind: StatefulSet
metadata:
labels:
app: minio
name: minio
spec:
replicas: 1
selector:
matchLabels:
app: minio
serviceName: minio
template:
metadata:
labels:
…

xlovepython
- 41
- 5
0
votes
1 answer
Elasticsearch: how to make snapshot to minio s3?
when i am trying to make snapshots to my s3 (minio deployed locally), by executing the following command inside my elasticsearch docker container:
curl -X PUT "localhost:9200/_snapshot/s3_repository/snapshot_1?wait_for_completion=true&pretty"
i got…

Mohamed
- 239
- 1
- 4
- 17
0
votes
1 answer
How can we use minio storage as same as s3 url
How can we use minio storage as same as S3. Is there any need to change the code of java spring boot?. Previous codes are aws related. I don't want to change the code, But i want to access the storage from another source. Is that possible with…

AWS Coder
- 455
- 1
- 8
- 13
0
votes
1 answer
How can I to make upload of file maintain your original `Content Type` to Amazon S3?
TL;DR
How can I to upload an image and maintain its original Content Type or, generate a signed or public URL that force a correct type for my file?
I explain more:
I have a problem with S3 (I really I'm using Minio, that is compatible with S3…

Luiz Carvalho
- 1,549
- 1
- 23
- 46
0
votes
1 answer
Minio does not recognize credentials when loaded from Kubernetes secrets
I am running a minio deployment in a Kubernetes Cluster.
I used to have the access- and secret key in clear text in the yaml files as follows:
apiVersion: apps/v1
kind: Deployment
metadata:
name: minio
spec:
...
containers:
- name:…

sekthor
- 464
- 5
- 15
0
votes
1 answer
Cannot open Minio in browser after dockerizing it in Spring Boot App
I have a problem in opening minio in the browser. I just created Spring Boot app with the usage of it.
Here is my application.yaml file shown below.
server:
port: 8085
spring:
application:
name: springboot-minio
minio:
endpoint:…

S.N
- 2,157
- 3
- 29
- 78
0
votes
1 answer
Docker Issue : Cannot run the container (repository does not exist or may require 'docker login')
After I devise a Spring Boot project with the usage of MinIo, I tried to run it in Docker but I have an issue.
Here is my docker-compose.yaml file
version: '3.8'
services:
minio:
image: minio/minio:latest
container_name: minio
…

S.N
- 2,157
- 3
- 29
- 78
0
votes
1 answer
aptly repo on S3 minio/aws
I want to ask if it's possible to make aptly repo on minio S3 bucket?
At now I'm trying to setup aptly repo on AWS bucket but got the following error:
ERROR: published S3 storage spin-jenk-udemy-test not configured
Where I can see detailed info…

Space134
- 13
- 3
0
votes
0 answers
How can I get public URL from MiniO object to preview it in browser, not automatically download it?
I am working with MiniO and NodeJS. Now I have to return the URL of an object, but that URL must preview the object not download it? The bucket policy is set to public and download.
This is the example link it always downloads the object and does…

Rifky Wijaksana
- 1
- 2