Prerequisito indispensabile per completare con successo la migrazione è che:

Size: px
Start display at page:

Download "Prerequisito indispensabile per completare con successo la migrazione è che:"

Transcription

1 Divisione Infrastrutture e Servizi Informativi (ISI) Installazione su Debian Lenny di Shibboleth e migrazione dalla versione da repository preconfigurata Diego Fantoma (fantoma@units.it) Arjuna Scagnetto (ascagnetto@units.it) Il presente documento rappresenta una breve guida per aggiornare Shibboleth e le relative librerie dalla versione da repository di Debian Lenny in modo da rendere operativa l'autenticazione federata tramite WAYF. Prerequisito indispensabile per completare con successo la migrazione è che: Shibboleth 2 sia già installato; si sia verificato il buon funzionamento su un singolo IdP; si sia verificato il solo mancato funzionamento della configurazione in modalità federata. La macchina inoltre deve essere configurata in rete, eventualmente con le impostazioni del proxy per l'utilizzo con wget. Il presente documento è redatto in marzo 2012: prima di procedere assicurarsi che i link e le versioni presenti al momento dell'installazione siano conformi a quanto descritto. Si declina ogni responsabilità sull'uso della presente guida. Aggiornamento del sistema e scaricamento delle librerie necessarie, da eseguire come root: apt-get update apt-get install wget gcc g++ make libssl0.9.8 libssl-dev libcurl3 libcurl4-openssl-dev libxerces-c28 apt-get install libxerces-c2-dev libxml-security-c14 libxml-security-c-dev apache2-threaded-dev export MYBUILD=~/shibsp2.4.3-build mkdir -p $MYBUILD cd $MYBUILD wget wget wget wget tar xvfz log4shib tar.gz tar xvzf xmltooling tar.gz tar xvfz opensaml tar.gz tar xvfz shibboleth-sp tar.gz export SHIB_HOME=/opt/shibboleth-sp mkdir $SHIB_HOME!"# $%!&'"'(()!! *%!&'"'(()!!+,,,$$ -$.$

2 Build delle librerie e del software cd $MYBUILD;pushd $MYBUILD/log4shib-1.0.4/ &&./configure --disable-static --disable-doxygen --prefix=$shib_home && make && make install && popd cd $MYBUILD;pushd $MYBUILD/xmltooling-1.4.2/ &&./configure --with-log4shib=$shib_home --prefix=$shib_home -C && make && make install && popd cd $MYBUILD;pushd $MYBUILD/opensaml-2.4.3/ &&./configure --prefix=$shib_home --with-log4shib=$shib_home -C && make && make install && popd cd $MYBUILD;pushd $MYBUILD/shibboleth-2.4.3/ &&./configure --with-saml=$shib_home --enable-apache-22 --with-log4shib=$shib_home --with-xmltooling=$shib_home --prefix=$shib_home -C && make && make install && popd Operazioni di aggiornamento: /etc/init.d/apache2 stop /etc/init.d/shibd stop cp -rp /etc/shibboleth /etc/shibboleth_org a2dismod shib2 apt-get remove libapache2-mod-shib2 apt-get remove libshibsp1 apt-get remove shibboleth-sp2-schemas dpkg --purge libshibsp1 dpkg --purge libapache2-mod-shib2 rm -rf /var/run/shibboleth mv /var/log/shibboleth /var/log/shibboleth_org ln -s $SHIB_HOME /opt/shibboleth-sp2 export SHIBSP_CONFIG=/etc/shibboleth mkdir -p $SHIBSP_CONFIG cp /etc/shibboleth_org/accesserror.html /etc/shibboleth cp /etc/shibboleth_org/bindingtemplate.html /etc/shibboleth cp /etc/shibboleth_org/globallogout.html /etc/shibboleth cp /etc/shibboleth_org/locallogout.html /etc/shibboleth cp /etc/shibboleth_org/metadataerror.html /etc/shibboleth cp /etc/shibboleth_org/sessionerror.html /etc/shibboleth cp /etc/shibboleth_org/sslerror.html /etc/shibboleth cp /etc/shibboleth_org/discoverytemplate.html /etc/shibboleth cp /etc/shibboleth_org/attribute-map.xml /etc/shibboleth cp /etc/shibboleth_org/attribute-policy.xml /etc/shibboleth cp /etc/shibboleth_org/example-metadata.xml /etc/shibboleth 2/7

3 cp /etc/shibboleth_org/shibboleth2.xml /etc/shibboleth cp /etc/shibboleth_org/garr-ca.pem /etc/shibboleth cp /etc/shibboleth_org/sp-cert.pem /etc/shibboleth cp /etc/shibboleth_org/sp-key.pem /etc/shibboleth cp /etc/shibboleth_org/console.logger /etc/shibboleth cp /etc/shibboleth_org/upgrade.xsl /etc/shibboleth mkdir -p /var/log/shibboleth cp ${SHIB_HOME}/etc/shibboleth/native.logger ${SHIBSP_CONFIG} cp ${SHIB_HOME}/etc/shibboleth/shibd.logger ${SHIBSP_CONFIG} cp ${SHIB_HOME}/etc/shibboleth/syslog.logger ${SHIBSP_CONFIG} echo 'log4j.appender.native_log.filename=/var/log/shibboleth/native.log' >> /etc/shibboleth/native.logger echo 'log4j.appender.shibd_log.filename=/var/log/shibboleth/shibd.log' >> /etc/shibboleth/shibd.logger echo 'log4j.appender.tran_log.filename=/var/log/shibboleth/transaction.log' >> /etc/shibboleth/shibd.logger Editare nella directory /etc/init.d il file shibd che si trova nell'appendice del presente documento e renderlo avviabile di default alla partenza del sistema: chmod +x /etc/init.d/shibd update-rc.d shibd defaults Preparazione dei log files touch /var/log/shibboleth/shibd.log touch /var/log/shibboleth/native.log chown root:www-data /var/log/shibboleth/native.log chmod g+w /var/log/shibboleth/native.log chown root:www-data /var/log/shibboleth/shibd.log chmod g+w /var/log/shibboleth/shibd.log Configurazione di Apache2 echo 'ShibConfig /etc/shibboleth/shibboleth2.xml' > /etc/apache2/mods-available/shib2.conf echo >> /etc/apache2/mods-available/shib2.conf echo '<IfModule mod_alias.c>' >> /etc/apache2/mods-available/shib2.conf echo ' <Location /shibboleth-sp>' >> /etc/apache2/mods-available/shib2.conf echo ' Allow from all' >> /etc/apache2/mods-available/shib2.conf echo ' </Location>' >> /etc/apache2/mods-available/shib2.conf echo ' Alias /shibboleth-sp/main.css /etc/shibboleth/main.css' >> /etc/apache2/mods-available/shib2.conf echo ' Alias /shibboleth-sp/edit-logo.png /etc/shibboleth/edit-logo.png' >> /etc/apache2/modsavailable/shib2.conf echo '</IfModule>' >> /etc/apache2/mods-available/shib2.conf 3/7

4 echo 'LoadModule mod_shib /opt/shibboleth-sp2/lib/shibboleth/mod_shib_22.so' > /etc/apache2/modsavailable/shib2.load echo 'export LD_LIBRARY_PATH=/opt/shibboleth-sp2/lib' >> /etc/apache2/envvars a2enmod shib2 Riavvio dei server: /etc/init.d/shibd start /etc/init.d/apache2 start Operazioni di verifica: Accedere alle posizioni sicure verificando anche nei log di shibboleth il buon funzionamento del sistema. 4/7

5 File shibd da inserire in /etc/init.d #! /bin/sh ### BEGIN INIT INFO # Provides: shibd # Required-Start: $local_fs $remote_fs $network # Required-Stop: $local_fs $remote_fs $network # Default-Start: # Default-Stop: # Short-Description: Shibboleth 2 Service Provider Daemon # Description: Starts the separate daemon used by the Shibboleth # Apache module to manage sessions and to retrieve # attributes from Shibboleth Identity Providers. ### END INIT INFO # # Written by Quanah Gibson-Mount <quanah@stanford.edu> # Modified by Lukas Haemmerle <lukas.haemmerle@switch.ch> for Shibboleth 2 # Based on the dh-make template written by: # # Written by Miquel van Smoorenburg <miquels@cistron.nl>. # Modified for Debian # by Ian Murdock <imurdock@gnu.ai.mit.edu>. PATH=/sbin:/bin:/usr/sbin:/usr/bin DESC="Shibboleth 2 daemon" NAME=shibd SHIB_HOME=/opt/shibboleth-sp2 SHIBSP_CONFIG=/etc/shibboleth/shibboleth2.xml LD_LIBRARY_PATH=$SHIB_HOME/lib DAEMON=$SHIB_HOME/sbin/$NAME SCRIPTNAME=/etc/init.d/$NAME PIDFILE=/var/run/$NAME.pid DAEMON_OPTS="" # Force removal of socket DAEMON_OPTS="$DAEMON_OPTS -f" # Use defined configuration file DAEMON_OPTS="$DAEMON_OPTS -c $SHIBSP_CONFIG" 5/7

6 # Specify pid file to use DAEMON_OPTS="$DAEMON_OPTS -p $PIDFILE" # Specify wait time to use DAEMON_OPTS="$DAEMON_OPTS -w 30" # Exit if the package is not installed. [ -x "$DAEMON" ] exit 0 # Read configuration if it is present. [ -r /etc/default/$name ] &&. /etc/default/$name # Get the setting of VERBOSE and other rcs variables. [ -f /etc/default/rcs ] &&. /etc/default/rcs case "$1" in start) # Don't start shibd if NO_START is set. if [ "$NO_START" = 1 ] ; then echo "Not starting $DESC (see /etc/default/$name)" exit 0 fi echo -n "Starting $DESC: " start-stop-daemon --start --quiet \ --pidfile $PIDFILE --exec $DAEMON -- $DAEMON_OPTS echo "$NAME." stop) echo -n "Stopping $DESC: " start-stop-daemon --stop --quiet --pidfile $PIDFILE --exec $DAEMON echo "$NAME." restart force-reload) echo -n "Restarting $DESC: " start-stop-daemon --stop --quiet --pidfile $PIDFILE \ --exec $DAEMON sleep 1 start-stop-daemon --start --quiet --pidfile $PIDFILE --exec $DAEMON -- $DAEMON_OPTS echo "$NAME." 6/7

7 *) echo "Usage: $SCRIPTNAME {start stop restart force-reload}" >&2 exit 1 esac exit 0 7/7

FreeSWITCH for Ubuntu 14.04

FreeSWITCH for Ubuntu 14.04 FreeSWITCH for Ubuntu 14.04 Freeswitch is an open-source alternative to Asterisk to build a voip telephony server. It was launched by a member of the Asterisk development team who wanted to rewrite the

More information

Building the Laika AMI

Building the Laika AMI Building the Laika AMI Ben Uphoff, CCHIT Table of Contents Install steps... 2 Install dependencies and congure environment... 2 Get and congure Laika... 3 Congure Laika to start on system boot... 3 Create

More information

Remote GUI access to a Linux computer using Tightvnc

Remote GUI access to a Linux computer using Tightvnc Remote GUI access to a Linux computer using Tightvnc The command line is a great way to manage a remote Linux computer if you don't mind typing in commands, but sometimes you need to be able to view a

More information

Hands-On Exercises. Enroll in Registry Using Federated Identity. Upload Your SSH Public Key. SSH Into the VM

Hands-On Exercises. Enroll in Registry Using Federated Identity. Upload Your SSH Public Key. SSH Into the VM Hands-On Exercises Enroll in Registry Using Federated Identity Upload Your SSH Public Key SSH Into the VM Hands-on with SAML Hands-on with SAML: Advanced Hands-on with OpenID Connect Hands-on with OpenID

More information

MOC10215 Implementing and Managing Server Virtualization

MOC10215 Implementing and Managing Server Virtualization Tel. +39 02 365738 info@overneteducation.it www.overneteducation.it MOC10215 Implementing and Managing Server Virtualization Durata: 4.5 gg Descrizione Questo corso fornisce le competenze e le conoscenze

More information

Installing Tomcat 6 on Ubuntu 8.04 (Hardy) Miles Jordan AADC

Installing Tomcat 6 on Ubuntu 8.04 (Hardy) Miles Jordan AADC Installing Tomcat 6 on Ubuntu 8.04 (Hardy) Miles Jordan AADC Last Updated Wednesday, 22 December 2010 1. APT Configuration Tomcat 6 is not provided by the standard Hardy package repositories, but it can

More information

T.A.D / ABS - Installation

T.A.D / ABS - Installation T.A.D / ABS - Installation Technical Architecture Document / Installation Topic : This document aims to expose the architecture to set up for the installation of ABS. It exposes all the tools that make

More information

ViMP 2.0. Installation Guide. Verfasser: ViMP GmbH

ViMP 2.0. Installation Guide. Verfasser: ViMP GmbH ViMP 2.0 Installation Guide Verfasser: ViMP GmbH Table of contents About this document... 3 Prerequisites... 4 Preparing the server... 5 Apache2... 5 PHP... 5 MySQL... 5 Transcoding... 6 Configuration...

More information

MW MOC INSTALLING AND CONFIGURING WINDOWS 10

MW MOC INSTALLING AND CONFIGURING WINDOWS 10 MW10-4 - MOC 20698 - INSTALLING AND CONFIGURING WINDOWS 10 Categoria: Windows 10 INFORMAZIONI SUL CORSO Durata: Categoria: Qualifica Istruttore: Dedicato a: Produttore: 5 Giorni Windows 10 Microsoft Certified

More information

Shibboleth/Federation Operator Tutorial TIIME Workshop DAASI International. Date: 6 Feb 2018

Shibboleth/Federation Operator Tutorial TIIME Workshop DAASI International. Date: 6 Feb 2018 Shibboleth/Federation Operator Tutorial TIIME Workshop 2018 Speaker: David Hübner, DAASI International Date: 6 Feb 2018 Agenda 1. Welcome and Introduction to the Workshop 2. Introduction to Shibboleth

More information

fod Documentation Release Leonidas Poulopoulos

fod Documentation Release Leonidas Poulopoulos fod Documentation Release 1.1.0 Leonidas Poulopoulos September 26, 2014 Contents 1 Description 1 2 Contact 3 3 Install 5 3.1 Installation................................................ 5 i ii CHAPTER

More information

User-friendly Cross-platform Industry 4.0 Web Viewer Smartphone-App Free Hotline

User-friendly Cross-platform Industry 4.0 Web Viewer Smartphone-App Free Hotline Documentation Dragonfly QuickHMI with Raspberry Pi Version 6.0 User-friendly Cross-platform Industry 4.0 Web Viewer Smartphone-App Free Hotline Indi.Systems GmbH Universitätsallee 23 D-28359 Bremen Tel.

More information

Step 1 - Install Apache and PostgreSQL

Step 1 - Install Apache and PostgreSQL How to install OTRS (Open Source Trouble Ticket System) on Ubuntu 16.04 Prerequisites Ubuntu 16.04. Min 2GB of Memory. Root privileges. Step 1 - Install Apache and PostgreSQL In this first step, we will

More information

Communication protocols and services

Communication protocols and services This chapter describes various protocols and that may be enabled on Modberry. SSH Connection SSH service is started up on boot and already preinstalled and configured. You may access your device through

More information

Linux Essentials Objectives Topics:

Linux Essentials Objectives Topics: Linux Essentials Linux Essentials is a professional development certificate program that covers basic knowledge for those working and studying Open Source and various distributions of Linux. Exam Objectives

More information

Setting up a Shibboleth SP

Setting up a Shibboleth SP Setting up a Shibboleth SP Overview Install the SP (shibd) Install with yum Install manually Make Sure shibd Runs at Startup Configuration Configure shib.conf Configure httpd.conf Configure attribute-map.xml

More information

MW MOC SUPPORTING AND TROUBLESHOOTING WINDOWS 10

MW MOC SUPPORTING AND TROUBLESHOOTING WINDOWS 10 MW10-3 - MOC 10982 - SUPPORTING AND TROUBLESHOOTING WINDOWS 10 Categoria: Windows 10 INFORMAZIONI SUL CORSO Durata: Categoria: Qualifica Istruttore: Dedicato a: Produttore: 5 Giorni Windows 10 Microsoft

More information

Programmazione avanzata con ecos

Programmazione avanzata con ecos Programmazione avanzata con ecos Giovanni Perbellini Agenda Aggiunta di un device driver all interno di ecos Modifica del repository Progettazione driver per il controllo di un contatore Modifica della

More information

Esempio con Google Play tore Example with Google Play tore

Esempio con Google Play tore Example with Google Play tore Guida all installazione ed uso dell App VR Tour Camerata Picena Per installare l App occorre aprire lo Store del vostro smartphone (Play Store o App Store) e cercare l App con parola chiave Camerata Picena.

More information

INTRODUCTION. To avoid the PHP7 conflicts use this OS image: STEP 1 - Parts List:

INTRODUCTION. To avoid the PHP7 conflicts use this OS image:   STEP 1 - Parts List: INTRODUCTION These are enhanced instruction set to install RaspberryPints on a Raspberry Pi 2 Model B with use of an AlaMode card and Flow Meters from AdaFruit.com. I started with instruction set here:

More information

7.3 Install on Linux and Initial Configurations

7.3 Install on Linux and Initial Configurations 7.3 Install on Linux and Initial Configurations This section describes how to install SoftEther VPN Server to a Linux operating system. This assumes that in the Linux operating system, no extra application

More information

Corso: Installing and Configuring Windows 10 Codice PCSNET: MW10-4 Cod. Vendor: Durata: 5

Corso: Installing and Configuring Windows 10 Codice PCSNET: MW10-4 Cod. Vendor: Durata: 5 Corso: Installing and Configuring Windows 10 Codice PCSNET: MW10-4 Cod. Vendor: 20698 Durata: 5 Obiettivi Pianificare, installare e aggiornare a Windows 10. Eseguire la configurazione post-installazione.

More information

9.3 Linux?????????????

9.3 Linux????????????? 9.3 Linux???????????????????VPN Bridge???Linux????????????????????????????????????????Linux?????????????????????????????????????????????????????????????????????????????????????? Linux????????????????????????????????????????????????????

More information

7.3 Linux?????????????

7.3 Linux????????????? 7.3 Linux???????????????????SoftEther VPN Server?? Linux????????????????????????????????????????Linux??????????????????????????????????????????????????????????????????????????????????????Linux????????????????????????????????????????????????????

More information

:13 1/10 Traffic counting on the CCGX

:13 1/10 Traffic counting on the CCGX 2017-08-18 15:13 1/10 Traffic counting on the CCGX Traffic counting on the CCGX There are situation in which it is interesting to know the traffic usage of the color control. This can be done on the CCGX

More information

KOHA 3.4 INSTALLATION ON UBUNTU LINUX. Dibyendra Hyoju August 2011 Madan Puraskar Pustakalaya

KOHA 3.4 INSTALLATION ON UBUNTU LINUX. Dibyendra Hyoju August 2011 Madan Puraskar Pustakalaya KOHA 3.4 INSTALLATION ON UBUNTU LINUX Dibyendra Hyoju dibyendra@mpp.org.np August 2011 Madan Puraskar Pustakalaya 1 Click Alt+F2 and type 'terminal' without quotes to launch terminal. Note: We will be

More information

Corso: Identity with Windows Server 2016 Codice PCSNET: MWS3-4 Cod. Vendor: Durata: 5

Corso: Identity with Windows Server 2016 Codice PCSNET: MWS3-4 Cod. Vendor: Durata: 5 Corso: Identity with Windows Server 2016 Codice PCSNET: MWS3-4 Cod. Vendor: 20742 Durata: 5 Obiettivi Installare e configurare i controller di dominio. Gestire gli oggetti di dominio Active Directory utilizzando

More information

If you re the administrator on any network,

If you re the administrator on any network, Let s do an inventory! If you re the administrator on any network, chances are you ve already faced the need to make an inventory. In fact, keeping a list of all the computers, monitors, software and other

More information

Introduction. What is Linux? What is the difference between a client and a server?

Introduction. What is Linux? What is the difference between a client and a server? Linux Kung Fu Introduction What is Linux? What is the difference between a client and a server? What is Linux? Linux generally refers to a group of Unix-like free and open-source operating system distributions

More information

The first command should show your short hostname, and the second should show your fully qualified domain name (FQDN).

The first command should show your short hostname, and the second should show your fully qualified domain name (FQDN). Set the Hostname Before you begin installing and configuring the components described in this guide, please make sure you've followed our instructions for setting your hostname. Issue the following commands

More information

Installing Open Project on Ubuntu AWS with Apache and Postgesql

Installing Open Project on Ubuntu AWS with Apache and Postgesql Installing Open Project on Ubuntu AWS with Apache and Postgesql Contents Installing Open Project on Ubuntu AWS with Apache and Postgesql... 1 Add new ports to your security group... 2 Update your system...

More information

Integration of UNICORE Components into Linux Systems

Integration of UNICORE Components into Linux Systems Mitglied der Helmholtz-Gemeinschaft Integration of UNICORE Components into Linux Systems 15.12.2009 Rebecca Breu UNICORE Installation as of Now tgz or graphical installer all files installed into one directory

More information

Linux Kung Fu. Stephen James UBNetDef, Spring 2017

Linux Kung Fu. Stephen James UBNetDef, Spring 2017 Linux Kung Fu Stephen James UBNetDef, Spring 2017 Introduction What is Linux? What is the difference between a client and a server? What is Linux? Linux generally refers to a group of Unix-like free and

More information

Install some base packages. I recommend following this guide as root on a new VPS or using sudo su, it will make running setup just a touch easier.

Install some base packages. I recommend following this guide as root on a new VPS or using sudo su, it will make running setup just a touch easier. Nagios 4 on Ubuntu 16 Install some base packages. I recommend following this guide as root on a new VPS or using sudo su, it will make running setup just a touch easier. apt-get install php-gd build-essential

More information

Serie Sistema scorrevoleve regolabile o fisso per armadi con ante interne. Adjustable or fixed sliding system for wardrobes with internal doors

Serie Sistema scorrevoleve regolabile o fisso per armadi con ante interne. Adjustable or fixed sliding system for wardrobes with internal doors Serie Sistema scorrevoleve regolabile o fisso per armadi con ante interne Adjustable or fixed sliding system for wardrobes with internal doors , 1 1 1, 4 1 1 11, 4 4 4 4 4 4 Posizione binari Rails position

More information

Installation Manual InfraManage.NET Installation Instructions for Ubuntu

Installation Manual InfraManage.NET Installation Instructions for Ubuntu Installation Manual InfraManage.NET Installation Instructions for Ubuntu Copyright 1996 2017 Timothy Ste. Marie Version 7.5.72SQL InfraManage.NET Installing InfraManage.NET Page 1 of 78 Table of Contents

More information

Jarvis Web Gateway. Installation Instructions. Jonathan Couper-Smartt

Jarvis Web Gateway. Installation Instructions. Jonathan Couper-Smartt Jarvis Web Gateway Installation Instructions Jonathan Couper-Smartt jarvis@nsquared.co.nz Abstract: The Jarvis Web Gateway is a lightweight web-service designed to give Rich Internet Applications a rapid,

More information

simplevisor Documentation

simplevisor Documentation simplevisor Documentation Release 1.2 Massimo Paladin June 27, 2016 Contents 1 Main Features 1 2 Installation 3 3 Configuration 5 4 simplevisor command 9 5 simplevisor-control command 13 6 Supervisor

More information

Errore 500 su installazione Phoca Gallery e Phoca Guestbook su Joomla 2.5. Scritto da ventus85 Domenica 12 Agosto :28

Errore 500 su installazione Phoca Gallery e Phoca Guestbook su Joomla 2.5. Scritto da ventus85 Domenica 12 Agosto :28 In questi giorni ho provato a installare le estensioni Phoca Gallery e Phoca Guestbook, più precisamente le ultime rilasciate ad oggi per Joomla 2.5, la 3.2.1 per la prima e la 2.0.5 per la seconda. In

More information

a. puppet should point to master (i.e., append puppet to line with master in it. Use a text editor like Vim.

a. puppet should point to master (i.e., append puppet to line with master in it. Use a text editor like Vim. Head Node Make sure that you have completed the section on Precursor Steps and Storage. Key parts of that are necessary for you to continue on this. If you have issues, please let an instructor know to

More information

Offloading NDO2DB To Remote Server

Offloading NDO2DB To Remote Server Purpose This document is meant to show a step-by-step guide for offloading the NDO2DB daemon from the central server to an external, remote server. NDO2DB is an acronym of "Nagios Data Output To Database"

More information

Installing FreePBX 2.11 on Ubuntu Server (Precise Pangolin)

Installing FreePBX 2.11 on Ubuntu Server (Precise Pangolin) Installing FreePBX 2.11 on Ubuntu 12.04 Server (Precise Pangolin) Install Ubuntu 12.04 Server LTS 32 or 64-bit Commercial Modules Commercial modules and add-ons are not currently supported on the Ubuntu

More information

If you had a freshly generated image from an LCI instructor, make sure to set the hostnames again:

If you had a freshly generated image from an LCI instructor, make sure to set the hostnames again: Storage Node Setup A storage node (or system as your scale) is a very important unit for an HPC cluster. The computation is often about the data it produces and keeping that data safe is important. Safe

More information

MOC Deploying and Managing Windows 10 Using Enterprise Services

MOC Deploying and Managing Windows 10 Using Enterprise Services Tel. +39 02 365738 info@overneteducation.it www.overneteducation.it MOC20697.2 Deploying and Managing Windows 10 Using Enterprise Services Durata: 4.5 gg Descrizione Questo corso fornisce agli amministratori

More information

CPW AutoGrader. CSCI 370 Field Session 2016 June 20, Client: Christopher Painter Wakefield

CPW AutoGrader. CSCI 370 Field Session 2016 June 20, Client: Christopher Painter Wakefield CPW AutoGrader CSCI 370 Field Session 2016 June 20, 2016 Client: Christopher Painter Wakefield Authors: Michael Bartlett Harry Krantz Eric Olson Chris Rice Caleb Willkomm Table of Contents Introduction

More information

WWPASS AUTHENTICATION MODULE FOR APACHE SERVER 2.2 INSTALL GUIDE

WWPASS AUTHENTICATION MODULE FOR APACHE SERVER 2.2 INSTALL GUIDE WWPASS AUTHENTICATION MODULE FOR APACHE SERVER 2.2 INSTALL GUIDE June 2013 TABLE OF CONTENTS TABLE OF CONTENTS... 2 ABOUT THIS DOCUMENT... 3 DOCUMENT TEXT CONVENTIONS... 4 ABBREVIATIONS & DEFINITIONS...

More information

Computer Systems and Architecture

Computer Systems and Architecture Computer Systems and Architecture Introduction to UNIX Stephen Pauwels University of Antwerp October 2, 2015 Outline What is Unix? Getting started Streams Exercises UNIX Operating system Servers, desktops,

More information

MWS3-2 - MOC INSTALLATION, STORAGE AND COMPUTE WITH WINDOWS SERVER 2016

MWS3-2 - MOC INSTALLATION, STORAGE AND COMPUTE WITH WINDOWS SERVER 2016 MWS3-2 - MOC 20740 - INSTALLATION, STORAGE AND COMPUTE WITH WINDOWS SERVER 2016 Categoria: Windows Server 2016 INFORMAZIONI SUL CORSO Durata: Categoria: Qualifica Istruttore: Dedicato a: Produttore: 5

More information

شرکت توسعه ارتباطات پردیس پارس. owncloud. The last file sharing platform you'll ever need

شرکت توسعه ارتباطات پردیس پارس. owncloud. The last file sharing platform you'll ever need شرکت توسعه ارتباطات پردیس پارس owncloud The last file sharing platform you'll ever need. Explore the Features: Click Sync and Share Your Data, with Ease A Safe Home for All Your Data Your Data is Where

More information

Linux Systems Administration Getting Started with Linux

Linux Systems Administration Getting Started with Linux Linux Systems Administration Getting Started with Linux Network Startup Resource Center www.nsrc.org These materials are licensed under the Creative Commons Attribution-NonCommercial 4.0 International

More information

Installing Shibbolized Tiqr

Installing Shibbolized Tiqr Installing Shibbolized Tiqr Following document instructs how to install Shibbolized Tiqr (or "tiqrshib") in the IdP environment. Please feel free to contact us (tiqr at meatmail.jp) if you have any difficulty

More information

MWS3-3 - MOC NETWORKING WITH WINDOWS SERVER 2016

MWS3-3 - MOC NETWORKING WITH WINDOWS SERVER 2016 MWS3-3 - MOC 20741 - NETWORKING WITH WINDOWS SERVER 2016 Categoria: Windows Server 2016 INFORMAZIONI SUL CORSO Durata: Categoria: Qualifica Istruttore: Dedicato a: Produttore: 5,00000 Giorni Windows Server

More information

Installing FreePBX 13 on Debian 8.1

Installing FreePBX 13 on Debian 8.1 Installing FreePBX 13 on Debian 8.1 READ FIRST Manual installations of FreePBX is considered an EXPERTS ONLY exercise. This method of installation is enough to get CORE functionality of FreePBX. Non-commercial

More information

Molecular Forecaster Inc. Forecaster 1.2 Server Installation Guide

Molecular Forecaster Inc. Forecaster 1.2 Server Installation Guide Molecular Forecaster Inc. Forecaster 1.2 Server Installation Guide 13 June 2014 CONTENTS Windows... 4 Linux... 4 Installation Procedures... 4 Windows Installation... 4 Linux portable Installation... 5

More information

Many packages require the additional devel packages. See below package. Install EPEL repo by down load the latest RPM for CentOS 6.

Many packages require the additional devel packages. See below package. Install EPEL repo by down load the latest RPM for CentOS 6. Guacamole source code compile and installation Tested on CentOS v6.5 and Guacamole v0.9.0 Guacamole Server Obtain Source Codes mkdir -p /usr/local/src/guacamole cd /usr/local/src/guacamole wget http://sourceforge.net/projects/guacamole/files/current/source/guacamole-client-0.9.0.tar.gz

More information

Monitoring Netflow with NFsen

Monitoring Netflow with NFsen Monitoring Netflow with NFsen Network Monitoring and Management Contents 1 Introduction 1 1.1 Goals................................. 1 1.2 Notes................................. 2 2 Configure Your Collector

More information

SETTING UP 3 WORDPRESS SITES ON APACHE AND UBUNTU BY RAMI

SETTING UP 3 WORDPRESS SITES ON APACHE AND UBUNTU BY RAMI SETTING UP 3 WORDPRESS SITES ON APACHE AND UBUNTU 14.04 BY RAMI SETTING UP 3 WORDPRESS SITES ON APACHE SERVER AND UBUNTU 14.04 THE SET UP This may be a little rough in some places because not all the terms

More information

IPv6 Sauron - Quick How To

IPv6 Sauron - Quick How To IPv6 Sauron - Quick How To Padrta, A., Kostěnec, M. September 22, 2014 Contents 1 Introduction 2 2 Deployment Scheme 2 2.1 Sauron Database Operations.............................. 2 2.1.1 Data Export...................................

More information

ISA Action 1.17: A Reusable INSPIRE Reference Platform (ARE3NA)

ISA Action 1.17: A Reusable INSPIRE Reference Platform (ARE3NA) ISA Action 1.17: A Reusable INSPIRE Reference Platform (ARE3NA) Authentication, Authorization and Accounting for Data and Services in EU Public Administrations D3.3c Deployment of a Shibboleth Service

More information

Sci-GaIA OAR Documentation. Release latest

Sci-GaIA OAR Documentation. Release latest Sci-GaIA OAR Documentation Release latest March 30, 2016 Contents 1 Virtual Machine 3 1.1 About................................................... 3 1.2 Deploying OAR.............................................

More information

Moab HPC Suite Basic Edition 7.1.4

Moab HPC Suite Basic Edition 7.1.4 Moab HPC Suite Basic Edition 7.1.4 Installation Guide March 2013 2013 Adaptive Computing Enterprises, Inc. All rights reserved. Distribution of this document for commercial purposes in either hard or soft

More information

Beetle Coin Masternodes Guide

Beetle Coin Masternodes Guide Beetle Coin Masternodes Guide Beetles, Indomitable Creatures. What you need: 1-More than 50,000 BEET. 2-One computer with Beetle-qt wallet installed.(put more than 50,000 BEET in this wallet) 3-One VPS.

More information

NA62 Electronic Logbook

NA62 Electronic Logbook NA62-12-06 1 NA62 Electronic Logbook Phil Rubin August 10, 2012 1 Introduction THE PSI ELOG [1] electronic logbook has been implemented for NA62. Its installation, configuration as of the date of this

More information

HOWTO-Suricata IDS on Debian 5.0 (Lenny)

HOWTO-Suricata IDS on Debian 5.0 (Lenny) HOWTO-Suricata IDS on Debian 5.0 (Lenny) Miguel Angel Cabrerizo, doncicuto@gmail.com v0.2, 8 July 2010 This is a howto for installing Suricata IDS on Debian 5.0. This howto will explain how to install

More information

Ticketing Service 1 Request Tracker (RT) Installation and Configuration

Ticketing Service 1 Request Tracker (RT) Installation and Configuration Ticketing Service 1 Request Tracker (RT) Installation and Configuration 1.1 Notes: This lab note is taken from NSRC Workshop LAB, therefore requested to change pcx.ws.nsrc.org with your domain. Commands

More information

Welcome to getting started with Ubuntu Server. This System Administrator Manual. guide to be simple to follow, with step by step instructions

Welcome to getting started with Ubuntu Server. This System Administrator Manual. guide to be simple to follow, with step by step instructions Welcome to getting started with Ubuntu 12.04 Server. This System Administrator Manual guide to be simple to follow, with step by step instructions with screenshots INDEX 1.Installation of Ubuntu 12.04

More information

CORSO MOC10215: Implementing and Managing Microsoft Server Virtualization. CEGEKA Education corsi di formazione professionale

CORSO MOC10215: Implementing and Managing Microsoft Server Virtualization. CEGEKA Education corsi di formazione professionale CORSO MOC10215: Implementing and Managing Microsoft Server Virtualization CEGEKA Education corsi di formazione professionale Implementing and Managing Microsoft Server Virtualization This five-day, instructor-led

More information

Useful Unix Commands Cheat Sheet

Useful Unix Commands Cheat Sheet Useful Unix Commands Cheat Sheet The Chinese University of Hong Kong SIGSC Training (Fall 2016) FILE AND DIRECTORY pwd Return path to current directory. ls List directories and files here. ls dir List

More information

Getting Started with MySQL

Getting Started with MySQL A P P E N D I X B Getting Started with MySQL M ysql is probably the most popular open source database. It is available for Linux and you can download and install it on your Linux machine. The package is

More information

VPN and GNU/Linux at the University of South Wales

VPN and GNU/Linux at the University of South Wales VPN and GNU/Linux at the University of South Wales These notes are designed to help staff and research students at the University of South Wales connect to their desktop machines using GNU/Linux. You will

More information

Ubuntu Practice and Configuration Post Installation Exercises interlab at AIT Bangkok, Thailand

Ubuntu Practice and Configuration Post Installation Exercises interlab at AIT Bangkok, Thailand Ubuntu Practice and Configuration Post Installation Exercises interlab at AIT Bangkok, Thailand 1. Get used to using sudo 2. Create an inst account 3. Learn how to install software 4. Update /etc/apt/sources.list

More information

GNU/Linux: An Essential Guide for Students Undertaking BLOSSOM

GNU/Linux: An Essential Guide for Students Undertaking BLOSSOM Copyright: The development of this document is funded by Higher Education of Academy. Permission is granted to copy, distribute and /or modify this document under a license compliant with the Creative

More information

Istruzioni passo passo per creare qualsiasi CUSTOM AWARD con BBLogger How to create step by step any CUSTOM AWARD by BBLogger

Istruzioni passo passo per creare qualsiasi CUSTOM AWARD con BBLogger How to create step by step any CUSTOM AWARD by BBLogger Istruzioni passo passo per creare qualsiasi CUSTOM AWARD con BBLogger How to create step by step any CUSTOM AWARD by BBLogger Aprire l applicazione e con il mouse andare sul pulsante custom award e cliccarci

More information

Red Hat Ceph Storage 3

Red Hat Ceph Storage 3 Red Hat Ceph Storage 3 Monitoring Ceph for Ubuntu with Nagios Monitoring Ceph for Ubuntu with Nagios Core. Last Updated: 2018-09-07 Red Hat Ceph Storage 3 Monitoring Ceph for Ubuntu with Nagios Monitoring

More information

VMware Monitoring Using Unnoc - Setup Instructions

VMware Monitoring Using Unnoc - Setup Instructions VMware Monitoring Using Unnoc - Setup Instructions Summary: This document explains how to setup an Unnoc server to monitor VMware vcenter Servers, ESX Servers, and Virtual Machines using the Perl VI SDK.

More information

Rover Documentation Tracing with Perf, Conversion to CTF, and analysis with TraceCompass

Rover Documentation Tracing with Perf, Conversion to CTF, and analysis with TraceCompass Rover Documentation Tracing with Perf, Conversion to CTF, and analysis with TraceCompass Version Implementation Supervision & revision June 7, 207 Mustafa O zceliko rs Robert Ho ttger mozcelikors@gmail.com

More information

How to Make a Raspberry Pi Web Server

How to Make a Raspberry Pi Web Server 2 Ways to Make a Raspberry Pi Web Server - wikihow http://www.wikihow.com/make-a-raspberry-pi-web-server of 5 08/5/203 :3 AM How to Make a Raspberry Pi Web Server If you are looking for a way to make a

More information

02. At the command prompt, type usermod -l bozo bozo2 and press Enter to change the login name for the user bozo2 back to bozo. => steps 03.

02. At the command prompt, type usermod -l bozo bozo2 and press Enter to change the login name for the user bozo2 back to bozo. => steps 03. Laboratory Exercises: ===================== Complete the following laboratory exercises. All steps are numbered but not every step includes a question. You only need to record answers for those steps that

More information

QPKG Debian6 V (Beta)

QPKG Debian6 V (Beta) QPKG Debian6 V 1.1.0 (Beta) Add a Debian chroot environment to your Qnap Available for : Arm Qnap except TS-x09 Intel Qnap First Print Please read post on forum for complete information Documentation version

More information

Open Call Deliverable OCJ-DS4.1.1 GÉANT-TrustBroker Implementation with Documentation (GÉANT-TrustBroker)

Open Call Deliverable OCJ-DS4.1.1 GÉANT-TrustBroker Implementation with Documentation (GÉANT-TrustBroker) 13-03-2015 Open Call Deliverable OCJ-DS4.1.1 GÉANT-TrustBroker Implementation with Documentation (GÉANT-TrustBroker) Open Call Deliverable OCJ-DS4.1.1 Grant Agreement No.: 605243 Activity: NA1 Task Item:

More information

Company Profile 2017

Company Profile 2017 Company Profile 2017 Industrial integrated IoT Solution Provider Leading network attached storage provider Unique Electronic Manufacturing Service Intelligent Medical System Provider Leading Automation

More information

Unix/Linux Operating System. Introduction to Computational Statistics STAT 598G, Fall 2011

Unix/Linux Operating System. Introduction to Computational Statistics STAT 598G, Fall 2011 Unix/Linux Operating System Introduction to Computational Statistics STAT 598G, Fall 2011 Sergey Kirshner Department of Statistics, Purdue University September 7, 2011 Sergey Kirshner (Purdue University)

More information

Automatic Creation of Define.xml for ADaM

Automatic Creation of Define.xml for ADaM Automatic Creation of Define.xml for ADaM Alessia Sacco, Statistical Programmer www.valos.it info@valos.it 1 Indice Define.xml Pinnacle 21 Community Valos ADaM Metadata 2 Define.xml Cos è: Case Report

More information

Exercises. Notes: Exercise 1. Install the Cacti Plugin Architecture (Cacti PA)

Exercises. Notes: Exercise 1. Install the Cacti Plugin Architecture (Cacti PA) AfNOG 2010 Network Management Tutorial Cacti Additional Exercises: - Plugin Architecture - Settings Plugin o Email to Request Tracker - Installing and Configuring the thold Plugin - CDEFs (Control DEFinitions)

More information

ZENworks Linux Management Version 6.5 Release Notes

ZENworks Linux Management Version 6.5 Release Notes ZENworks Linux Management Version 6.5 Release Notes These are the release notes for version 6.5 of ZENworks Linux Management, last updated on June 3 rd 2004. Contents 1. Platform Support 2. New features

More information

Managing Xen With Xen-Tools, Xen-Shell, And Argo

Managing Xen With Xen-Tools, Xen-Shell, And Argo By Falko Timme Published: 2006-10-21 20:35 Managing Xen With Xen-Tools, Xen-Shell, And Argo Version 1.0 Author: Falko Timme Last edited 10/21/2006 This guide describes how

More information

Raspberry Pi Tutorial 2

Raspberry Pi Tutorial 2 Raspberry Pi Tutorial 2 Date: 2/20/2014 Demonstrations: 1. John Mosser will demonstrate a motion sensor using a Raspberry Pi. 2. Alain Tschanz will demonstrate how to access and monitor your Raspberry

More information

COURIER IMAP + COURIERPASSD for Qmail

COURIER IMAP + COURIERPASSD for Qmail COURIER IMAP + COURIERPASSD for Qmail Courier-imap is (was, until now) the preferred IMAP server to install, because it has built in support for the vchkpw mail user setup that Vpopmail utilizes. (Not

More information

VMWare Tools Installation in IPBrick 5.3

VMWare Tools Installation in IPBrick 5.3 VMWare Tools Installation in IPBrick 5.3 iportalmais September 4, 2012 1 Procedure IMPORTANT NOTE: This procedure is ONLY for IPBrick 5.3! 0 - Copy the linux-headers file to the IPBrick. You may download

More information

Configure YAF on the Bivio 2000 Series

Configure YAF on the Bivio 2000 Series Configure YAF on the Bivio 2000 Series This wiki entry covers installing YAF on a Bivio 2000, collecting and transmitting the data to a SiLK Repository. The Bivio has up to six application processors which

More information

ITEC451 Network Design & Analysis Laboratory Guide: Appendix

ITEC451 Network Design & Analysis Laboratory Guide: Appendix Linux Guide Accessing the command prompt Before you can access the command prompt, you must login to the system. The administrative user on Linux machines is named root. On most Linux distributions, you

More information

MASTERNODE SETUP GUIDE

MASTERNODE SETUP GUIDE MASTERNODE SETUP GUIDE PREREQUISITES: -10,001 XCZM -A main computer with local wallet -Ubuntu 16.0.4 VPS server from vultr or any other reputable company. Open you Xavander Coin local wallet 1) Using the

More information

Demystifying Identity Federation. Colleen Murphy ~ cmurphy

Demystifying Identity Federation. Colleen Murphy ~ cmurphy Demystifying Identity Federation Colleen Murphy ~ cmurphy ~ @_colleenm About me Cloud developer at SUSE Keystone core reviewer 2 Overview What is identity federation? Vocabulary Types of federation in

More information

Managing Virtual Machines on Ubuntu KVM

Managing Virtual Machines on Ubuntu KVM Managing Virtual Machines on Ubuntu KVM This article is a dump of my experience with setting up a viable virtual machine management platform on an Ubuntu Hypervisor with following specs: OS: Ubuntu 14.04.2

More information

Linux Kung Fu. Ross Ventresca UBNetDef, Fall 2017

Linux Kung Fu. Ross Ventresca UBNetDef, Fall 2017 Linux Kung Fu Ross Ventresca UBNetDef, Fall 2017 GOTO: https://apps.ubnetdef.org/ What is Linux? Linux generally refers to a group of Unix-like free and open source operating system distributions built

More information

Quick Installation Guide. CereusReporting - Standard Edition

Quick Installation Guide. CereusReporting - Standard Edition Quick Installation Guide CereusReporting - Standard Edition Version 2.90 1 Introduction 1.1 About CereusReporting CereusReporting is a plugin designed to enhance the reporting functionality of the Cacti

More information

NICE Desktop Cloud Visualization. Administrator Guide

NICE Desktop Cloud Visualization. Administrator Guide NICE Desktop Cloud Visualization Administrator Guide NICE Desktop Cloud Visualization: Administrator Guide Copyright 2018 Amazon Web Services, Inc. and/or its affiliates. All rights reserved. Amazon's

More information

Communications Library Manual

Communications Library Manual Delta Tau Power PMAC Communications Library Manual Issue: Date: 1.0 10 th September 2014 NAME DATE SIGNATURE Prepared by Philip Taylor, Observatory Sciences Ltd. 21 March 2013 Andrew Wilson, Observatory

More information

Software Install Guides. Release 2.6.0

Software Install Guides. Release 2.6.0 Software Install Guides Release 2.6.0 November 20, 2017 Debian-Based Documentation 1 Ubuntu Specific 3 1.1 WebApps................................................. 3 1.1.1 Sonarr Installation [HTPC-Sonarr]...............................

More information

Linux e Bash. Matteo Duranti. (cfr.

Linux e Bash. Matteo Duranti. (cfr. Linux e Bash Matteo Duranti matteo.duranti@pg.infn.it (cfr. https://www.uio.no/studier/emner/matnat/ifi/inf3331/h12/bash.pdf) Linux time serve per mostrare le timing statistics di un altro comando/ programma

More information