Open a browser and navigate to https://grafana.com/.
Click on Downloads in the top-right corner.
Log in to your Grafana account.
On the download page, select Linux on ARM64.
Copy the provided wget command to download the Grafana installation package.
Transfer the downloaded .deb package (e.g., grafana_xxx_arm64.deb) to the BL410 device.
Open a terminal on the BL410 and run ls to verify the package is present.
Install required dependencies by running:
sudo apt-get install -y adduser libfontconfig1 musl
Install Grafana using:
sudo dpkg -i grafana_xxx_arm64.deb
Start the Grafana server:
sudo systemctl start grafana-server
Enable Grafana to start on boot:
sudo systemctl enable grafana-server
Check the status to confirm Grafana is running:
sudo systemctl status grafana-server
Open a browser and enter http://
Log in with the default credentials:
Username: admin
Password: admin
Follow the prompts to change the default password.
After updating the password, Grafana installation and setup are complete.