skip to Main Content

How to customize AccessDenied page of MinIO? – Nginx

When the expiration date of MinIO links passes, It responds to an XML like this: <Error> <Code>AccessDenied</Code> <Message>Request has expired</Message> <Key>key-of-the-resource</Key> <BucketName>bucket-name</BucketName> <Resource>/path-to/teh-resource</Resource> <RequestId>16FC78B1C6185XC7</RequestId> <HostId>5d405266-91b9-XXXX-ae27-c48694f203d5</HostId> </Error> Is there any way to customize this page by some sort of configuration inside…

VIEW QUESTION

Minio permission denied – Docker

When I start my docker container, I have a problem with minio this is my error: 19:32:16.16 INFO ==> ** Starting MinIO setup ** /opt/bitnami/scripts/libminio.sh: line 324: /data/.root_user: Permission denied On windows it works but on linux not this is…

VIEW QUESTION

Docker MinIO entrypoint

I have this project which was initially set up on Mac, I'm on Windows, it's a Docker project which runs Node, Kafka and a few other containers, one of them being MinIO. Everything works as intended except MinIO, I get…

VIEW QUESTION

accessing the minio object presigned get URL both from inside and outside docker container – Nginx

I used the following docker-compose.yml file to deploy a FastAPI, MongoDB, Minio docker containers. version: '3.7' services: db: image: mongo:latest container_name: mongodb user: 1000:1000 volumes: - /home/krishna/mongodb/db:/data/db minio: image: minio/minio:latest container_name: minio command: server /data --console-address ":9001" ports: - 9000:9000…

VIEW QUESTION

Could not register service and start it on Centos

I have installed Minio server on a Centos 7.9 and I am trying to run it as a service. I used this guide and the minio.service file it provided to install Minio as a service: https://www.centosblog.com/install-configure-minio-object-storage-server-centos-linux/ Now when I try…

VIEW QUESTION
Back To Top
Search