Skip to content

Commit

Permalink
Release new docs
Browse files Browse the repository at this point in the history
  • Loading branch information
Milvus-doc-bot authored and Milvus-doc-bot committed Feb 6, 2024
1 parent 9daed83 commit 65f47aa
Show file tree
Hide file tree
Showing 5 changed files with 30 additions and 12 deletions.
34 changes: 26 additions & 8 deletions v2.3.x/site/en/getstarted/standalone/install_standalone-aptyum.md
Original file line number Diff line number Diff line change
@@ -1,34 +1,44 @@
---
id: install_standalone-aptyum.md
label: Dpkg
label: DEB/RPM
related_key: Install
order: 3
group: install_standalone-docker.md
summary: Learn how to install Milvus stanalone with dpkg.
summary: Learn how to install Milvus stanalone with dpkg/yum.
---

<div class="tab-wrapper"><a href="install_standalone-docker.md" class=''>Docker</a><a href="install_standalone-operator.md" class=''>Milvus Operator</a><a href="install_standalone-helm.md" class=''>Helm</a><a href="install_standalone-aptyum.md" class='active '>Dpkg</a><a href="install_standalone-docker-compose.md" class=''>Docker Compose</a></div>
<div class="tab-wrapper"><a href="install_standalone-docker.md" class=''>Docker</a><a href="install_standalone-operator.md" class=''>Milvus Operator</a><a href="install_standalone-helm.md" class=''>Helm</a><a href="install_standalone-aptyum.md" class='active '>DEB/RPM</a><a href="install_standalone-docker-compose.md" class=''>Docker Compose</a></div>

# Install Milvus Standalone with dpkg
# Install Milvus Standalone with dpkg/yum

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

This topic describes how to install Milvus standalone on Ubuntu systems.

## Prerequisites

Check [the requirements](prerequisite-docker.md) for hardware and software prior to your installation.

## Install Milvus with dpkg on Ubuntu
## Install Milvus

### Install Milvus with dpkg on Ubuntu

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

### Install Milvus with yum on RedHat9

```bash
$ sudo yum install -y https://github.com/milvus-io/milvus/releases/download/v2.3.7/milvus-2.3.7-1.el9.x86_64.rpm
```

## Check the status of Milvus

```bash
$ sudo systemctl restart milvus
$ sudo systemctl status milvus
```

Expand All @@ -38,10 +48,18 @@ Please refer to [Hello Milvus](https://milvus.io/docs/example_code.md), then run

## Uninstall Milvus

### Uninstall Milvus on Ubuntu

```bash
$ sudo dpkg -P milvus
```

### Uninstall Milvus on RedHat9

```bash
$ sudo yum remove -y milvus
```

## What's next

Having installed Milvus, you can:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ group: install_standalone-docker.md
summary: Learn how to install Milvus standalone with Docker Compose.
---

<div class="tab-wrapper"><a href="install_standalone-docker.md" class=''>Docker</a><a href="install_standalone-operator.md" class=''>Milvus Operator</a><a href="install_standalone-helm.md" class=''>Helm</a><a href="install_standalone-aptyum.md" class=''>Dpkg</a><a href="install_standalone-docker-compose.md" class='active '>Docker Compose</a></div>
<div class="tab-wrapper"><a href="install_standalone-docker.md" class=''>Docker</a><a href="install_standalone-operator.md" class=''>Milvus Operator</a><a href="install_standalone-helm.md" class=''>Helm</a><a href="install_standalone-aptyum.md" class=''>DEB/RPM</a><a href="install_standalone-docker-compose.md" class='active '>Docker Compose</a></div>

# Install Milvus Standalone with Docker Compose

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ group: install_standalone-docker.md
summary: Learn how to install Milvus standalone with Docker.
---

<div class="tab-wrapper"><a href="install_standalone-docker.md" class='active '>Docker</a><a href="install_standalone-operator.md" class=''>Milvus Operator</a><a href="install_standalone-helm.md" class=''>Helm</a><a href="install_standalone-aptyum.md" class=''>Dpkg</a><a href="install_standalone-docker-compose.md" class=''>Docker Compose</a></div>
<div class="tab-wrapper"><a href="install_standalone-docker.md" class='active '>Docker</a><a href="install_standalone-operator.md" class=''>Milvus Operator</a><a href="install_standalone-helm.md" class=''>Helm</a><a href="install_standalone-aptyum.md" class=''>DEB/RPM</a><a href="install_standalone-docker-compose.md" class=''>Docker Compose</a></div>

# Install Milvus Standalone with Docker

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ group: install_standalone-docker.md
summary: Learn how to install Milvus standalone on Kubernetes.
---

<div class="tab-wrapper"><a href="install_standalone-docker.md" class=''>Docker</a><a href="install_standalone-operator.md" class=''>Milvus Operator</a><a href="install_standalone-helm.md" class='active '>Helm</a><a href="install_standalone-aptyum.md" class=''>Dpkg</a><a href="install_standalone-docker-compose.md" class=''>Docker Compose</a></div>
<div class="tab-wrapper"><a href="install_standalone-docker.md" class=''>Docker</a><a href="install_standalone-operator.md" class=''>Milvus Operator</a><a href="install_standalone-helm.md" class='active '>Helm</a><a href="install_standalone-aptyum.md" class=''>DEB/RPM</a><a href="install_standalone-docker-compose.md" class=''>Docker Compose</a></div>

# Install Milvus Standalone with Kubernetes

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ group: install_standalone-docker.md
summary: Learn how to install Milvus stanalone with Milvus Operator.
---

<div class="tab-wrapper"><a href="install_standalone-docker.md" class=''>Docker</a><a href="install_standalone-operator.md" class='active '>Milvus Operator</a><a href="install_standalone-helm.md" class=''>Helm</a><a href="install_standalone-aptyum.md" class=''>Dpkg</a><a href="install_standalone-docker-compose.md" class=''>Docker Compose</a></div>
<div class="tab-wrapper"><a href="install_standalone-docker.md" class=''>Docker</a><a href="install_standalone-operator.md" class='active '>Milvus Operator</a><a href="install_standalone-helm.md" class=''>Helm</a><a href="install_standalone-aptyum.md" class=''>DEB/RPM</a><a href="install_standalone-docker-compose.md" class=''>Docker Compose</a></div>

# Install Milvus Standalone with Milvus Operator

Expand Down

0 comments on commit 65f47aa

Please sign in to comment.