milvus

最後更新: 2025-07-10

目錄

  • Install By Docker

介紹

它是一個 Vector Database 來

HomePage: https://milvus.io/

 


Install By Docker

 

# RHEL 8

dnf install podman podman-compose

# Download the configuration file

wget https://github.com/milvus-io/milvus/releases/download/v2.4.5/milvus-stan... -O docker-compose.yml

# Start Milvus

podman compose up -d

# Checking

podman compose ps

Container

  • milvus-etcd
  • milvus-minio
  • milvus-standalone

milvus-etcd

  • maps its data to volumes/etcd in the current folder

milvus-minio

  • ports 9090, 9091
  • with the default authentication credentials
  • maps its data to volumes/minio in the current folder

milvus-standalone

  • ports 9091, 19530
  • maps its data to volumes/milvus in the current folder

Test Connection

  • Port 19530 is for gRPC           # Milvus SDKs
  • Port 9091 is for RESTful API   # HTTP client

curl localhost:9091/api/v1/health

{"status":"ok"}

 

Creative Commons license icon Creative Commons license icon