Install LibreNMS Monitoring Tool with Nginx on Ubuntu 20.04 Rumi, March 30, 2021March 30, 2021 First, it is recommended to update your system packages to the latest version. You can do it with the following command: apt-get update -y After updating all packages, install all the dependencies required for LibreNMS with the following command: apt-get install rrdtool whois fping imagemagick graphviz mtr-tiny nmap python3-mysqldb snmp… Continue Reading
Librenms Tidbits Rumi, March 17, 2018 To identify and see what’s wrong with the NMS, run and check the problem by issuing- ./validate.php If RRD files not being updated in rrd folder, check- ./poller.php -h HOSTNAME -d -f -m os Reset LibreNMS by dropping database- DROP DATABASE `librenms`; CREATE DATABASE `librenms`; php build-base.php Admin password reset… Continue Reading
Install Librenms on Ubuntu 16.04 Rumi, March 17, 2018September 4, 2018 The first step we must do for installing LibreNMS Monitoring Tools is to install some packages needed on the server. Connect to your server and update the repository. ssh root@hakase-labs-server sudo apt update Install all the required packages for LibreNMS from the Ubuntu repository using the following command. apt-get install fping imagemagick… Continue Reading
Add Linux machine on LibreNMS Rumi, October 28, 2017 Install SNMPD first SNMPd is not installed by default. You must first install snmpd. apt-get update apt-get install snmpd lsb -y Backup default snmp.conf file on the ‘/etc/snmp/’ directory and copy new one from the librenms directory. mv /etc/snmp/snmpd.conf /etc/snmp/snmpd.conf.asli cp /opt/librenms/snmpd.conf.example /etc/snmp/snmpd.conf or instead copy-paste below snmpd text Continue Reading