|
| 1 | +--- |
| 2 | +title: "Deploy Milvus through the Linode Marketplace" |
| 3 | +description: "Deploy Milvus, an open-source vector database for AI, similarity search, and embeddings workloads." |
| 4 | +published: 2026-02-09 |
| 5 | +modified: 2026-02-09 |
| 6 | +keywords: ['milvus', 'vector database', 'AI', 'embeddings', 'similarity search'] |
| 7 | +tags: ["ubuntu", "marketplace", "developer", "milvus", "linode platform", "machine learning"] |
| 8 | +external_resources: |
| 9 | +- '[Milvus.io](https://milvus.io/)' |
| 10 | +- '[Milvus Documentation](https://milvus.io/docs)' |
| 11 | +- '[Milvus Quickstart Guide](https://milvus.io/docs/install_standalone-docker.md)' |
| 12 | +aliases: ['/products/tools/marketplace/guides/milvus/'] |
| 13 | +authors: ["Akamai"] |
| 14 | +contributors: ["Akamai"] |
| 15 | +license: '[CC BY-ND 4.0](https://creativecommons.org/licenses/by-nd/4.0)' |
| 16 | +--- |
| 17 | + |
| 18 | +Milvus is a high-performance open-source vector database that enables fast similarity search across unstructured data, including image, video, audio, and text embeddings. Designed for AI workloads and large-scale vector indexing, Milvus provides millisecond-level retrieval performance and integrates easily with popular machine learning frameworks and embedding services. |
| 19 | + |
| 20 | +This guide includes steps for deploying the Milvus Standalone Marketplace App on a Linode Compute Instance using Docker Compose. |
| 21 | + |
| 22 | +## Deploying a Marketplace App |
| 23 | + |
| 24 | +{{% content "deploy-marketplace-apps-shortguide" %}} |
| 25 | + |
| 26 | +{{% content "marketplace-verify-standard-shortguide" %}} |
| 27 | + |
| 28 | +{{< note >}} |
| 29 | +**Estimated deployment time:** After provisioning completes, the Milvus Standalone container stack initializes in approximately 3–5 minutes. |
| 30 | +{{< /note >}} |
| 31 | + |
| 32 | +## Configuration Options |
| 33 | + |
| 34 | +- **Supported distributions:** Ubuntu 24.04 LTS |
| 35 | +- **Recommended minimum plan:** Dedicated 16GB instance or higher for baseline development and testing with support for GPU instances. |
| 36 | + |
| 37 | +### Milvus Deployment Options |
| 38 | + |
| 39 | +{{% content "marketplace-required-limited-user-fields-shortguide" %}} |
| 40 | + |
| 41 | +{{% content "marketplace-custom-domain-fields-shortguide" %}} |
| 42 | + |
| 43 | +{{% content "marketplace-special-character-limitations-shortguide" %}} |
| 44 | + |
| 45 | +### Obtain the Credentials |
| 46 | + |
| 47 | +When deployment completes, the system automatically generates credentials for internal MinIO storage and other parameters needed to administer your Milvus instance. These are stored in the limited user’s `.credentials` file. |
| 48 | + |
| 49 | +1. Log in to your Compute Instance using one of the methods below: |
| 50 | + |
| 51 | + - **Lish Console**: Log in to Cloud Manager, click **Linodes**, select your instance, and click **Launch LISH Console**. Log in as `root`. To learn more, see [Using the Lish Console](/docs/products/compute/compute-instances/guides/lish/). |
| 52 | + - **SSH**: Log in to your instance over SSH using the `root` user. To learn how, see [Connecting to a Remote Server Over SSH](/docs/guides/connect-to-server-over-ssh/). |
| 53 | + |
| 54 | +2. Run the following command to access the `.credentials` file: |
| 55 | + |
| 56 | +```command |
| 57 | +cat /home/$USERNAME/.credentials |
| 58 | +``` |
| 59 | + |
| 60 | +### Getting Started After Deployment |
| 61 | + |
| 62 | +Once the Milvus Standalone container is deployed and running, you can connect to the database and begin creating collections, inserting vectors, and performing searches. |
| 63 | + |
| 64 | +To interact with Milvus, install the a supported client SDK (Python, Go, Java, Node.js). |
| 65 | + |
| 66 | + - **[pymilvus](https://github.com/milvus-io/pymilvus)**: Python SDK for Milvus Vector Database |
| 67 | + - **[milvus-sdk-node](https://github.com/milvus-io/milvus-sdk-node)**: node.js SDK for Milvus Vector Database |
| 68 | + - **[Milvus Go SDK](https://milvus.io/docs/install-go.md)**: GO SDK for Milvus Vector Database |
| 69 | + - **[Milvus Java SDK](https://milvus.io/docs/install-java.md)**: Java SDK for Milvus Vector Database |
| 70 | + |
| 71 | +### Verify Running Containers |
| 72 | + |
| 73 | +First, confirm that all Milvus-related containers are running: |
| 74 | + |
| 75 | +```command |
| 76 | +docker ps |
| 77 | +``` |
| 78 | +You should see containers for Milvus, etcd, and MinIO in a running state. |
| 79 | + |
| 80 | +### Access the MinIO Dashboard |
| 81 | +Milvus uses MinIO as its object storage backend. You can access the MinIO web interface to verify bucket creation and storage activity. |
| 82 | + |
| 83 | +To access your MinIO Dashboard, Open a browser and navigate to your Linode rDNS domain `https://203-0-113-0.ip.linodeusercontent.com`. Replace `https://203-0-113-0.ip.linodeusercontent.com` with your [Linode's RDNS domain](/docs/products/compute/compute-instances/guides/manage-ip-addresses/#viewing-ip-addresses). The credentials can be found in the `.credentials` file (/home/$USERNAME/.credentials). |
| 84 | + |
| 85 | +If you want to learn more about Milvus, checkout [the official Milvus documentation](https://milvus.io/docs) to learn how to further utilize your instance. |
| 86 | + |
| 87 | +{{% content "marketplace-update-note-shortguide" %}} |
0 commit comments