Skip to main content
Filter by
Sorted by
Tagged with
2 votes
0 answers
57 views

I run MinIO in Docker on Machine A and want to access it from Machine B (via Wi-Fi). boto3 returns 503 on HeadBucket, and the mc alias set fails. How should I configure MinIO and clients? docker yml ...
0 votes
0 answers
56 views

Facing an error while uploading large images with a size over 20MB through Liferay, it gives me 2025-05-11 11:47:28.861 INFO [pool-7-thread-1][UploadCallable:284] Unable to abort multipart upload, ...
0 votes
0 answers
34 views

I wrote a test console application in C# that renames the same file on a Minio server. My code: class Program { private static readonly string bucketName = "my-bucket"; private static ...
2 votes
1 answer
95 views

I run MinIO C++ client's server to receive notification from MinIO server. The following code comes from here #include <miniocpp/client.h> int main() { // Create S3 base URL. minio::s3::...
0 votes
0 answers
223 views

I'm using Loki with MinIO S3 object storage. Since Loki doesn't support size-based retention, is deleting objects directly from MinIO acceptable? Would I need to recalculate the index after deleting ...
2 votes
2 answers
3k views

I'm using minio java client for storing files in minio that are uploaded by users. I want to store each file with a UUID as objectName and also store the original fileName as user-metadata. When ...
0 votes
1 answer
766 views

Problem Description: I'm encountering an issue with file uploads to MinIO using Python code. When I upload files with the the Python script, the uploaded files appear in the MinIO bucket but have no ...
-2 votes
1 answer
2k views

I'm having trouble starting the MinIO service in a distributed setting across 2 virtual machines (not Docker). I'm encountering a Error: Read failure. Insufficient number of drives online. Waiting for ...
0 votes
0 answers
123 views

ℹ︎ This question is about the MinIO Client, not the MinIO Server object storage! I have two S3-compatible buckets A and B, and I need to copy a list of objects from A to B. The catch is that I do ...