-
Notifications
You must be signed in to change notification settings - Fork 123
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Milvus-doc-bot
authored and
Milvus-doc-bot
committed
Jan 19, 2024
1 parent
26f229f
commit ab8fc9e
Showing
5 changed files
with
67 additions
and
4 deletions.
There are no files selected for viewing
63 changes: 63 additions & 0 deletions
63
v2.3.x/site/en/getstarted/standalone/install_standalone-aptyum.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
--- | ||
id: install_standalone-aptyum.md | ||
label: Dpkg | ||
related_key: Install | ||
order: 1 | ||
group: install_standalone-docker.md | ||
summary: Learn how to install Milvus stanalone with dpkg. | ||
--- | ||
|
||
<div class="tab-wrapper"><a href="install_standalone-docker.md" class=''>Docker</a><a href="install_standalone-aptyum.md" class='active '>Dpkg</a><a href="install_standalone-operator.md" class=''>Milvus Operator</a><a href="install_standalone-helm.md" class=''>Helm (CPU)</a><a href="install_standalone-gpu-helm.md" class=''>Helm (GPU)</a></div> | ||
|
||
# Install Milvus Standalone with dpkg | ||
|
||
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 | ||
|
||
```bash | ||
$ wget https://github.com/milvus-io/milvus/releases/download/v2.3.5/milvus_2.3.5-1_amd64.deb | ||
$ sudo apt-get update | ||
$ sudo dpkg -i milvus_2.3.5-1_amd64.deb | ||
$ sudo apt-get -f install | ||
``` | ||
|
||
## Check the status of Milvus | ||
|
||
```bash | ||
$ sudo systemctl status milvus | ||
``` | ||
|
||
## Connect to Milvus | ||
|
||
Please refer to [Hello Milvus](https://milvus.io/docs/example_code.md), then run the example code. | ||
|
||
## Uninstall Milvus | ||
|
||
```bash | ||
$ sudo dpkg -P milvus | ||
``` | ||
|
||
## What's next | ||
|
||
Having installed Milvus, you can: | ||
|
||
- Check [Hello Milvus](example_code.md) to run an example code with different SDKs to see what Milvus can do. | ||
- Check [In-memory Index](index.md) for more about CPU-compatible index types. | ||
|
||
- Learn the basic operations of Milvus: | ||
- [Connect to Milvus server](manage_connection.md) | ||
- [Manage Databases](manage_databases.md) | ||
- [Create a collection](create_collection.md) | ||
- [Create a partition](create_partition.md) | ||
- [Insert data](insert_data.md) | ||
- [Conduct a vector search](search.md) | ||
|
||
- Explore [Milvus Backup](milvus_backup_overview.md), an open-source tool for Milvus data backups. | ||
- Explore [Birdwatcher](birdwatcher_overview.md), an open-source tool for debugging Milvus and dynamic configuration updates. | ||
- Explore [Attu](https://milvus.io/docs/attu.md), an open-source GUI tool for intuitive Milvus management. | ||
- [Monitor Milvus with Prometheus](monitor.md) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters