https://store-images.s-microsoft.com/image/apps.6717.3667d3d9-aafc-4a62-bd83-b6f7a94fa0e3.415b7652-3047-4a31-bc2c-453aba719281.f64d07b0-1c6e-4bd8-ad60-cfe6e5a92a9a

Attu on Debian 13

pcloudhosting द्वारा

Version 2.6.4 + Free Support on Debian 13

Attu is an open-source, web-based graphical user interface designed to manage and visualize Milvus vector databases. It provides an interactive environment to explore collections, manage schemas, perform vector searches, and monitor database status through a simple and intuitive browser-based interface.

Features of Attu:

  • Web-based graphical interface for managing Milvus vector databases.
  • View and manage collections, partitions, and schemas.
  • Insert, search, and delete vector data interactively.
  • Monitor Milvus health and system metadata.
  • Simplifies vector database operations without using CLI tools.

To start Attu with Milvus using Docker, run the following commands:

$ docker --version
$ docker network create milvus-net
$ docker run -d \
  --name milvus-standalone \
  --network milvus-net \
  -p 19530:19530 \
  -p 9091:9091 \
  milvusdb/milvus:v2.3.3 \
  milvus run standalone
$ docker run -d \
  --name attu \
  --network milvus-net \
  -p 3000:3000 \
  zilliz/attu:latest
$ docker ps

Access the Attu Web Interface:

http://localhost:3000

After accessing the interface, users can connect Attu to a running Milvus instance by providing the Milvus service address and port. Authentication is optional and depends on the Milvus configuration.

Attu → Milvus Connection Values:

  • Milvus Address: milvus-standalone:19530
  • Database: default
  • Username: (blank)
  • Password: (blank)
Disclaimer:Attu is provided under applicable open-source licenses and is distributed “as is.” Users are responsible for ensuring Milvus availability, securing network access, and following best practices when managing vector data and production workloads.