All Products
Search
Document Center

Vector Retrieval Service for Milvus:Manage Milvus with Attu

Last Updated:Sep 22, 2025

Attu is an open-source management tool designed for the Milvus vector database. It provides a graphical user interface (GUI) to simplify Milvus operations. Vector Retrieval Service for Milvus integrates Attu to help you efficiently manage databases, collections, indexes, and entities.

Prerequisites

You have configured network access for your instance.

Connect to Attu

You can connect to the Attu interface by using its internal or public endpoint.

  1. In a browser, enter the endpoint. Use either access method:

    • Internal endpoint: {{clusterId}}-internal.milvus.aliyuncs.com:3000

    • Public endpoint: {{clusterId}}.milvus.aliyuncs.com:3000

      Note

      If your instance is configured with a public endpoint, you can also access Attu by clicking Attu Manager on the Details page in the console.

  2. In the dialog box, enter the database, username, and password, and then click Connect.

    After an instance is created, a default database and a user named root are automatically created. The password for the root user is the one you set during instance creation.

Manage databases

You can create, delete, and view databases with Attu. Ensure you have the necessary permissions to perform these operations.

Note

The default database cannot be deleted.

To create a database:

  1. In the left navigation bar, click the image icon.

  2. On the Databases page, click + Create Database.

  3. In the dialog box, enter a database name, and click Create.

Manage collections

A collection is similar to a table in a relational database. Attu allows you to manage collection schemas, import data, and perform other maintenance tasks. The following steps show a typical workflow.

  1. In the left navigation bar, click the image icon.

  2. On the Collections page, click + Collection to create a new collection, such as demo.

    image

  3. Click Create Index to define an index for it, such as demo_idx.

    image

  4. Import your sample data into the demo collection.image

  5. Load the collection into memory to enable searching.

    image

Note
  • To reserve memory, you can click Release to unload a collection from memory. Although the data is retained on disk, you cannot perform search or query operations on it until it is loaded again.

  • To permanently delete a collection and all its data, click Drop. This action cannot be undone.

Perform a vector search

After a collection is loaded into memory, you can perform vector similarity searches.

  1. Select a loaded collection, and then click the Vector Search tab.

  2. Enter the target vector for your similarity search and configure the search parameters.

  3. Click Search.

    To refine your results, click the image icon and apply filters on scalar fields within the collection.

    image

Manage users and roles

You can create and manage users and roles to control access to your database.

Create a user

  1. In the left navigation bar, click the image icon.

  2. On the Users tab, click + User.

  3. In the dialog box, set username and password, assign a role, and click Create.

Create a role

  1. On the User and Role page, click the Roles tab.

  2. Click + Role.

  3. In the dialog box, set a role name, select the desired privileges, and click Create.

    For more information, see Grant Privileges.