Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Can't connect to my Milvus db #494

Open
alikaz3mi opened this issue May 1, 2024 · 5 comments
Open

Can't connect to my Milvus db #494

alikaz3mi opened this issue May 1, 2024 · 5 comments

Comments

@alikaz3mi
Copy link

Describe the bug:

While I am able to connect to my milvus db via python:

from pymilvus import connections
connections.connect(
  alias="default", 
  host='localhost', 
  port='19530'
)

I can't connect to milvus via attu application which is installed in my ubuntu 22.04

Steps to reproduce:
1.
2.
3.

Attu version:

2.3.10
Attu version:

@shanghaikid
Copy link
Collaborator

attu docker version?

@cnzackliu
Copy link

attu docker version?

I have the same problem .

I can connected my milvus via golang, but attu can not.

I install attu with docker-composedocker or desktop, none of these methods are feasible.

Machine

MBP 13-inch, 2020, Four Thunderbolt 3 ports

Docker version

(base) ➜ ~ docker version
Client:
Cloud integration: v1.0.35+desktop.13
Version: 26.0.0
API version: 1.45
Go version: go1.21.8
Git commit: 2ae903e
Built: Wed Mar 20 15:14:46 2024
OS/Arch: darwin/amd64
Context: desktop-linux

Server: Docker Desktop 4.29.0 (145265)
Engine:
Version: 26.0.0
API version: 1.45 (minimum version 1.24)
Go version: go1.21.8
Git commit: 8b79278
Built: Wed Mar 20 15:18:01 2024
OS/Arch: linux/amd64
Experimental: false
containerd:
Version: 1.6.28
GitCommit: ae07eda36dd25f8a1b98dfbf587313b99c0190bb
runc:
Version: 1.1.12
GitCommit: v1.1.12-0-g51d5e94
docker-init:
Version: 0.19.0
GitCommit: de40ad0

docker-compose

version: '3.5'

services:
  etcd:
    container_name: milvus-etcd
    image: quay.io/coreos/etcd:v3.5.0
    environment:
      - ETCD_AUTO_COMPACTION_MODE=revision
      - ETCD_AUTO_COMPACTION_RETENTION=1000
      - ETCD_QUOTA_BACKEND_BYTES=4294967296
    volumes:
      - ${DOCKER_VOLUME_DIRECTORY:-.}/volumes/etcd:/etcd
    command: etcd -advertise-client-urls=http://127.0.0.1:2379 -listen-client-urls http://0.0.0.0:2379 --data-dir /etcd

  minio:
    container_name: milvus-minio
    image: minio/minio:RELEASE.2020-12-03T00-03-10Z
    environment:
      MINIO_ACCESS_KEY: minioadmin
      MINIO_SECRET_KEY: minioadmin
    volumes:
      - ${DOCKER_VOLUME_DIRECTORY:-.}/volumes/minio:/minio_data
    command: minio server /minio_data
    healthcheck:
      test: ["CMD", "curl", "-f", "http://localhost:9000/minio/health/live"]
      interval: 30s
      timeout: 20s
      retries: 3

  standalone:
    container_name: milvus-standalone
    image: milvusdb/milvus
    command: ["milvus", "run", "standalone"]
    environment:
      ETCD_ENDPOINTS: etcd:2379
      MINIO_ADDRESS: minio:9000
    volumes:
      - ${DOCKER_VOLUME_DIRECTORY:-.}/volumes/milvus:/var/lib/milvus
    ports:
      - "19530:19530"
    depends_on:
      - "etcd"
      - "minio"

  attu:
    container_name: attu
    image: zilliz/attu:v2.3.10
    environment:
      MILVUS_URL: standalone:19530
    ports:
      - "3000:3000"
    depends_on:
      - "standalone"

networks:
  default:
    name: milvus

docker

docker run -p 3000:3000 -e HOST_URL=http://127.0.0.1:8000 -e MILVUS_URL=127.0.0.1:19530 zilliz/attu:latest

desktop

https://github.com/zilliztech/attu/releases/

@shanghaikid
Copy link
Collaborator

if you are using attu docker version, make sure the milvus's address is accessible from attu's container.

MILVUS_URL=127.0.0.1:19530 this is not going to work, please change it to a real milvus ip.

@cnzackliu
Copy link

if you are using attu docker version, make sure the milvus's address is accessible from attu's container.

MILVUS_URL=127.0.0.1:19530 this is not going to work, please change it to a real milvus ip.

I deploy the attu with docker-compose ,it cannot connected to db. Why?

@shanghaikid
Copy link
Collaborator

please make sure attu container can access your milvus server through your network.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants