Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove copy paste error - static install on Linux uses flow in some places #4755

Merged
merged 1 commit into from
Aug 8, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions docs/sources/static/set-up/install/install-agent-linux.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ To uninstall Grafana Agent on Debian or Ubuntu, run the following commands in a
1. Uninstall Grafana Agent:

```shell
sudo apt-get remove grafana-agent-flow
sudo apt-get remove grafana-agent
```

1. Optional: Remove the Grafana repository:
Expand All @@ -60,7 +60,7 @@ To uninstall Grafana Agent on Debian or Ubuntu, run the following commands in a

## Install on RHEL or Fedora

To install Grafana Agent in flow mode on RHEL or Fedora, run the following commands in a terminal window.
To install Grafana Agent in static mode on RHEL or Fedora, run the following commands in a terminal window.

1. Import the GPG key:

Expand Down Expand Up @@ -103,13 +103,13 @@ To uninstall Grafana Agent on RHEL or Fedora, run the following commands in a te
1. Stop the systemd service for Grafana Agent:

```shell
sudo systemctl stop grafana-agent-flow
sudo systemctl stop grafana-agent
```

1. Uninstall Grafana Agent:

```shell
sudo dnf remove grafana-agent-flow
sudo dnf remove grafana-agent
```

1. Optional: Remove the Grafana repository:
Expand All @@ -120,7 +120,7 @@ To uninstall Grafana Agent on RHEL or Fedora, run the following commands in a te

## Install on SUSE or openSUSE

To install Grafana Agent in flow mode on SUSE or openSUSE, run the following commands in a terminal window.
To install Grafana Agent in static mode on SUSE or openSUSE, run the following commands in a terminal window.

1. Import the GPG key and add the Grafana package repository:

Expand Down Expand Up @@ -149,13 +149,13 @@ To uninstall Grafana Agent on SUSE or openSUSE, run the following commands in a
1. Stop the systemd service for Grafana Agent:

```shell
sudo systemctl stop grafana-agent-flow
sudo systemctl stop grafana-agent
````

1. Uninstall Grafana Agent:

```shell
sudo zypper remove grafana-agent-flow
sudo zypper remove grafana-agent
```

1. Optional: Remove the Grafana repository:
Expand Down Expand Up @@ -184,7 +184,7 @@ To check the status of Grafana Agent, run the following command in a terminal:

### Run Grafana Agent on startup

To automatically run Grafana Agent Flow when the system starts, run the following command in a terminal:
To automatically run Grafana Agent when the system starts, run the following command in a terminal:

```shell
sudo systemctl enable grafana-agent.service
Expand Down
Loading