Install on RPM-based Linux

These instructions assume that you do not have Grafana installed on the target system. If you have an existing instance of Grafana you would like to use, refer to Install via plugin.

Install stable

Install the package repository:

sudo yum install https://yum.opennms.org/repofiles/opennms-repo-stable-rhel7.noarch.rpm
sudo rpm --import https://yum.opennms.org/OPENNMS-GPG-KEY

Install the packages:

sudo yum install opennms-helm

Start the server (init.d service)

Start Grafana:

sudo service grafana-server start

This starts the grafana-server process as the grafana user, which is created during package installation.

  • Default HTTP port: 3000

  • Default user and group: admin

To configure the Grafana server to start at boot time:

sudo /sbin/chkconfig --add grafana-server

Start the server (via systemd)

sudo systemctl daemon-reload
sudo systemctl start grafana-server
sudo systemctl status grafana-server

To enable the systemd service to start at boot:

sudo systemctl enable grafana-server.service