Changes between Initial Version and Version 1 of Nmm2022/Agenda/perfSONARsetup


Ignore:
Timestamp:
May 26, 2022, 8:10:23 AM (3 years ago)
Author:
geethike
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Nmm2022/Agenda/perfSONARsetup

    v1 v1  
     1= perfSONAR Bundle Installation on Ubuntu 18.04 =
     2
     3=== Step 1: Configure APT ===
     4All you need to do is to configure the perfSONAR Debian repository source, along with our signing key, on your Ubuntu machine. You will need to follow the steps below as privileged user:
     5
     6{{{
     7# sudo su
     8# cd /etc/apt/sources.list.d/
     9# curl -o perfsonar-release.list http://downloads.perfsonar.net/debian/perfsonar-release.list
     10# curl http://downloads.perfsonar.net/debian/perfsonar-official.gpg.key | apt-key add -
     11# add-apt-repository universe
     12# apt update
     13}}}
     14
     15=== Step 2: Install a Bundle ===
     16perfSONAR Toolkit:
     17{{{
     18# apt install perfsonar-toolkit
     19}}}
     20''' NOTE: ''' During the installation process, you’ll be asked to choose a password for the pscheduler and the esmond databases. Use ''' '1234' ''' as the password or anything you preferred.
     21
     22wait for installation to complete.
     23
     24=== Step 3: Starting your services (optional) ===
     25You can start all the services by rebooting the host since all are configured to run by default. In order to check services status issue the following commands:
     26
     27{{{
     28# service pscheduler-scheduler status
     29# service pscheduler-runner status
     30# service pscheduler-archiver status
     31# service pscheduler-ticker status
     32# service owamp-server status
     33# service perfsonar-lsregistrationdaemon status
     34}}}
     35
     36If they are not running you may start them with appropriate service commands as a root user. For example :
     37{{{
     38# service pscheduler-scheduler start
     39# service pscheduler-runner start
     40# service pscheduler-archiver start
     41# service pscheduler-ticker start
     42# service owamp-server start
     43# service perfsonar-lsregistrationdaemon start
     44}}}