User Tools

Site Tools


admin:nms

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
admin:nms [2019/06/12 18:04]
peppe created
admin:nms [2019/06/20 10:19] (current)
peppe
Line 19: Line 19:
   # apt install apache2 curl acl zip unzip   # apt install apache2 curl acl zip unzip
   # systemctl enable apache2   # systemctl enable apache2
 +  # a2dismod mpm_event
 +  # a2enmod mpm_prefork
 +
 +  # vi /etc/apache2/sites-available/librenms.conf
 +
 +Add the following config, edit ServerName as required:
 +
 +  <VirtualHost *:80>
 +    DocumentRoot /opt/librenms/html/
 +    ServerName  10.1.2.1
      
-  php 7.1.3 installation:+    AllowEncodedSlashes NoDecode 
 +    <Directory "/opt/librenms/html/"> 
 +      Require all granted 
 +      AllowOverride All 
 +      Options FollowSymLinks MultiViews 
 +    </Directory> 
 +  </VirtualHost> 
 + 
 +  # a2ensite librenms.conf 
 +  # a2enmod rewrite 
 +  # systemctl restart apache2 
 + 
 +php 7.1.3 installation:
   # apt install apt-transport-https lsb-release ca-certificates   # apt install apt-transport-https lsb-release ca-certificates
   # wget -O /etc/apt/trusted.gpg.d/php.gpg https://packages.sury.org/php/apt.gpg   # wget -O /etc/apt/trusted.gpg.d/php.gpg https://packages.sury.org/php/apt.gpg
Line 27: Line 49:
   # apt install php7.1-cli php7.1-curl php7.1-mbstring php7.1-gd libapache2-mod-php7.1 php7.1-snmp php7.1-xml php7.1-mysql php7.1-zip php7.1-json   # apt install php7.1-cli php7.1-curl php7.1-mbstring php7.1-gd libapache2-mod-php7.1 php7.1-snmp php7.1-xml php7.1-mysql php7.1-zip php7.1-json
  
-  mariadb installation:+Add date.timezone = Europe/Athens in 
 +  /etc/php/7.1/apache2/php.ini 
 +  /etc/php/7.1/cli/php.ini 
 + 
 +  # a2enmod php7.1 
 +   
 +mariadb installation:
   # apt install mariadb-server   # apt install mariadb-server
   # systemctl enable mariadb   # systemctl enable mariadb
Line 38: Line 66:
   FLUSH PRIVILEGES;   FLUSH PRIVILEGES;
   exit;   exit;
- +   
-  # /etc/mysql/mariadb.conf.d/50-server.cnf+  # vi /etc/mysql/mariadb.conf.d/50-server.cnf
   add the following in mysqld section   add the following in mysqld section
   innodb_file_per_table=1   innodb_file_per_table=1
Line 46: Line 74:
      
   # systemctl restart mariadb   # systemctl restart mariadb
-   + 
-  #  apt install composer fping git graphviz imagemagick mtr-tiny nmap python-memcache python-mysqldb rrdtool snmp snmpd whois+  # apt install composer fping git graphviz imagemagick mtr-tiny nmap python-memcache python-mysqldb rrdtool snmp snmpd whois
      
   # useradd librenms -d /opt/librenms -M -r   # useradd librenms -d /opt/librenms -M -r
Line 66: Line 94:
   # cd /opt/librenms   # cd /opt/librenms
   # ./scripts/composer_wrapper.php install --no-dev   # ./scripts/composer_wrapper.php install --no-dev
-   + 
-  FIXME +Disable updates 
-  Access from http://<IP>/librenms/html/ +  uncomment $config['update'] = 0; in config.php 
-  Login at http://<IP>/librenms/html/index.php/login+ 
 +Enable discovery 
 +  $config['nets'][] = "10.1.2.0/24"; in config.php 
 + 
 +Manual discovery 
 +  python3 ./snmp-scan.py <IP or range
 + 
 +Installation validation: 
 +  cd /opt/librenms 
 +  ./validate.php 
 + 
admin/nms.1560351887.txt.gz · Last modified: 2019/06/12 18:04 by peppe