Changes between Version 13 and Version 14 of Nmm2022/Agenda/perfSONARuse
- Timestamp:
- Jul 13, 2022, 10:49:31 AM (2 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Nmm2022/Agenda/perfSONARuse
v13 v14 130 130 Archiving 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. 131 131 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. 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.Here we will use a single central server for both archiving (esmond) and installing the MaDDash as well. 133 133 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.134 Step 1: Before installation the packages we have to update the system and install package repository. 135 135 136 {{{ 137 sudo yum update 136 138 139 sudo yum install epel-release 137 140 141 sudo yum install http://software.internet2.edu/rpms/el7/x86_64/latest/packages/perfSONAR-repo-0.10-1.noarch.rpm 142 143 sudo yum clean all 144 }}} 145 146 Step 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 {{{ 149 sudo yum install perfsonar-centralmanagement 150 }}} 151 152 Step 3: Here you need to open some ports on linux firewall which is require for MaDDash web and esmond archiver. 153 154 {{{ 155 firewall-cmd --permanent --add-port=80/tcp 156 firewall-cmd --permanent --add-port=443/tcp 157 firewall-cmd --reload 158 }}}