Changes between Version 13 and Version 14 of Nmm2022/Agenda/perfSONARuse


Ignore:
Timestamp:
Jul 13, 2022, 10:49:31 AM (2 years ago)
Author:
admin
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Nmm2022/Agenda/perfSONARuse

    v13 v14  
    130130Archiving or storing measuring data is less use if they cannot be presented in effective and convenient way. The Monitoring and Debugging Dashboard (MaDDash) software is aimed at collecting and presenting two-dimensional monitoring data as a set of grids referred to as a dashboard. Many monitoring systems focus on one dimension, such as a single host or service. Unfortunately, users can quickly run into n-squared problems both in terms of configuration on the back-end and data presentation on the front-end if you try to present naturally two-dimensional data in this manner.
    131131
    132 Measurement archives and MaDDash always work together. For demonstration of these two systems we will follow a single lab setup. In this example we have two or more perfSONAR nodes and a single archive host for storing data.
     132Measurement archives and MaDDash always work together. For demonstration of these two systems we will follow a single lab setup. In this example we have two or more perfSONAR nodes and a single archive host for storing data.Here we will use a single central server for both archiving (esmond) and installing the MaDDash as well.
    133133
    134 Step 1: Here we will use a central server for both as a central archiving host and to install the MaDDash as well. first we will install perfsonar-centralmanagement package which contains the MaDDash as well as other supporting packages like psconfig MadDash Agent.
     134Step 1: Before installation the packages we have to update the system and install package repository.
    135135
     136{{{
     137sudo yum update
    136138
     139sudo yum install epel-release
    137140
     141sudo yum install http://software.internet2.edu/rpms/el7/x86_64/latest/packages/perfSONAR-repo-0.10-1.noarch.rpm
     142
     143sudo yum clean all
     144}}}
     145
     146Step 2: first we will install perfsonar-centralmanagement package in the central server(MA) which contains the MaDDash, esmond as well as other supporting packages like psconfig MadDash Agent.
     147
     148{{{
     149sudo yum install perfsonar-centralmanagement
     150}}}
     151
     152Step 3: Here you need to open some ports on linux firewall which is require for MaDDash web and esmond archiver.
     153
     154{{{
     155firewall-cmd --permanent --add-port=80/tcp
     156firewall-cmd --permanent --add-port=443/tcp
     157firewall-cmd --reload
     158}}}