Installing OSG in a VirtualBox Machine

Size: px
Start display at page:

Download "Installing OSG in a VirtualBox Machine"

Transcription

1 SPRACE-Brazil December 10, 2008

2 VirtualBox Using SUN xvm VirtualBox version Guest Operational system installed using CentOS-5.2-x86_64-bin-DVD.iso 12 GB image called testserver1 To use only your terminal, using ssh: # set the guest port (port 22 for sshd) VBoxManage setextradata "testserver1"\ "VBoxInternal/Devices/pcnet/0/LUN#0/Config/sshd/GuestPort" 22 # set the host port (the port where the VirtualBox-process listens on behalf of the VM) VBoxManage setextradata "testserver1"\ "VBoxInternal/Devices/pcnet/0/LUN#0/Config/sshd/HostPort" 2222 # set the protocol VBoxManage setextradata "testserver1"\ "VBoxInternal/Devices/pcnet/0/LUN#0/Config/sshd/Protocol" TCP adding a secondary network interface: VBoxManage modifyvm "testserver1" -nic2 intnet VBoxManage modifyvm "testserver1" -intnet2 intnet you can boot and access your virtual machine in text mode with: VBoxVRDP -startvm "testserver1"& ssh -p 2222 root@localhost

3 Network on VirtualBox Some words about networking, what was customized: ~]# more /etc/hosts localhost.localdomain localhost ::1 localhost6.localdomain6 localhost testserver1.sprace.org.br ~]# more /etc/sysconfig/network NETWORKING=yes NETWORKING_IPV6=no HOSTNAME=testserver1.sprace.org.br the secondary network card: ~]# more /etc/sysconfig/network-scripts/ifcfg-eth1 DEVICE=eth1 ONBOOT=yes BOOTPROTO=none NETMASK= IPADDR= GATEWAY= TYPE=Ethernet IPV6INIT=no PEERDNS=yes USERCTL=no

4 Pacman and Condor Pacman: To download and install all VDT components you will need it ~]# cd /opt/ opt]# wget \ [root@testserver1 opt]# tar --no-same-owner -xzvf pacman-3.26.tar.gz [root@testserver1 opt]# cd pacman-3.26 [root@testserver1 pacman-3.26]# source setup.sh Condor: We installed it detached from VDT in order to upgrade it. [root@testserver1 pacman-3.26]# cd /opt [root@testserver1 opt]# mkdir condor [root@testserver1 opt]# cd /tmp/ [root@testserver1 tmp]# tar -xvzf condor linux-x86_64-rhel5-dynamic.tar.gz [root@testserver1 tmp]# cd condor [root@testserver1 condor-7.0.5]# groupadd condor [root@testserver1 condor-7.0.5]# adduser condor -g condor -d /home/condor [root@testserver1 condor-7.0.5]#./condor_configure --install --maybe-daemon-owner \ --make-personal-condor --install-log /opt/condor/post_install --install-dir /opt/condor/

5 Condor Configuration Some work on condor configuration: condor-7.0.5]# vim /opt/condor/etc/condor_config RELEASE_DIR = /opt/condor LOCAL_DIR = $(RELEASE_DIR)/hosts/$(HOSTNAME) LOCAL_CONFIG_FILE = $(LOCAL_DIR)/condor_config.local CONDOR_HOST = FILESYSTEM_DOMAIN = grid COLLECTOR_NAME = GRIDUNESP HOSTALLOW_WRITE = *.sprace.org.br *.grid [root@testserver1 condor-7.0.5]# cd /opt/condor/ [root@testserver1 condor]# mkdir hosts [root@testserver1 condor]# mkdir hosts/ hostname -s [root@testserver1 condor]# mkdir hosts/testserver1/{log,execute,spool} [root@testserver1 condor]# vim hosts/testserver1/condor_config.local NETWORK_INTERFACE= DAEMON_LIST = MASTER, STARTD, SCHEDD, COLLECTOR, NEGOTIATOR [root@testserver1 condor]# chown condor: hosts/testserver1/* To each node repeat the last five steps, but put only the following line in their condor_config.local: NETWORK_INTERFACE= XX where XX is the internal IP address.

6 Condor Initialization Now prepair the initilization service, using this script: condor]# vim /etc/init.d/condor # chkconfig: # description: Condor batch system ### BEGIN INIT INFO # Provides: condor # Required-Start: $network # Required-Stop: # Default-Start: # Default-Stop: # Description: Condor batch system ### END INIT INFO # Determine if we re superuser case id in "uid=0("* ) vdt_is_superuser=y ;; * ) vdt_is_superuser=n ;; esac CONDOR_SBIN=/opt/condor/sbin MASTER=$CONDOR_SBIN/condor_master CONDOR_OFF=$CONDOR_SBIN/condor_off PS="/bin/ps auwx" case $1 in start ) if [ -x $MASTER ]; then echo "Starting up Condor" $MASTER

7 Condor Initialization else echo "$MASTER is not executable. exit 1 fi ;; Skipping Condor startup." stop ) pid= $PS grep $MASTER grep -v grep awk {print $2} if [ -n "$pid" ]; then echo "Shutting down Condor" $CONDOR_OFF -master else echo "Condor not running" fi ;; *) echo "Usage: condor {start stop}" ;; esac and add it in your initialization sequence: [root@testserver1 condor]# chmod a+x /etc/init.d/condor; /sbin/chkconfig --add condor

8 Condor Initialization Our test server is a standalone machine, so it will authenticate by itself using GUMS [3]. We also will install the OSG-CE core packages in the following lines: [root@testserver1 condor]# cd /shared [root@testserver1 shared]# mkdir osg [root@testserver1 shared]# cd /shared/osg [root@testserver1 osg-1.0.0]# export VDTSETUP_CONDOR_LOCATION=/opt/condor/ [root@testserver1 osg-1.0.0]# pacman -get OSG:ce [root@testserver1 osg-1.0.0]#source setup.sh [root@testserver1 osg-1.0.0]#pacman -get OSG:ManagedFork [root@testserver1 osg-1.0.0]# $VDT_LOCATION/vdt/setup/configure_globus_gatekeeper\ --managed-fork n --server y [root@testserver1 osg-1.0.0]#pacman -get OSG:gums our computer element alse will deal with managed fork jobs!

9 Obtain Certificates for our Machines In order to request a certificate you need your.globus in your user directory. Using the new procedure you can request it automaticaly using grid-certadmin [1, 2] (please read here [1] before): [root@testserver1 osg-1.0.0]# su - mdias [mdias@testserver1 mdias]$ mkdir.globus [mdias@testserver1 mdias]$ cd.globus [mdias@testserver1.globus]$ scp shell.ift.unesp.br:/users/mdias/user*.pem. [mdias@testserver1.globus]$ source /share/osg-1.0.0/setup.sh [mdias@testserver1.globus]$ su - mdias [mdias@testserver1 mdias]$ cert-gridadmin -host testserver1.sprace.org.br \ -prefix testserver1 ca doegrids -affiliation osg -vo dosar -show \ - mdias@if.unesp.br [mdias@testserver1 mdias]$ exit [root@testserver1 ~]#mv /home/mdias/testserver1cert.pem /etc/grid-security/hostcert.pem [root@testserver1 ~]#mv /home/mdias/testserver1key.pem /etc/grid-security/hostkey.pem [root@testserver1 ~]#chown root: /etc/grid-security/host* [root@testserver1 ~]#chmod 400 /etc/grid-security/hostkey.pem [root@testserver1 ~]#chmod 444 /etc/grid-security/hostcert.pem [root@testserver1 ~]#mkdir /etc/grid-security/http

10 Obtain Certificates for Services Requesting apache certificate. The procedure is almost the same described to request one for a machine: [mdias@testserver1 ~]$ cert-gridadmin -host testserver1.sprace.org.br -service http\ -prefix testserver1 ca doegrids -affiliation osg -vo dosar -show \ - mdias@ift.unesp.br [mdias@testserver1 ~]$ su [root@testserver1 mdias]# mkdir /etc/grid-security/http [root@testserver1 mdias]# mv testserver1cert.pem /etc/grid-security/http/httpcert.pem [root@testserver1 mdias]# mv testserver1key.pem /etc/grid-security/http/httpkey.pem [root@testserver1 mdias]# chmod 444 /etc/grid-security/http/httpcert.pem [root@testserver1 mdias]# chmod 400 /etc/grid-security/http/httpkey.pem [root@testserver1 mdias]# chown -R daemon.daemon /etc/grid-security/http

11 Install CA-Certificates In OSG we don t have this package installed by default: [root@testserver1 mdias]# cd /shared/osg-1.0.0/ [root@testserver1 osg-1.0.0]# vim $VDT_LOCATION/vdt/etc/vdt-update-certs.conf Uncomment the following line to get the CAs from the OSG cacerts_url = [root@testserver1 osg-1.0.0]#. $VDT_LOCATION/vdt-questions.sh; [root@testserver1 osg-1.0.0]# $VDT_LOCATION/vdt/sbin/vdt-setup-ca-certificates [root@testserver1 osg-1.0.0]# vdt-control --enable vdt-update-certs [root@testserver1 osg-1.0.0]# vdt-control --on vdt-update-certs [root@testserver1 osg-1.0.0]# cd /etc/grid-security/ [root@testserver1 grid-security]# ln -s $VDT_LOCATION/globus/TRUSTED_CA certificates also we create a symbolic link to our certificates.

12 GUMS server configuration GUMS:We are ready to configurate our GUMS server now osg-1.0.0]# $VDT_LOCATION/post-install/mysql start osg-1.0.0]# $VDT_LOCATION/post-install/apache start osg-1.0.0]# $VDT_LOCATION/post-install/tomcat-55 start osg-1.0.0]# $VDT_LOCATION/tomcat/v55/webapps/gums/WEB-INF/scripts/addMySQLAdmin "/DC=org/DC=doegrids/OU=People/CN= " osg-1.0.0]# cd $VDT_LOCATION/tomcat/v55/webapps/gums/WEB-INF/scripts scripts]#./gums-create-config --osg-template The last step will download a template used in OSG. Now, point your browser to Remark: you can use your guest operational sistem to do this task, if you configure it as follows: VBoxManage setextradata "testserver1"\ "VBoxInternal/Devices/pcnet/0/LUN#0/Config/osg/GuestPort" 8443 VBoxManage setextradata "testserver1" \ "VBoxInternal/Devices/pcnet/0/LUN#0/Config/osg/HostPort" 8443 VBoxManage setextradata "testserver1" \ "VBoxInternal/Devices/pcnet/0/LUN#0/Config/osg/Protocol" TCP

13 GUMS server configuration Make sure that your certificate is loaded into your browser: but I have some remarks related to my particular account: 1. In order to my DN be mapped to a local account, it was necessary to edit this file: [root@testserver1 osg-1.0.0]# vim\ $VDT_LOCATION/tomcat/v55/webapps/gums/WEB-INF/config/gums.config and change the VOMS server for CMS to this one: baseurl= 2. CMS use pool accounts. A DN is mapped to a fixed user. So you will need to create them first, in Manage Pool Accounts :

14 GUMS server configuration Go to Update VO Members and click on it: I only created the accounted necessary to my DN be mapped checking it with: [root@testserver1 ~]# $VDT_LOCATION/gums/scripts/gums-host generategridmapfile \ /DC=org/DC=doegrids/OU=Services/CN=testserver1.sprace.org.br grep

15 Looking deep on OSG configuration Post-Install Configuration: Read carefully your $VDT_LOCATION/post-install/README. Lets start to follow it: Globus-Base-WS-Essentials and Globus-Base-WSGRAM-Server: scripts]# cd $VDT_LOCATION osg-1.0.0]#cd /etc/grid-security/ grid-security]# cp hostkey.pem containerkey.pem grid-security]# cp hostcert.pem containercert.pem grid-security]# chown daemon: containerkey.pem containercert.pem grid-security]# su - [root@testserver1 ~]# visudo Runas_Alias GLOBUSUSERS = ALL,!root daemon ALL=(GLOBUSUSERS) \ NOPASSWD: /shared/osg-1.0.0/globus/libexec/globus-gridmap-and-execute \ -g /etc/grid-security/grid-mapfile \ /shared/osg-1.0.0/globus/libexec/globus-job-manager-script.pl * daemon ALL=(GLOBUSUSERS) \ NOPASSWD: /shared/osg-1.0.0/globus/libexec/globus-gridmap-and-execute \ -g /etc/grid-security/grid-mapfile \ /shared/osg-1.0.0/globus/libexec/globus-gram-local-proxy-tool * [root@testserver1 ~]# cd $VDT_LOCATION

16 PRIMA: osg-1.0.0]# cp /shared/osg-1.0.0/post-install/gsi-authz.conf \ /etc/grid-security/. [root@testserver1 osg-1.0.0]# cp /shared/osg-1.0.0/post-install/prima-authz.conf \ /etc/grid-security/. GUMS-Client [root@testserver1 osg-1.0.0]#vdt-control --enable gums-host-cron [root@testserver1 osg-1.0.0]#vdt-control --on gums-host-cron PRIMA-GT4 [root@testserver1 osg-1.0.0]#$vdt_location/vdt/setup/configure_prima_gt4\ --enable --gums-server testserver1.sprace.org.br Condor-cron is used to deal with OSG-RSV probes. [root@testserver1 osg-1.0.0]# vim $VDT_LOCATION/condor-cron/etc/condor_config RELEASE_DIR = /shared/osg-1.0.0/condor-cron CONDOR_HOST = LOCAL_DIR = $(RELEASE_DIR)/local.testserver1 UID_DOMAIN = grid FILESYSTEM_DOMAIN = grid COLLECTOR_NAME = GRIDUNESP HOSTALLOW_WRITE = testserver1.sprace.org.br,*.grid [root@testserver1 osg-1.0.0]#more /etc/passwd grep condor cut -d : -f :501 [root@testserver1 osg-1.0.0]# vim $VDT_LOCATION/condor-cron/local.testserver1/condor_config.local CONDOR_HOST = #UID_DOMAIN = sprace.org.br #FILESYSTEM_DOMAIN = sprace.org.br #COLLECTOR_NAME = Personal Condor at testserver1.sprace.org.br CONDOR_IDS = #LOCK =

17 More Services to configure... For this example, we also comment all security setup section in Condor-cron config file. Monalisa: You have to complete your Monalisa monitoring configuration: osg-1.0.0]# vim $VDT_LOCATION/MonaLisa/Service/VDTFarm/ml.properties MonaLisa.Location=Sao Paulo MonaLisa.Country=Brazil MonaLisa.LAT= MonaLisa.LONG= lia.monitor.group=osg osg-1.0.0]# vim $VDT_LOCATION/MonaLisa/Service/CMD/ml_env JAVA_HOME=/shared/osg-1.0.0/jdk1.5 FARM_NAME=GRIDUNESP osg-1.0.0]# vdt-register-service --name MLD --enable Gratia-Metric-Probe osg-1.0.0]#$vdt_location/vdt/setup/configure_gratia --probe metric \ --site-name GRIDUNESP CEMon [root@testserver1 osg-1.0.0]# $VDT_LOCATION/vdt/setup/configure_cemon\ --consumer --topic OSG_CE

18 OSG directories Directories:We will need to allocate grid data, applications, etc [4]. 1. OSG_GRID : Directory where the worker node client (wn-client) or packages to use the grid are installed 2. OSG_APP : Directory available to install job specific applications and binaries 3. OSG_DATA:Directory available for jobs to store data and to stage data in and out, this directory is shared across the cluster 4. OSG_WN_TMP:Directory available for scratch space for worker nodes. This directory is local to each node. 5. OSG_SITE_READ: Directory available for staging in of files. Must be readable by all worker nodes. 6. OSG_SITE_WRITE: Directory available for staging out of files. Must be writable by all worker nodes.

19 OSG directories So, lets do it! osg-1.0.0]# mkdir /shared/osg_app osg-1.0.0]# mkdir /shared/osg_app/{app,data,read,write} osg-1.0.0]# chmod 1777 /shared/osg_app/* Now, we will retrieve some information from GUMS ( again) in order create our osg-user-vo-map.txt and copy and paste into this file osg-1.0.0]# vim $VDT_LOCATION/monitoring/osg-user-vo-map.txt

20 Configure OSG Attributes OSG Attributes:The major configuration is done in config.ini osg-1.0.0]# cp $VDT_LOCATION/monitoring/simple-config.ini $VDT_LOCATION/monitoring/conf osg-1.0.0]# vim $VDT_LOCATION/monitoring/config.ini localhost = testserver1.sprace.org.br admin_ = mafd@mail.cern.ch osg_location = /share/osg site_name = GRIDUNESP sponsor = osg contact = city = Sao Paulo country = Brazil longitude = latitude = [PBS] enabled = False [Condor] enabled = True home = /opt/condor wsgram = True condor_config = /opt/condor/etc/condor_config [SGE] enabled = False [LSF] enabled = False [FBS] enabled = False

21 Configure OSG Attributes [Managed Fork] enabled = True condor_location = /opt/condor condor_config = /opt/condor/etc/condor_config [Storage] grid_dir = /shared/osg-wn-client app_dir = /shared/osg_app/app data_dir = /shared/osg_app/data worker_node_temp = /scratch/osg site_read = /shared/osg_app/read site_write = /shared/osg_app/write se_available = True default_se = testserver1.sprace.org.br [GIP] batch = condor gsiftp_path = /shared/osg_app/data [RSV] enabled = True rsv_user = mdias enable_ce_probes = True ce_hosts = testserver1.sprace.org.br enable_gridftp_probes = True gridftp_hosts = testserver1.sprace.org.br gridftp_dir = /shared/osg_app/data enable_srm_probes = True srm_hosts = testserver1.sprace.org.br srm_dir = /pnfs/sprace.org.br/data/mdias proxy_file = /tmp/x509up_u500 srm_dir = /pnfs/sprace.org.br/data/mdias [MonaLisa] enabled = True [root@testserver1 osg-1.0.0]# cd monitoring/

22 Configure OSG Attributes Remark: The options srm_hosts = testserver1.sprace.org.br srm_dir = /pnfs/sprace.org.br/data/mdias are not in the original file. Verify and correct errors in your config.ini using: [root@testserver1 monitoring]#./configure-osg.py -v Correct these errors. Running it for real now [root@testserver1 monitoring]# ${VDT_LOCATION}/monitoring/configure-osg.py -c -f config.ini [root@testserver1 monitoring]# cd.. Don t forget to turn off mysql, apache and tomcat... [root@testserver1 osg-1.0.0]# $VDT_LOCATION/post-install/apache stop [root@testserver1 osg-1.0.0]# $VDT_LOCATION/post-install/tomcat-55 stop [root@testserver1 osg-1.0.0]# $VDT_LOCATION/post-install/mysql stop and finish it (or almost...) [root@testserver1 osg-1.0.0]# vdt-control --on --force and perform the crucial test [root@testserver1 osg-1.0.0]# $VDT_LOCATION/verify/site_verify.pl

23 References [1] requesting GridAdmin priv [2] [3] [4] Related Parameters

Globus Toolkit Manoj Soni SENG, CDAC. 20 th & 21 th Nov 2008 GGOA Workshop 08 Bangalore

Globus Toolkit Manoj Soni SENG, CDAC. 20 th & 21 th Nov 2008 GGOA Workshop 08 Bangalore Globus Toolkit 4.0.7 Manoj Soni SENG, CDAC 1 What is Globus Toolkit? The Globus Toolkit is an open source software toolkit used for building Grid systems and applications. It is being developed by the

More information

glideinwms Frontend Installation

glideinwms Frontend Installation glideinwms Training @ UCSD glideinwms Frontend Installation Part 1 Condor Installation by Igor Sfiligoi (UCSD) UCSD Jan 17th 2012 Condor Install 1 Overview Introduction Planning and Common setup Central

More information

OSG Lessons Learned and Best Practices. Steven Timm, Fermilab OSG Consortium August 21, 2006 Site and Fabric Parallel Session

OSG Lessons Learned and Best Practices. Steven Timm, Fermilab OSG Consortium August 21, 2006 Site and Fabric Parallel Session OSG Lessons Learned and Best Practices Steven Timm, Fermilab OSG Consortium August 21, 2006 Site and Fabric Parallel Session Introduction Ziggy wants his supper at 5:30 PM Users submit most jobs at 4:59

More information

osg roll: Users Guide Edition

osg roll: Users Guide Edition osg roll: Users Guide 3.1.40 Edition osg roll: Users Guide : 3.1.40 Edition Published Oct 27 2014 Copyright 2014 The copyright holder, and UC Regents Table of Contents Preface... v 1. Overview... 1 2.

More information

Deploying Rubrik Datos IO to Protect MongoDB Database on GCP

Deploying Rubrik Datos IO to Protect MongoDB Database on GCP DEPLOYMENT GUIDE Deploying Rubrik Datos IO to Protect MongoDB Database on GCP TABLE OF CONTENTS INTRODUCTION... 1 OBJECTIVES... 1 COSTS... 2 BEFORE YOU BEGIN... 2 PROVISIONING YOUR INFRASTRUCTURE FOR THE

More information

RG-MACC_2.0 Installation Manual

RG-MACC_2.0 Installation Manual RG-MACC_2.0 Installation Manual Ruijie Networks Co., Ltd all rights reserved 1 Copyright Clarify Copyright ownership belongs to Ruijie, shall not be reproduced, copied, or used in other ways without permission.

More information

VM Service. A Benchmark suite for cloud environment USER S MANUAL

VM Service. A Benchmark suite for cloud environment USER S MANUAL VM Service A Benchmark suite for cloud environment USER S MANUAL May 27th 2013 Revision Sheet Release No. Date Revision Description Rev. 1.0 27/05/2013 VM Service v1.0 1 Content Revision Sheet... 1 Content...

More information

LHC COMPUTING GRID INSTALLING THE RELEASE. Document identifier: Date: April 6, Document status:

LHC COMPUTING GRID INSTALLING THE RELEASE. Document identifier: Date: April 6, Document status: LHC COMPUTING GRID INSTALLING THE RELEASE Document identifier: EDMS id: Version: n/a v2.4.0 Date: April 6, 2005 Section: Document status: gis final Author(s): GRID Deployment Group ()

More information

glideinwms architecture by Igor Sfiligoi, Jeff Dost (UCSD)

glideinwms architecture by Igor Sfiligoi, Jeff Dost (UCSD) glideinwms architecture by Igor Sfiligoi, Jeff Dost (UCSD) Outline A high level overview of the glideinwms Description of the components 2 glideinwms from 10k feet 3 Refresher - HTCondor A Condor pool

More information

MyProxy Server Installation

MyProxy Server Installation MyProxy Server Installation Emidio Giorgio INFN First Latin American Workshop for Grid Administrators 21-25 November 2005 www.eu-egee.org Outline Why MyProxy? Proxy Renewal mechanism. Remote authentication

More information

CLU S TER COMP U TI N G

CLU S TER COMP U TI N G CLU S TER COMP U TI N G Undergraduate Research Report Instructor: Marcus Hohlmann Students: Jennifer Helsby Rafael David Pena With the help of: Jorge Rodriguez, UF Fall 2006 Undergraduate Research Report:

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

Oracle Communications WebRTC Session Controller. Preparation Guide

Oracle Communications WebRTC Session Controller. Preparation Guide Oracle Communications WebRTC Session Controller Preparation Guide Edition 1.0 February 2015 Copyright 2015, Oracle and/or its affiliates. All rights reserved. Disclaimer This document contains proprietary

More information

glideinwms Training Glidein Internals How they work and why by Igor Sfiligoi, Jeff Dost (UCSD) glideinwms Training Glidein internals 1

glideinwms Training Glidein Internals How they work and why by Igor Sfiligoi, Jeff Dost (UCSD) glideinwms Training Glidein internals 1 Glidein Internals How they work and why by Igor Sfiligoi, Jeff Dost (UCSD) Glidein internals 1 Refresher glidein_startup the glidein_startup script configures and starts Condor on the worker node Glidein

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

Cluster Computing Spring 2004 Paul A. Farrell 4/25/2006. Dept of Computer Science Kent State University 1. Configuring & Tuning Cluster Networks

Cluster Computing Spring 2004 Paul A. Farrell 4/25/2006. Dept of Computer Science Kent State University 1. Configuring & Tuning Cluster Networks Configuring & Tuning Cluster Networks Node connectivity Node visibility Networking Services Security Performance Enhancement Network Designs Impact of Network Design Security from outside attack Usability

More information

ARCHER Data Services Service Layer

ARCHER Data Services Service Layer ARCHER 1.0 ARCHER Data Services Service Layer System Administrator s Guide ICAT & MCAText Installation Configuration Maintenance ARCHER Data Services Service Layer... 1 About ARCHER Data Services Service

More information

Introduction to Grid Computing!

Introduction to Grid Computing! Introduction to Grid Computing! Rocks-A-Palooza II! Lab Session! 2006 UC Regents! 1! Using The Grid Roll! Option 1! Reinstall! frontend upgrade! Option 2! Use kroll! 2006 UC Regents! 2! Option 1: Re-Installation

More information

Oracle Communication WebRTC Session Controller. Preparation Guide

Oracle Communication WebRTC Session Controller. Preparation Guide Oracle Communication WebRTC Session Controller Preparation Guide Edition 1.0 January 2014 Disclaimer This document contains proprietary information and is protected by copyright and other intellectual

More information

Certificate Authorities: Information and Usage

Certificate Authorities: Information and Usage Certificate Authorities: Information and Usage Marcus Christie December 16, 2003 1 Introduction It is assumed that the reader knows, basically, what a certificate authority (CA) is. This document describes

More information

Cluster Computing Spring 2004 Paul A. Farrell

Cluster Computing Spring 2004 Paul A. Farrell Configuring & Tuning Cluster Networks Node connectivity Node visibility Networking Services Security Performance Enhancement Internet Protocol Stack and Parameters NIC/OS Driver Maximum Amount of Data

More information

RG-MACC-BASE_v2.01. Installation Guide

RG-MACC-BASE_v2.01. Installation Guide RG-MACC-BASE_v2.01 Preface Thank you for using our products. Audience This manual is intended for: Network engineers Technical support and servicing engineers Network administrators Symbols Important information.

More information

Look What I Can Do: Unorthodox Uses of HTCondor in the Open Science Grid

Look What I Can Do: Unorthodox Uses of HTCondor in the Open Science Grid Look What I Can Do: Unorthodox Uses of HTCondor in the Open Science Grid Mátyás Selmeci Open Science Grid Software Team / Center for High- Throughput Computing HTCondor Week 2015 More Than a Batch System

More information

Introducing the HTCondor-CE

Introducing the HTCondor-CE Introducing the HTCondor-CE CHEP 2015 Presented by Edgar Fajardo 1 Introduction In summer 2012, OSG performed an internal review of major software components, looking for strategic weaknesses. One highlighted

More information

Setting up a virtual testbed for ESGF

Setting up a virtual testbed for ESGF Setting up a virtual testbed for ESGF Author: Prashanth Dwarakanath, NSC, Sweden Version: 1.04 October 23, 2018 i 1 About this document............................... 1 2 Prerequisites....................................

More information

History of SURAgrid Deployment

History of SURAgrid Deployment All Hands Meeting: May 20, 2013 History of SURAgrid Deployment Steve Johnson Texas A&M University Copyright 2013, Steve Johnson, All Rights Reserved. Original Deployment Each job would send entire R binary

More information

Computer Systems and Architecture

Computer Systems and Architecture Computer Systems and Architecture Stephen Pauwels Computer Systems Academic Year 2018-2019 Overview of the Semester UNIX Introductie Regular Expressions Scripting Data Representation Integers, Fixed point,

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

Oracle Communication Policy Controller. Lab Environment Preparation

Oracle Communication Policy Controller. Lab Environment Preparation Oracle Communication Policy Controller Edition 1.0 April 2013 Copyright 2013, Oracle and/or its affiliates. All rights reserved. Disclaimer This document contains proprietary information and is protected

More information

OpenNebula 4.4 Quickstart CentOS 6 and KVM. OpenNebula Project

OpenNebula 4.4 Quickstart CentOS 6 and KVM. OpenNebula Project OpenNebula 4.4 Quickstart CentOS 6 and KVM OpenNebula Project February 05, 2014 Copyright 2013 OpenNebula Project, C12G Labs. All rights reserved. Although the information in this document has been carefully

More information

Quick Note 52. Connecting to Digi Remote Manager Through Web Proxy. Digi Product Management February 2017

Quick Note 52. Connecting to Digi Remote Manager Through Web Proxy. Digi Product Management February 2017 Quick Note 52 Connecting to Digi Remote Manager Through Web Proxy Digi Product Management February 2017 Contents 1 Document Version... 3 2 Abstract... 3 3 Introduction... 3 4 Web Proxy Configuration...

More information

EUROPEAN MIDDLEWARE INITIATIVE

EUROPEAN MIDDLEWARE INITIATIVE EUROPEAN MIDDLEWARE INITIATIVE VOMS CORE AND WMS SECURITY ASSESSMENT EMI DOCUMENT Document identifier: EMI-DOC-SA2- VOMS_WMS_Security_Assessment_v1.0.doc Activity: Lead Partner: Document status: Document

More information

ARCHER Collaborative Workspace

ARCHER Collaborative Workspace ARCHER 1.0 ARCHER Collaborative Workspace System Administrator s Guide Installation Configuration Maintenance Overview... 3 Components... 3 Configuration... 5 Pre-requisites... 5 Installing Archer Collaborative

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

Article Number: 549 Rating: Unrated Last Updated: Tue, May 30, 2017 at 11:02 AM

Article Number: 549 Rating: Unrated Last Updated: Tue, May 30, 2017 at 11:02 AM Configuring Your Server With A Static IP Address Article Number: 549 Rating: Unrated Last Updated: Tue, May 30, 2017 at 11:02 AM O ve r vie w This KB article shows you how to configure your Nagios server

More information

D, E I, J, K. Generalized Regular Expression Parser (GREP), 110 Generic 105 key (Intl) PC, 29 git command, 242

D, E I, J, K. Generalized Regular Expression Parser (GREP), 110 Generic 105 key (Intl) PC, 29 git command, 242 Index A Advanced Linux Sound Architecture (ALSA) device, 214 Airplay amixer command, 252 boot, 255 build script, 254 Build.PL script, 254 central controlling system, 251 lsmod command, 252 make command,

More information

Newsreader virtual machines Technical Report NWR

Newsreader virtual machines Technical Report NWR Newsreader virtual machines Technical Report NWR-2014-4 Version FINAL Aitor Soroa 1, Enrique Fernández 2 1 University of Basque Country Donostia, Basque Country a.soroa@ehu.es 2 University of Basque Country

More information

Disaster Recovery Workflow

Disaster Recovery Workflow CHAPTER 4 InMage CDP starts with the FX/VX agent, also known as "DataTap," which is used to monitor all writes to disk. A small amount of memory on the source machine is reserved by the DataTap (250MB).

More information

Configure HOSTNAME by adding the hostname to the file /etc/sysconfig/network. Do the same to all the all nodes.

Configure HOSTNAME by adding the hostname to the file /etc/sysconfig/network. Do the same to all the all nodes. Network setup As the root user execute the command "ifconfig" on each host. Take a note of ipaddress's of all machines I have a home LAN so my addresses are class C which might be in the format 192.168.192.x.

More information

30 Nov Dec Advanced School in High Performance and GRID Computing Concepts and Applications, ICTP, Trieste, Italy

30 Nov Dec Advanced School in High Performance and GRID Computing Concepts and Applications, ICTP, Trieste, Italy Advanced School in High Performance and GRID Computing Concepts and Applications, ICTP, Trieste, Italy Why the Grid? Science is becoming increasingly digital and needs to deal with increasing amounts of

More information

OPERATING SYSTEMS LINUX

OPERATING SYSTEMS LINUX OPERATING SYSTEMS LINUX Božo Krstajić, PhD, University of Montenegro Podgorica bozok@cg.ac.yu Process management Linux operating systems work with processes. Basically a process consists of program code

More information

Red Hat.Actualtests.EX200.v by.Dixon.22q. Exam Code: EX200. Exam Name: Red Hat Certified System Administrator (RHCSA) Exam

Red Hat.Actualtests.EX200.v by.Dixon.22q. Exam Code: EX200. Exam Name: Red Hat Certified System Administrator (RHCSA) Exam Red Hat.Actualtests.EX200.v2014-12-02.by.Dixon.22q Number: EX200 Passing Score: 800 Time Limit: 120 min File Version: 14.5 http://www.gratisexam.com/ Exam Code: EX200 Exam Name: Red Hat Certified System

More information

The Microdrive and CF card are electrically compatible this means that a CF card reader can be used to program a Microdrive.

The Microdrive and CF card are electrically compatible this means that a CF card reader can be used to program a Microdrive. 1 This guide is for users wishing to use an embedded system or appliance, such as an Alix board, HP Thin Client (we strongly recommend and have had tremendous success with the HP T5710) with ICOM repeater

More information

Zenoss Core Upgrade Guide

Zenoss Core Upgrade Guide Release 5.1.9 Zenoss, Inc. www.zenoss.com Copyright 2016 Zenoss, Inc. All rights reserved. Zenoss and the Zenoss logo are trademarks or registered trademarks of Zenoss, Inc., in the United States and other

More information

How to monitor RedHat Enterprise Linux 5 or 6 using Microsoft System Center Operations Manager (SCOM) 2012 SP1 - Part 1

How to monitor RedHat Enterprise Linux 5 or 6 using Microsoft System Center Operations Manager (SCOM) 2012 SP1 - Part 1 How to monitor RedHat Enterprise Linux 5 or 6 using Microsoft System Center Operations Manager (SCOM) 2012 SP1 - Part 1 Modifications of the Linux OS and SCOM It's really a mess to get a running configuration

More information

OpenNebula 4.8 Quickstart CentOS 6 and Xen

OpenNebula 4.8 Quickstart CentOS 6 and Xen OpenNebula 4.8 Quickstart CentOS 6 and Xen Release 4.8 OpenNebula Project August 12, 2014 CONTENTS 1 Package Layout 3 2 Step 1. Installation in the Frontend 5 2.1 1.1. Install the repo............................................

More information

Configure HOSTNAME by adding the hostname to the file /etc/sysconfig/network. Do the same to all the other 3(4) nodes.

Configure HOSTNAME by adding the hostname to the file /etc/sysconfig/network. Do the same to all the other 3(4) nodes. Network setup As the root user execute the command "ifconfig" on each host. Take a note of ipaddress's of all machines I have a home LAN so my addresses are class C which might be in the format 192.168.192.x.

More information

Agent Teamwork Research Assistant. Progress Report. Prepared by Solomon Lane

Agent Teamwork Research Assistant. Progress Report. Prepared by Solomon Lane Agent Teamwork Research Assistant Progress Report Prepared by Solomon Lane December 2006 Introduction... 3 Environment Overview... 3 Globus Grid...3 PBS Clusters... 3 Grid/Cluster Integration... 4 MPICH-G2...

More information

Platform Migrator Technical Report TR

Platform Migrator Technical Report TR Platform Migrator Technical Report TR2018-990 Munir Contractor mmc691@nyu.edu Christophe Pradal christophe.pradal@inria.fr Dennis Shasha shasha@cs.nyu.edu May 12, 2018 CONTENTS: 1 Abstract 4 2 Platform

More information

Zenoss Resource Manager Upgrade Guide

Zenoss Resource Manager Upgrade Guide Zenoss Resource Manager Upgrade Guide Release 5.3.2 Zenoss, Inc. www.zenoss.com Zenoss Resource Manager Upgrade Guide Copyright 2017 Zenoss, Inc. All rights reserved. Zenoss, Own IT, and the Zenoss logo

More information

Quick Installation Guide

Quick Installation Guide Nortel IP Flow Manager Release: 2.0 Version: 02.01 Copyright 2009 Nortel Networks Nortel IP Flow Manager 2.0 Page 1 of 9 Nortel IP Flow Manager Release: 2.0 Publication: NN48015-300 Document status: Standard

More information

Linux Administration

Linux Administration Linux Administration This course will cover all aspects of Linux Certification. At the end of the course delegates will have the skills required to administer a Linux System. It is designed for professionals

More information

How to Deploy Axon on VMware vcenter

How to Deploy Axon on VMware vcenter How to Deploy Axon on VMware vcenter Copyright Informatica LLC 2017. Informatica, the Informatica logo, Intelligent Data Lake, Big Data Mangement, and Live Data Map are trademarks or registered trademarks

More information

Linux Kung-Fu. James Droste UBNetDef Fall 2016

Linux Kung-Fu. James Droste UBNetDef Fall 2016 Linux Kung-Fu James Droste UBNetDef Fall 2016 $ init 1 GO TO https://apps.ubnetdef.org GO TO https://apps.ubnetdef.org GO TO https://apps.ubnetdef.org GO TO https://apps.ubnetdef.org GO TO https://apps.ubnetdef.org

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

Virtual Data Center (vdc) Manual

Virtual Data Center (vdc) Manual Virtual Data Center (vdc) Manual English Version 1.0 Page 1 of 43 Content 1 HOW TO USE CLOUD PORTAL (VMWARE VIRTUAL DATA CENTER)... 3 2 VMWARE SYSTEM DETAILS... 5 3 HOW TO MANAGE VIRTUAL MACHINE... 6 Edit

More information

TECHNICAL WHITE PAPER. Using Stateless Linux with Veritas Cluster Server. Linux

TECHNICAL WHITE PAPER. Using Stateless Linux with Veritas Cluster Server. Linux TECHNICAL WHITE PAPER Using Stateless Linux with Veritas Cluster Server Linux Pranav Sarwate, Assoc SQA Engineer Server Availability and Management Group Symantec Technical Network White Paper Content

More information

EX200.Lead2pass.Exam.24q. Exam Code: EX200. Exam Name: Red Hat Certified System Administrator RHCSA. Version 14.0

EX200.Lead2pass.Exam.24q. Exam Code: EX200. Exam Name: Red Hat Certified System Administrator RHCSA. Version 14.0 EX200.Lead2pass.Exam.24q Number: EX200 Passing Score: 800 Time Limit: 120 min File Version: 14.0 http://www.gratisexam.com/ Exam Code: EX200 Exam Name: Red Hat Certified System Administrator RHCSA Version

More information

Plexxi HCN Plexxi Connect Installation, Upgrade and Administration Guide Release 3.0.0

Plexxi HCN Plexxi Connect Installation, Upgrade and Administration Guide Release 3.0.0 Plexxi HCN Plexxi Connect Installation, Upgrade and Administration Guide Release 3.0.0 May 3, 2018 100 Innovative Way - Suite 3322 Nashua, NH 03062 Tel. +1.888.630.PLEX (7539) www.plexxi.com Legal Notices

More information

Installing SmartSense on HDP

Installing SmartSense on HDP 1 Installing SmartSense on HDP Date of Publish: 2018-07-12 http://docs.hortonworks.com Contents SmartSense installation... 3 SmartSense system requirements... 3 Operating system, JDK, and browser requirements...3

More information

FUJITSU Cloud Service S5 Installation and Configuration of MySQL on a CentOS VM

FUJITSU Cloud Service S5 Installation and Configuration of MySQL on a CentOS VM FUJITSU Cloud Service S5 Installation and Configuration of MySQL on a CentOS VM This guide details the steps required to install and configure MySQL on a CentOS VM Introduction The FUJITSU Cloud Service

More information

Tungsten Dashboard for Clustering. Eric M. Stone, COO

Tungsten Dashboard for Clustering. Eric M. Stone, COO Tungsten Dashboard for Clustering Eric M. Stone, COO In this training session 1. Tungsten Dashboard Welcome 2. Tungsten Dashboard Overview 3. Tungsten Dashboard Prerequisites 4. Tungsten Dashboard Security

More information

Vendor: RedHat. Exam Code: EX200. Exam Name: Red Hat Certified System Administrator - RHCSA. Version: Demo

Vendor: RedHat. Exam Code: EX200. Exam Name: Red Hat Certified System Administrator - RHCSA. Version: Demo Vendor: RedHat Exam Code: EX200 Exam Name: Red Hat Certified System Administrator - RHCSA Version: Demo EX200 Exam A QUESTION NO: 1 CRECT TEXT Configure your Host Name, IP Address, Gateway and DNS. Host

More information

Network Configuration for Cisco UCS Director Baremetal Agent

Network Configuration for Cisco UCS Director Baremetal Agent Network Configuration for Cisco UCS Director Baremetal Agent This chapter contains the following sections: About the Network Configuration Options, page 1 Single Network for Management and PXE, page 1

More information

Care and Feeding of HTCondor Cluster. Steven Timm European HTCondor Site Admins Meeting 8 December 2014

Care and Feeding of HTCondor Cluster. Steven Timm European HTCondor Site Admins Meeting 8 December 2014 Care and Feeding of HTCondor Cluster Steven Timm European HTCondor Site Admins Meeting 8 December 2014 Disclaimer Some HTCondor configuration and operations questions are more religion than science. There

More information

Seltestengine EX200 24q

Seltestengine EX200 24q Seltestengine EX200 24q Number: EX200 Passing Score: 800 Time Limit: 120 min File Version: 22.5 http://www.gratisexam.com/ Red Hat EX200 Red Hat Certified System AdministratorRHCSA Nicely written Questions

More information

Arm Licence Server User Guide. Version 18.0

Arm Licence Server User Guide. Version 18.0 Arm Licence Server User Guide Version 18.0 Contents Contents 1 1 Introduction 2 1.1 Online resources...................................... 2 1.2 Obtaining help....................................... 2

More information

DIRAC Server Installation. DIRAC Project

DIRAC Server Installation. DIRAC Project DIRAC Server Installation DIRAC Project Overview } Requirements } Server Installation } Post Installation requirements } Accessing the server } Installing and monitoring using DIRAC CLI } Monitoring inside

More information

Cisco Prime Service Catalog Virtual Appliance Quick Start Guide 2

Cisco Prime Service Catalog Virtual Appliance Quick Start Guide 2 Cisco Prime Service Catalog 11.1.1 Virtual Appliance Quick Start Guide Cisco Prime Service Catalog 11.1.1 Virtual Appliance Quick Start Guide 2 Introduction 2 Before You Begin 2 Preparing the Virtual Appliance

More information

CE+WN+siteBDII Installation and configuration

CE+WN+siteBDII Installation and configuration The EPIKH Project (Exchange Programme to advance e-infrastructure Know-How) CE+WN+siteBDII Installation and configuration Andrea Cortellese (andrea.cortellese@ct.infn.it) National Institute of Nuclear

More information

Installing Cisco Multicast Manager

Installing Cisco Multicast Manager CHAPTER 1 This chapter contains the following sections: System Requirements, page 1-1 Licensing, page 1-3 TFTP Server, page 1-3 Solaris Installation Instructions, page 1-4 Linux Installation Instructions,

More information

Chapter 2 Booting Up and Shutting Down

Chapter 2 Booting Up and Shutting Down Chapter 2 Booting Up and Shutting Down Boot Up? 2 Shut Down? 3 Booting Up Starting up a computer Load kernel into memory and execute it. (1) BIOS load and run the MBR (Master Boot Record) (2) MBR searches

More information

Teradici PCoIP Connection Manager 1.8 and Security Gateway 1.14

Teradici PCoIP Connection Manager 1.8 and Security Gateway 1.14 Teradici PCoIP Connection Manager 1.8 and Security Gateway 1.14 TER1502010/A-1.8-1.14 Contents Document History 4 Who Should Read This Guide? 5 PCoIP Connection Manager and PCoIP Security Gateway Overview

More information

SVN UUID Mismatch and SVN Data Synchronization

SVN UUID Mismatch and SVN Data Synchronization SVN UUID Mismatch and SVN Data Synchronization Document ID: 119326 Contributed by Aravindhan Balasubramanian, Cisco TAC Engineer. Aug 31, 2015 Contents Introduction SVN UUID MISMATCH Verify SVN Synchronization

More information

ATLAS COMPUTING AT OU

ATLAS COMPUTING AT OU ATLAS COMPUTING AT OU Outline HORST SEVERINI OU DOE REVIEW FEBRUARY 1, 2010 Introduction US ATLAS Grid Computing and Open Science Grid (OSG) US ATLAS Tier 2 Center OU Resources and Network Summary and

More information

OpenNebula 4.10 Quickstart CentOS 6 and KVM

OpenNebula 4.10 Quickstart CentOS 6 and KVM OpenNebula 4.10 Quickstart CentOS 6 and KVM Release 4.10.2 OpenNebula Project January 16, 2015 CONTENTS 1 Package Layout 3 2 Step 1. Installation in the Frontend 5 2.1 1.1. Install the repo............................................

More information

Infoblox Kubernetes1.0.0 IPAM Plugin

Infoblox Kubernetes1.0.0 IPAM Plugin 2h DEPLOYMENT GUIDE Infoblox Kubernetes1.0.0 IPAM Plugin NIOS version 8.X August 2018 2018 Infoblox Inc. All rights reserved. Infoblox Kubernetes 1.0.0 IPAM Deployment Guide August 2018 Page 1 of 18 Overview...

More information

Containerized Cloud Scheduling Environment

Containerized Cloud Scheduling Environment University of Victoria Engineering & Computer Science Co-op Work Term Report Fall 2017 Containerized Cloud Scheduling Environment Department of Physics University of Victoria Victoria, BC Tahya Weiss-Gibbons

More information

Redhat OpenStack 5.0 and PLUMgrid OpenStack Networking Suite 2.0 Installation Hands-on lab guide

Redhat OpenStack 5.0 and PLUMgrid OpenStack Networking Suite 2.0 Installation Hands-on lab guide Redhat OpenStack 5.0 and PLUMgrid OpenStack Networking Suite 2.0 Installation Hands-on lab guide Oded Nahum Principal Systems Engineer PLUMgrid EMEA November 2014 Page 1 Page 2 Table of Contents Table

More information

Migrating the Cisco StadiumVision Director Server Environment to Platform 2 from the Cisco ADE 2140 Series Appliance

Migrating the Cisco StadiumVision Director Server Environment to Platform 2 from the Cisco ADE 2140 Series Appliance Migrating the Cisco StadiumVision Director Server Environment to Platform 2 from the Cisco ADE 2140 Series Appliance First Published: May 29, 2012 Revised: August 2, 2012 This module describes how to migrate

More information

DiGS (Version 3.1) Setup Guide

DiGS (Version 3.1) Setup Guide DiGS (Version 3.1) Setup Guide George Beckett, Daragh Byrne, Radosław Ostrowski, James Perry, Eilidh Grant 10th May 2010 1 Contents Preface 3 1 An Overview of DiGS 1 1.1 A typical DiGS-powered infrastructure...........................

More information

Open a browser and download the Apache Tomcat 7 and Oracle JDBC 6 JAR from these locations. The Oracle site may require that you register as a user.

Open a browser and download the Apache Tomcat 7 and Oracle JDBC 6 JAR from these locations. The Oracle site may require that you register as a user. Installing Tomcat 7 on CentOS 7 David J. Walling, March 8 th, 2017 Email: david@davidjwalling.com This how to describes a process to download and install Apache Tomcat 7 on a CentOS 7 virtual machine using

More information

Braindumps EX200 15q

Braindumps EX200 15q Braindumps EX200 15q Number: EX200 Passing Score: 800 Time Limit: 120 min File Version: 22.5 http://www.gratisexam.com/ Red Hat EX200 Red Hat Certified System AdministratorRHCSA This is the best VCE I

More information

Booting Up and Shutting Down. lctseng / Liang-Chi Tseng

Booting Up and Shutting Down. lctseng / Liang-Chi Tseng Booting Up and Shutting Down lctseng / Liang-Chi Tseng Booting Up Starting up a computer Load kernel into memory and execute it. (1) BIOS load and run the MBR (Master Boot Record) (2) MBR searches for

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

Illustrated Steps to create greggroeten.net with AWS

Illustrated Steps to create greggroeten.net with AWS Illustrated Steps to create greggroeten.net with AWS Screenshots of each step Table of Contents 1. CREATE VPC 10.10.0/16.... 3 2. CREATE 1 PUBLIC SUBNET IN DEFAULT AZ, EX BELOW... 4 3. CREATE IGW, ATTACH

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

RAP Installation README

RAP Installation README RAP Installation README (Redhat 9.x as platform) 1. Hardware System requirement CPU P3 100 + RAM 512M + Hard Disk (None SCSI) 20G+ Network Ports: 10/100/1000 1+ (HA and Clustering need 2+) CDROM System

More information

EX200 Q&A. DEMO Version

EX200 Q&A. DEMO Version Red Hat Certified System Administrator (RHCSA) Exam Q&A DEMO Version Copyright (c) 2015 Chinatag LLC. All rights reserved. Important Note Please Read Carefully For demonstration purpose only, this free

More information

Shooting for the sky: Testing the limits of condor. HTCondor Week May 2015 Edgar Fajardo On behalf of OSG Software and Technology

Shooting for the sky: Testing the limits of condor. HTCondor Week May 2015 Edgar Fajardo On behalf of OSG Software and Technology Shooting for the sky: Testing the limits of condor 21 May 2015 Edgar Fajardo On behalf of OSG Software and Technology 1 Acknowledgement Although I am the one presenting. This work is a product of a collaborative

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

pulsarvmlite v Installation and Usage

pulsarvmlite v Installation and Usage pulsarvmlite v1.05 Installation and Usage Lawrence Toomey July 15 th 2015 lawrence.toomey@gmail.com Welcome to pulsarvmlite, a custombuilt 32bit virtual machine (VM) image for pulsar astronomers. Based

More information

WORKSHOP SHINKEN REFERENCE: Ref[1] tutorial for Centos7 Ref[2] offical documentation

WORKSHOP SHINKEN REFERENCE: Ref[1] tutorial for Centos7 Ref[2] offical documentation WORKSHOP SHINKEN REFERENCE: Ref[1] tutorial for Centos7 Ref[2] offical documentation INSTALL SHINKEN FOR CENTOS 7 yum install epel release yum install shinken* change conf if needed check web adress of

More information

Bitnami Moodle for Huawei Enterprise Cloud

Bitnami Moodle for Huawei Enterprise Cloud Bitnami Moodle for Huawei Enterprise Cloud Description Moodle is a Course Management System that is designed using sound pedagogical principles to help educators create effective online learning communities.

More information

Installing Hadoop / Yarn, Hive 2.1.0, Scala , and Spark 2.0 on Raspberry Pi Cluster of 3 Nodes. By: Nicholas Propes 2016

Installing Hadoop / Yarn, Hive 2.1.0, Scala , and Spark 2.0 on Raspberry Pi Cluster of 3 Nodes. By: Nicholas Propes 2016 Installing Hadoop 2.7.3 / Yarn, Hive 2.1.0, Scala 2.11.8, and Spark 2.0 on Raspberry Pi Cluster of 3 Nodes By: Nicholas Propes 2016 1 NOTES Please follow instructions PARTS in order because the results

More information

VCP-DCV5, OCP (DBA), MCSA, SUSE CLA, RHCSA-7]

VCP-DCV5, OCP (DBA), MCSA, SUSE CLA, RHCSA-7] Alternate Titles: APACHE V-HOST SETUP Author: Muhammad Zeeshan Bhatti [LPI, VCP-DCV5, OCP (DBA), MCSA, SUSE CLA, RHCSA-7] (http://zeeshanbhatti.com) (admin@zeeshanbhatti.com) APACHE V-HOST SETUP [root@zeeshanbhatti

More information

Getting Started with Hadoop/YARN

Getting Started with Hadoop/YARN Getting Started with Hadoop/YARN Michael Völske 1 April 28, 2016 1 michael.voelske@uni-weimar.de Michael Völske Getting Started with Hadoop/YARN April 28, 2016 1 / 66 Outline Part One: Hadoop, HDFS, and

More information

Installing and Upgrading Cisco Video Surveillance Manager Release 6.3.1

Installing and Upgrading Cisco Video Surveillance Manager Release 6.3.1 Installing and Upgrading Cisco Video Surveillance Manager Release 6.3.1 Overview This document provides information about installing Cisco Video Surveillance Manager (VSM), which includes Cisco Video Surveillance

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

Edinburgh (ECDF) Update

Edinburgh (ECDF) Update Edinburgh (ECDF) Update Wahid Bhimji On behalf of the ECDF Team HepSysMan,10 th June 2010 Edinburgh Setup Hardware upgrades Progress in last year Current Issues June-10 Hepsysman Wahid Bhimji - ECDF 1

More information