milvus-logo

Install Milvus Standalone with dpkg/yum

This topic describes how to install Milvus standalone using package manager dpkg or yum on Linux systems.

Prerequisites

Check the requirements for hardware and software prior to your installation.

Install Milvus

Install Milvus with dpkg on Ubuntu

$ wget https://github.com/milvus-io/milvus/releases/download/v2.3.10/milvus_2.3.10-1_amd64.deb
$ sudo apt-get update
$ sudo dpkg -i milvus_2.3.10-1_amd64.deb
$ sudo apt-get -f install

Install Milvus with yum on RedHat9

$ sudo yum install -y https://github.com/milvus-io/milvus/releases/download/v2.3.10/milvus-2.3.10-1.el9.x86_64.rpm

Check the status of Milvus

$ sudo systemctl restart milvus
$ sudo systemctl status milvus

Connect to Milvus

Please refer to Hello Milvus, then run the example code.

Uninstall Milvus

Uninstall Milvus on Ubuntu

$ sudo dpkg -P milvus

Uninstall Milvus on RedHat9

$ sudo yum remove -y milvus

What's next

Having installed Milvus, you can:

On this page