From 01bb8630e5d6e36584112816fe88ad94ca8c5449 Mon Sep 17 00:00:00 2001 From: hmorris Date: Mon, 13 Oct 2025 12:06:25 -0400 Subject: [PATCH 1/3] fix alias --- docs/marketplace-docs/guides/cribl/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/marketplace-docs/guides/cribl/index.md b/docs/marketplace-docs/guides/cribl/index.md index 8db105c19fe..a9144887b7c 100644 --- a/docs/marketplace-docs/guides/cribl/index.md +++ b/docs/marketplace-docs/guides/cribl/index.md @@ -8,7 +8,7 @@ external_resources: - '[Cribl](https://cribl.io/)' - '[Cribl Stream official documentation](https://docs.cribl.io/stream/)' - '[Getting Started with Cribl Stream](https://docs.cribl.io/stream/getting-started/)' -aliases: ['/products/tools/marketplace/guides/cribl-stream/'] +aliases: ['/products/tools/marketplace/guides/cribl/'] authors: ["Akamai"] contributors: ["Akamai"] license: '[CC BY-ND 4.0](https://creativecommons.org/licenses/by-nd/4.0)' From c5511bb0f65e873e5d93c1a91578e5675fe3d9bc Mon Sep 17 00:00:00 2001 From: hmorris Date: Wed, 7 Jan 2026 10:35:13 -0500 Subject: [PATCH 2/3] update with new instructions --- docs/marketplace-docs/guides/milvus/index.md | 90 ++++++++++++++++++++ 1 file changed, 90 insertions(+) create mode 100644 docs/marketplace-docs/guides/milvus/index.md diff --git a/docs/marketplace-docs/guides/milvus/index.md b/docs/marketplace-docs/guides/milvus/index.md new file mode 100644 index 00000000000..9510a8c83b1 --- /dev/null +++ b/docs/marketplace-docs/guides/milvus/index.md @@ -0,0 +1,90 @@ +--- +title: "Deploy Milvus through the Linode Marketplace" +description: "Deploy Milvus, an open-source vector database for AI, similarity search, and embeddings workloads." +published: 2025-10-03 +keywords: ['milvus', 'vector database', 'AI', 'embeddings', 'similarity search'] +tags: ["ubuntu", "marketplace", "developer", "milvus", "linode platform", "machine learning"] +external_resources: +- '[Milvus.io](https://milvus.io/)' +- '[Milvus Documentation](https://milvus.io/docs)' +- '[Milvus Quickstart Guide](https://milvus.io/docs/install_standalone-docker.md)' +aliases: ['/products/tools/marketplace/guides/milvus/'] +authors: ["Akamai"] +contributors: ["Akamai"] +license: '[CC BY-ND 4.0](https://creativecommons.org/licenses/by-nd/4.0)' +--- + +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. + +This guide includes steps for deploying the Milvus Standalone Marketplace App on a Linode Compute Instance using Docker Compose. + +## Deploying a Marketplace App + +{{% content "deploy-marketplace-apps-shortguide" %}} + +{{% content "marketplace-verify-standard-shortguide" %}} + +{{< note >}} +**Estimated deployment time:** After provisioning completes, the Milvus Standalone container stack initializes in approximately 3–5 minutes. +{{< /note >}} + +## Configuration Options + +- **Supported distributions:** Ubuntu 24.04 LTS +- **Recommended minimum plan:** Dedicated 16GB instance or higher for baseline development and testing with support for GPU instances. Larger plans are recommended for compute + +### Milvus Deployment Options + +{{% content "marketplace-required-limited-user-fields-shortguide" %}} + +{{% content "marketplace-custom-domain-fields-shortguide" %}} + +{{% content "marketplace-special-character-limitations-shortguide" %}} + +### Obtain the Credentials + +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. + +1. Log in to your Compute Instance using one of the methods below: + + - **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/). + - **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/). + +2. Run the following command to access the credentials file: + +```command +cat /home/$USERNAME/.credentials +``` + +### Getting Started After Deployment + +Once the Milvus Standalone container is deployed and running, you can connect to the database and begin creating collections, inserting vectors, and performing searches. + +To interact with Milvus, install the a supported client SDK (Python, Go, Java, Node.js). + + - **[pymilvus](https://github.com/milvus-io/pymilvus)**: Python SDK for Milvus Vector Database + - **[milvus-sdk-node](https://github.com/milvus-io/milvus-sdk-node)**: node.js SDK for Milvus Vector Database + - **[Milvus Go SDK](https://milvus.io/docs/install-go.md)**: GO SDK for Milvus Vector Database + - **[Milvus Java SDK](https://milvus.io/docs/install-java.md)**: Java SDK for Milvus Vector Database + +## Getting Started After Deployment + +Once your Milvus standalone deployment is running via Docker, you can begin validating the deployment and accessing the supporting services. + +### Verify Running Containers + +First, confirm that all Milvus-related containers are running: + +```command +docker ps +``` +You should see containers for Milvus, etcd, and MinIO in a running state. + +### Access the MinIO Dashboard +Milvus uses MinIO as its object storage backend. You can access the MinIO web interface to verify bucket creation and storage activity. + +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). + +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. + +{{% content "marketplace-update-note-shortguide" %}} \ No newline at end of file From 6e4a97b7308895d62d85ce935b6c3ae31ade8468 Mon Sep 17 00:00:00 2001 From: hmorris Date: Tue, 3 Feb 2026 11:43:46 -0500 Subject: [PATCH 3/3] add milvus --- docs/marketplace-docs/guides/milvus/index.md | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/docs/marketplace-docs/guides/milvus/index.md b/docs/marketplace-docs/guides/milvus/index.md index 9510a8c83b1..31ac7d0fb33 100644 --- a/docs/marketplace-docs/guides/milvus/index.md +++ b/docs/marketplace-docs/guides/milvus/index.md @@ -1,7 +1,7 @@ --- title: "Deploy Milvus through the Linode Marketplace" description: "Deploy Milvus, an open-source vector database for AI, similarity search, and embeddings workloads." -published: 2025-10-03 +published: 2026-02-03 keywords: ['milvus', 'vector database', 'AI', 'embeddings', 'similarity search'] tags: ["ubuntu", "marketplace", "developer", "milvus", "linode platform", "machine learning"] external_resources: @@ -67,10 +67,6 @@ To interact with Milvus, install the a supported client SDK (Python, Go, Java, N - **[Milvus Go SDK](https://milvus.io/docs/install-go.md)**: GO SDK for Milvus Vector Database - **[Milvus Java SDK](https://milvus.io/docs/install-java.md)**: Java SDK for Milvus Vector Database -## Getting Started After Deployment - -Once your Milvus standalone deployment is running via Docker, you can begin validating the deployment and accessing the supporting services. - ### Verify Running Containers First, confirm that all Milvus-related containers are running: