Menu

Important: This documentation is about an older version. It's relevant only to the release noted, many of the features and functions have been updated or replaced. Please view the current version.

Open source

Run Grafana Alloy on Linux

Alloy is installed as a systemd service on Linux.

Start Alloy

To start Alloy, run the following command in a terminal window:

shell
sudo systemctl start alloy

(Optional) To verify that the service is running, run the following command in a terminal window:

shell
sudo systemctl status alloy

Configure Alloy to start at boot

To automatically run Alloy when the system starts, run the following command in a terminal window:

shell
sudo systemctl enable alloy.service

Restart Alloy

To restart Alloy, run the following command in a terminal window:

shell
sudo systemctl restart alloy

Stop Alloy

To stop Alloy, run the following command in a terminal window:

shell
sudo systemctl stop alloy

View Alloy logs

To view Alloy log files, run the following command in a terminal window:

shell
sudo journalctl -u alloy

Next steps