[GH-ISSUE #3391] how to login minio http://localhost:9001 if use anythingllm image deploy #2187

Closed
opened 2026-02-22 18:28:32 -05:00 by yindo · 1 comment
Owner

Originally created by @WaterYue on GitHub (Mar 4, 2025).
Original GitHub issue: https://github.com/Mintplex-Labs/anything-llm/issues/3391

I'm using anythingllm latest image to deploy the anythingllm container on my Ubuntu ( running with wsl2 on windows server 2025).

I want to change the default vector db to milvus, it seems that when deploy milvus, it also need minio, so when I try to login http://localhost:9001 , it cannot use the default minioadmin/minioadmin to login, even I set MINIO_ROOT_USER and MINIO_ROOT_PASSWORD on OS environment, and re-create the container, still cannot login.

how to login minio http://localhost:9001 if use anythingllm image deploy ?

Originally created by @WaterYue on GitHub (Mar 4, 2025). Original GitHub issue: https://github.com/Mintplex-Labs/anything-llm/issues/3391 I'm using anythingllm latest image to deploy the anythingllm container on my Ubuntu ( running with wsl2 on windows server 2025). I want to change the default vector db to milvus, it seems that when deploy milvus, it also need minio, so when I try to login http://localhost:9001 , it cannot use the default minioadmin/minioadmin to login, even I set MINIO_ROOT_USER and MINIO_ROOT_PASSWORD on OS environment, and re-create the container, still cannot login. how to login minio http://localhost:9001 if use anythingllm image deploy ?
yindo closed this issue 2026-02-22 18:28:32 -05:00
Author
Owner

@timothycarambat commented on GitHub (Mar 4, 2025):

This sounds like an issue with how you are setting things up, not with AnythingLLM directly. For milvus you should have a container running. Then you should have a container for AnythingLLM. These two containers should not be the same container.

AnythingLLM connects to milvus via ENVs (which are set in the .env)

# VECTOR_DB="milvus"
# MILVUS_ADDRESS="http://localhost:19530"
# MILVUS_USERNAME=minioadmin
# MILVUS_PASSWORD=minioadmin

since you are connecting between container localhost does not work. You need to use host.docker.internal.

@timothycarambat commented on GitHub (Mar 4, 2025): This sounds like an issue with how you are setting things up, not with AnythingLLM directly. For milvus you should have a container running. Then you should have a container for AnythingLLM. These two containers should not be the same container. AnythingLLM connects to milvus via ENVs (which are set in the .env) ``` # VECTOR_DB="milvus" # MILVUS_ADDRESS="http://localhost:19530" # MILVUS_USERNAME=minioadmin # MILVUS_PASSWORD=minioadmin ``` since you are connecting between container `localhost` does not work. You need to use `host.docker.internal`.
yindo changed title from how to login minio http://localhost:9001 if use anythingllm image deploy to [GH-ISSUE #3391] how to login minio http://localhost:9001 if use anythingllm image deploy 2026-06-05 14:45:04 -04:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: Mintplex-Labs/anything-llm#2187