From 51ae8e585727e814f8d3dfc03ea6065b22caf72a Mon Sep 17 00:00:00 2001 From: "grafana-delivery-bot[bot]" <132647405+grafana-delivery-bot[bot]@users.noreply.github.com> Date: Fri, 23 Jun 2023 12:40:29 -0500 Subject: [PATCH] [v9.5.x] docs: clarifies that only OSS or Enterprise are installed (#70627) docs: clarifies that only OSS or Enterprise are installed (#70619) * clarifies that only OSS or Enterprise are installed, not both * Apply suggestions from code review (cherry picked from commit f77a886f0eb72b95ae5a607357cc81666ac987f5) Co-authored-by: Christopher Moyer <35463610+chri2547@users.noreply.github.com> --- docs/sources/setup-grafana/_index.md | 5 +++-- .../setup-grafana/installation/debian/index.md | 12 +++++++++--- 2 files changed, 12 insertions(+), 5 deletions(-) diff --git a/docs/sources/setup-grafana/_index.md b/docs/sources/setup-grafana/_index.md index 8ceb3153f60..fb339d094a6 100644 --- a/docs/sources/setup-grafana/_index.md +++ b/docs/sources/setup-grafana/_index.md @@ -1,10 +1,11 @@ --- description: Includes topics for setting up a Grafana instance. -title: Setup +title: Set up Grafana +menuTitle: Set up weight: 10 --- -# Setup +# Set up Grafana This section includes information that helps you get Grafana up and running. diff --git a/docs/sources/setup-grafana/installation/debian/index.md b/docs/sources/setup-grafana/installation/debian/index.md index 67ced4dc8fb..0657568ed30 100644 --- a/docs/sources/setup-grafana/installation/debian/index.md +++ b/docs/sources/setup-grafana/installation/debian/index.md @@ -51,16 +51,22 @@ Complete the following steps to install Grafana from the APT repository: echo "deb [signed-by=/usr/share/keyrings/grafana.key] https://apt.grafana.com beta main" | sudo tee -a /etc/apt/sources.list.d/grafana.list ``` -1. After you add the repository, run the following commands to install the OSS or Enterprise release: +1. Run the following command to update the list of available packages: ```bash # Update the list of available packages sudo apt-get update + ``` - # Install the latest OSS release: +1. Run one of the following commands to install the OSS or Enterprise release: + + ```bash + # To install the latest OSS release: sudo apt-get install grafana + ``` - # Install the latest Enterprise release: + ```bash + # To install the latest Enterprise release: sudo apt-get install grafana-enterprise ```