GRID COMPANION GUIDE

Size: px
Start display at page:

Download "GRID COMPANION GUIDE"

Transcription

1 Companion Subject: GRID COMPANION Author(s): Miguel Cárdenas Montes, Antonio Gómez Iglesias, Francisco Castejón, Adrian Jackson, Joachim Hein Distribution: Public 1.Introduction Here you will find the most basic information in order to get access to the EUFORIA Grid Infrastructure. The aim of this document is to provide the basic information needed to start to work with the grid How to get involved in The Grid? First of all, to be able to run jobs in the EUFORIA Grid Infrastructure you need a personal certificate. How to get a personal certificate? You should contact the Registration Authority of your institution. In the case that your institution does not have a Registration Authority, you should address to your National Certification Authority for science and computing issues. You can find the whole list of Certification Authorities in this page: It may also be wise to promote the creation of a new Registration Authority in your institution, but this is not mandatory. Once you have a certificate you need to affiliate this certificate to a Virtual Organization (VO), particularly to the EUFORIA Virtual Organization. A Virtual Organization is the group of scientists and computer resources with which you intend to work. The link to affiliate your certificate to EUFORIA Virtual Organization is: You will have to load your certificate into your browser to affiliate with the EUFORIA VO. The mechanism for doing this is browser specific, if you have problems contact us at support@euforia-project.eu. 1/9

2 Companion 1.2. How to enter in The Grid? The computers that allow the users to enter in the grid are called User Interface or Grid Portal. These kinds of computer are the entrance to the grid infrastructure. Usually there are several User Interfaces for each grid infrastructure. If you have an account on the ITM s Gateway machine (gateway.efda-itm.eu) then you should have access to the ITM s UI for the EUFORIA Grid: euforia.efda-itm.eu Try logging on with your Gateway username and password and if you cannot access the machine then get in touch with EUFORIA support (support@euforia-project.eu Partners in the EUFORIA project also provide the following UI machines: i2gui01.ifca.es iwrui2.fzk.de iwrui3.fzk.de A new user can obtain a personal account on one of these machines either by addressing a request to your local site administrator (if you are a member of the institutions that provide the UI machines listed above). If you don t know if your institution has a User Interface or your institution doesn't belong to the project, and you do not have a Gateway account, you need to contact us at: support@euforiaproject.eu Where should I put my certificate? Once you have a valid certificate and it has been affiliated to a Virtual Organization, then you need to upload your certificate to a User Interface (UI) of the EUFORIA project. The User Interfaces of the project are: i2gui01.ifca.es iwrui2.fzk.de iwrui3.fzk.de When you have an account on one of the User Interface of EUFORIA, then you need to log on to that account. You can log on using SSH. Once logged on you need to create a directory.globus and copy the files: usercert.pem and userkey.pem into this directory. If you do not have these two files (basically, these files are your public and private keys, part of your certificate), you can obtain them from your certificate by executing a shell script. Such a script may be provided by your Registration Authority (RA the people you obtained your certificate from). If it is not then you can use the one provided at this link: If you have any problems with the step please contact support@euforia-project.eu. 2/9

3 Companion Once you have done this you have covered the prerequisites required to access the EUFORIA grid. The next steps will show you how to start using the grid. 3/9

4 Companion 2. Using the Grid at a first glance Once you have an account on a EUFORIA UI which has been properly setup you can think of running an application. But... you cannot run applications directly on the UI: imagine what would happen if several users ran their applications on the UI, the performance would be very poor as the machine would be overloaded. What you are trying to achieve is to get your applications running on dedicated resources, rather can multi-user resources like the EUFORIA UIs. To execute something, you need to send your application and the data required for your application to the Worker Nodes (WN), which are the machines designed for execution of grid jobs. But, since you are running your application (job in grid terminology) on a remote machine, you have to describe your job: the executable, the arguments it needs, data requirements, output files... You can specify many different things but probably don t need to worry about all of them How can I prepare a simple job? Let s start with a simple application. Consider we want to run a shell script which reads a file (passed as an argument to the shell script), it processes this file and produces a new one, the name of which is also an argument of the shell script. A typical invocation from the command line would be: sh test_script.sh input.file ouput.file The description (JDL Job Description Language) of this application would be: Type = Job ; JobType = Normal ; Executable = /bin/sh ; Arguments = test_script.sh input.file output.file ; StdOutput = standard.out ; StdError = error.err ; InputSandbox = { test_script.sh, input.file }; OutputSandbox = { output.file, standard.out, error.err }; This is the contents of a file called test_script.jdl. Some things to remark: Executable: in this context the executable you want to run is /bin/sh. This program takes our script as an argument. Arguments: since the executable is /bin/sh we have to include our script as argument. Standard output and error have to be specified, but normally (like in this example) it is very easy to do. InputSandbox: here we have to include all the files that have to be transferred to the worker node. In our case, we have to transfer the script and the input file to be processed. The sh application should not be transferred since it exists in all the worker nodes. In general the worker nodes will have the same set of commands and programs installed by default on general linux systems. More information on what is installed on 4/9

5 Companion the worker nodes can be obtained by contacting EUFORIA support (see Conclusions for details on user support). OutputSandbox: all the files that we are interested in having after the execution of the job on the WN should be specified here How can I submit my job? Now we are ready to send this job to the grid. But before that, we have to create a proxy using your digital certificate. A proxy is a method of authenticating yourself in the grid. To create the proxy, execute on the User Interface: voms-proxy-init --voms euforia This command will prompt you for the key of your digital certificate (remember it is located in the.globus directory). After that, you will be logged into the grid. Let s submit the job, using the following command on the User Interface: i2g-job-submit test_script.jdl This command returns the job identifier, which uniquely defines the job to perform further operations. The format of this identifier is: It is often beneficial to save the job identifier that is returned from the job submit command in a file so it can be used to query job status or retrieve output later. One way of doing this is to copy the job identifier to a file called (for instance) job.id. You can also do this automatically using the o attribute, i.e.: i2g-job-submit o job.id test_script.jdl Finally, depending on how the User Interface is setup it may be necessary to specify the VO you want to submit the job too. If you try the submit steps above but the submission fail with the following error: **** Error: UI_NO_VOMS **** Unable to determine a valid user s VO Then you should specify you VO as follows: i2g-job-submit - vo euforia o job.id test_script.jdl 2.3. Is my job running? Now we want to know the state of our job. It can be waiting in the queue in cases where no free worker node exists at the moment in the grid; it can be running; it can fail (we do not want this situation); it can be done (this is what we want). To ask for this state, we have to type: i2g-job-status With this command we can see the different states of our job before the Done state appears. When the job reaches the Done status, we can retrieve our files. 5/9

6 Companion If you have saved the job identifier in a file when the job submit was performed then you can use this with the job status command as follows: i2g-job-status i job.id Where job.id is the name of the file you stored the job identifier in And where is my output? We said retrieve our files and that is because our output.file does not appear in our UI folder after finishing the job execution. To retrieve our output.file (and all the files specified in OutputSandbox), we must type: i2g-job-get-output - dir. After that, we will have a new folder with the name unique_string in a location indicated by the previous command. If we want this folder in a specific location, we can indicate this by means of changing the --dir attribute, like: i2g-job-get-output - dir /your/directory Where /your/directory is the location that you want the output directory to be placed. As with the job status command you can also use the i attribute to specify a file where the job identifier is stored, i.e.: i2g-job-get-output - dir. i job.id 2.5. How do I cancel a job? Sometimes you may need to cancel a Grid job, either one that has just been submitted or one that is already running. This can be easily done using the following command: i2g-job-cancel or if you have stored the job identifier in a file: i2g-job-cancel i job.id 6/9

7 Companion 3.Advanced Capabilities 3.1.Compiling a job for the Grid There will be a separate companion guide on compilation for the grid. Please see that document or contact user support if you want help on compilation I would like to send a large input with my job This is a very common scenario. In this case our files do not have to be transferred from the User Interface to the Worker Nodes. Instead of that, we will have our files in the Storage Element (SE), so our job will access to these files by using the appropriate commands in a shell script which will be executed in the Worker Node (this shell script is our executable). The first thing we have to do is to store our files in the SE. For that, we use the command from the UI: lcg-cr --vo euforia l lfn:/remote_file_route file:///local_file Where local_file is the name and path of the file you wish to copy from the UI. We now have access to the remote file using the remote_file_route (the name remote_file_route can be replaced with anything you want). The Storage Element is not designed to read/write files, it is designed to write files once, and have those files read many times. The command to copy a file from the Storage Element to the local site (the WN) is: lcg-cp -v --vo euforia lfn:/remote_file_route file:///local_file So, let s imagine we need to have access to a file called my_data_file.dat. First of all we have to copy this file to the SE, using the following command: lcg-cr vo euforia l lfn:/grid/euforia/my_name/my_data_file_remote.dat file:///my_data_file.dat With this, we are copying the local file to the SE and the route to the remote file is /grid/euforia/my_name/my_data_file_remote.dat. The convention is to use /grid/euforia/ for the beginning of the remote file location, although you can have any remote file route you wish (i.e. lfn:/myfile). To access this file from the WN, we need to include in the script which is executed the command: lcg-cp -v --vo euforia lfn:/grid/euforia/my_name/my_data_file_remote.dat file:///my_data_file_wn.dat And after that, the script will launch the program which uses the file my_data_file_wn.dat. The JDL for this job could be like: Type = Job ; JobType = Normal ; 7/9

8 Companion Executable = /bin/sh ; Arguments = test_script.sh ; StdOutput = standard.out ; StdError = error.err ; InputSandbox = { test_script.sh, my_executable }; OutputSandbox = { output.file, standard.out, error.err }; And test_script.sh could be: lcg-cp -v --vo euforia lfn:/grid/euforia/my_name/my_data_file_remote.dat file:///my_data_file_wn.dat chmod 777 my_executable./my_executable my_data_file_wn.dat The program my_executable requires the file my_data_file_wn.dat and will produce a file name output.file Parallel jobs There is be a separate companion guide for compiling and running parallel jobs on the EUFORIOA grid. Please see that document or contact user support if you want help on compilation Migrating Desktop Migrating Desktop provides users with a friendly environment for job submission and data handling in grid infrastructures. Contact us if you want more information on Migrating Desktop, as we intend to produce a companion guide on Migrating Desktop shortly Workflows Using Kepler, EUFORIA will allow managing workflows, so the output of some applications can be used as input data for other applications. This feature is currently being implemented, and will be the subject of another companion guide. 4.Conclusions This document has outlined the basic requirements and procedures for running jobs on the EUFORIA grid infrastructure. Whilst the commands can be complicated, and the initial setup is not always straight forward, the information in this document should allow anyone to run grid jobs. If you want more information, or have problems running in the EUFORIA infrastructure, please contact the support team at support@euforia-project.eu. We 8/9

9 Companion also run training courses on a wide range of topics; see the EUFORIA website ( for more details. 9/9

Advanced Job Submission on the Grid

Advanced Job Submission on the Grid Advanced Job Submission on the Grid Antun Balaz Scientific Computing Laboratory Institute of Physics Belgrade http://www.scl.rs/ 30 Nov 11 Dec 2009 www.eu-egee.org Scope User Interface Submit job Workload

More information

Gergely Sipos MTA SZTAKI

Gergely Sipos MTA SZTAKI Application development on EGEE with P-GRADE Portal Gergely Sipos MTA SZTAKI sipos@sztaki.hu EGEE Training and Induction EGEE Application Porting Support www.lpds.sztaki.hu/gasuc www.portal.p-grade.hu

More information

Grid Documentation Documentation

Grid Documentation Documentation Grid Documentation Documentation Release 1.0 Grid Support Nov 06, 2018 Contents 1 General 3 2 Basics 9 3 Advanced topics 25 4 Best practices 81 5 Service implementation 115 6 Tutorials

More information

AGATA Analysis on the GRID

AGATA Analysis on the GRID AGATA Analysis on the GRID R.M. Pérez-Vidal IFIC-CSIC For the e682 collaboration What is GRID? Grid technologies allow that computers share trough Internet or other telecommunication networks not only

More information

Grid Computing. Olivier Dadoun LAL, Orsay Introduction & Parachute method. APC-Grid February 2007

Grid Computing. Olivier Dadoun LAL, Orsay  Introduction & Parachute method. APC-Grid February 2007 Grid Computing Introduction & Parachute method APC-Grid February 2007 Olivier Dadoun LAL, Orsay http://flc-mdi.lal.in2p3.fr dadoun@lal.in2p3.fr www.dadoun.net October 2006 1 Contents Machine Detector Interface

More information

glite Middleware Usage

glite Middleware Usage glite Middleware Usage Dusan Vudragovic dusan@phy.bg.ac.yu Scientific Computing Laboratory Institute of Physics Belgrade, Serbia Nov. 18, 2008 www.eu-egee.org EGEE and glite are registered trademarks Usage

More information

E UFORIA G RID I NFRASTRUCTURE S TATUS R EPORT

E UFORIA G RID I NFRASTRUCTURE S TATUS R EPORT E UFORIA G RID I NFRASTRUCTURE S TATUS R EPORT DSA1.1 Document Filename: Activity: Partner(s): Lead Partner: Document classification: EUFORIA-DSA1.1-v1.0-CSIC SA1 CSIC, FZK, PSNC, CHALMERS CSIC PUBLIC

More information

Introduction to Programming and Computing for Scientists

Introduction to Programming and Computing for Scientists Oxana Smirnova (Lund University) Programming for Scientists Tutorial 4b 1 / 44 Introduction to Programming and Computing for Scientists Oxana Smirnova Lund University Tutorial 4b: Grid certificates and

More information

Grid Computing. Olivier Dadoun LAL, Orsay. Introduction & Parachute method. Socle 2006 Clermont-Ferrand Orsay)

Grid Computing. Olivier Dadoun LAL, Orsay. Introduction & Parachute method. Socle 2006 Clermont-Ferrand Orsay) virtual organization Grid Computing Introduction & Parachute method Socle 2006 Clermont-Ferrand (@lal Orsay) Olivier Dadoun LAL, Orsay dadoun@lal.in2p3.fr www.dadoun.net October 2006 1 Contents Preamble

More information

International Collaboration to Extend and Advance Grid Education. glite WMS Workload Management System

International Collaboration to Extend and Advance Grid Education. glite WMS Workload Management System International Collaboration to Extend and Advance Grid Education glite WMS Workload Management System Marco Pappalardo Consorzio COMETA & INFN Catania, Italy ITIS Ferraris, Acireale, Tutorial GRID per

More information

ALICE Grid/Analysis Tutorial Exercise-Solutions

ALICE Grid/Analysis Tutorial Exercise-Solutions WLCG Asia Workshop, 2.12.2006 ALICE Grid/Analysis Tutorial Exercise-Solutions Andreas-Joachim Peters CERN www.eu-egee.org cern.ch/lcg http://cern.ch/arda EGEE is a project funded by the European Union

More information

Introduction to BioHPC

Introduction to BioHPC Introduction to BioHPC New User Training [web] [email] portal.biohpc.swmed.edu biohpc-help@utsouthwestern.edu 1 Updated for 2015-06-03 Overview Today we re going to cover: What is BioHPC? How do I access

More information

Architecture of the WMS

Architecture of the WMS Architecture of the WMS Dr. Giuliano Taffoni INFORMATION SYSTEMS UNIT Outline This presentation will cover the following arguments: Overview of WMS Architecture Job Description Language Overview WMProxy

More information

glite Grid Services Overview

glite Grid Services Overview The EPIKH Project (Exchange Programme to advance e-infrastructure Know-How) glite Grid Services Overview Antonio Calanducci INFN Catania Joint GISELA/EPIKH School for Grid Site Administrators Valparaiso,

More information

Prototype DIRAC portal for EISCAT data Short instruction

Prototype DIRAC portal for EISCAT data Short instruction Prototype DIRAC portal for EISCAT data Short instruction Carl-Fredrik Enell January 19, 2017 1 Introduction 1.1 DIRAC EGI, first European Grid Initiative, later European Grid Infrastructure, and now simply

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

How to use computing resources at Grid

How to use computing resources at Grid How to use computing resources at Grid Nikola Grkic ngrkic@ipb.ac.rs Scientific Computing Laboratory Institute of Physics Belgrade, Serbia Academic and Educat ional Gr id Init iat ive of S er bia Oct.

More information

DIRAC Documentation. Release integration. DIRAC Project. 09:29 20/05/2016 UTC

DIRAC Documentation. Release integration. DIRAC Project. 09:29 20/05/2016 UTC DIRAC Documentation Release integration DIRAC Project. 09:29 20/05/2016 UTC Contents 1 User Guide 3 1.1 Getting Started.............................................. 3 1.2 Web Portal Reference..........................................

More information

Connect using Putty to a Linux Server

Connect using Putty to a Linux Server Connect using Putty to a Linux Server PuTTY is an open source SSH client for Windows, and allows you to securely connect to remote servers from your Windows machine. Configuration SSH Key Authentication

More information

A Login Shell interface for INFN-GRID

A Login Shell interface for INFN-GRID A Login Shell interface for INFN-GRID S.Pardi2,3, E. Calloni1,2, R. De Rosa1,2, F. Garufi1,2, L. Milano1,2, G. Russo1,2 1Università degli Studi di Napoli Federico II, Dipartimento di Scienze Fisiche, Complesso

More information

VI. Corente Services Client

VI. Corente Services Client VI. Corente Services Client Corente Release 9.1 Manual 9.1.1 Copyright 2014, Oracle and/or its affiliates. All rights reserved. Table of Contents Preface... 5 I. Introduction... 6 II. Corente Client Configuration...

More information

Future of Grid parallel exploitation

Future of Grid parallel exploitation Future of Grid parallel exploitation Roberto Alfieri - arma University & INFN Italy SuperbB Computing R&D Workshop - Ferrara 6/07/2011 1 Outline MI support in the current grid middleware (glite) MI and

More information

g-eclipse A Framework for Accessing Grid Infrastructures Nicholas Loulloudes Trainer, University of Cyprus (loulloudes.n_at_cs.ucy.ac.

g-eclipse A Framework for Accessing Grid Infrastructures Nicholas Loulloudes Trainer, University of Cyprus (loulloudes.n_at_cs.ucy.ac. g-eclipse A Framework for Accessing Grid Infrastructures Trainer, University of Cyprus (loulloudes.n_at_cs.ucy.ac.cy) EGEE Training the Trainers May 6 th, 2009 Outline Grid Reality The Problem g-eclipse

More information

glite UI Installation

glite UI Installation The EPIKH Project (Exchange Programme to advance e-infrastructure Know-How) glite UI Installation Antonio Calanducci INFN Catania Joint GISELA/EPIKH School for Grid Site Administrators Valparaiso, Chile,

More information

Parallel Computing in EGI

Parallel Computing in EGI Parallel Computing in EGI V. Šipková, M. Dobrucký, and P. Slížik Ústav informatiky, Slovenská akadémia vied 845 07 Bratislava, Dúbravská cesta 9 http://www.ui.sav.sk/ {Viera.Sipkova, Miroslav.Dobrucky,

More information

VII. Corente Services SSL Client

VII. Corente Services SSL Client VII. Corente Services SSL Client Corente Release 9.1 Manual 9.1.1 Copyright 2014, Oracle and/or its affiliates. All rights reserved. Table of Contents Preface... 5 I. Introduction... 6 Chapter 1. Requirements...

More information

NorduGrid Tutorial. Client Installation and Job Examples

NorduGrid Tutorial. Client Installation and Job Examples NorduGrid Tutorial Client Installation and Job Examples Linux Clusters for Super Computing Conference Linköping, Sweden October 18, 2004 Arto Teräs arto.teras@csc.fi Steps to Start Using NorduGrid 1) Install

More information

Introduction to BioHPC

Introduction to BioHPC Introduction to BioHPC New User Training [web] [email] portal.biohpc.swmed.edu biohpc-help@utsouthwestern.edu 1 Updated for 2018-03-07 Overview Today we re going to cover: What is BioHPC? How do I access

More information

Report HQ. Quick Start Guide. Report HQ Quick Start Guide - Version 1.2

Report HQ. Quick Start Guide. Report HQ Quick Start Guide - Version 1.2 Report HQ Quick Start Guide STEP 1 Requesting An Account 1) Request an account via the Report HQ Request Form 2) Nasdaq will verify your account 3) Once your account is verified and provisioned, you will

More information

Network Administration/System Administration (NTU CSIE, Spring 2018) Homework #1. Homework #1

Network Administration/System Administration (NTU CSIE, Spring 2018) Homework #1. Homework #1 Submission Homework #1 Due Time: 2018/3/11 (Sun.) 22:00 Contact TAs: vegetable@csie.ntu.edu.tw Compress all your files into a file named HW1_[studentID].zip (e.g. HW1_bxx902xxx.zip), which contains two

More information

LCG User Registration & VO management

LCG User Registration & VO management LCG User Registration & VO management Spring HEPiX Edinburgh 1Maria Dimou- cern-it-gd Presentation Outline Why is LCG Registration worth talking about. How do we register users today. What needs to be

More information

Good Shepherd Microfinance Provider Portal

Good Shepherd Microfinance Provider Portal Good Shepherd Microfinance Provider Portal Portal Registration Instructions Contents Introduction... 2 Step 1 Sign up for a Microsoft account (formerly Windows Live ID)... 2 Create Microsoft account registration

More information

Lesson 6: Portlet for job submission

Lesson 6: Portlet for job submission Lesson 6: Portlet for job submission Mario Torrisi University of Catania - Italy (mario.torrisi@ct.infn.it) Sci-GaIA Winter School This project has received funding from the European Union s Horizon 2020

More information

The Journal of The Textile Institute

The Journal of The Textile Institute The Journal of The Textile Institute And Tutorial for Authors Table of Contents Registering 3 Logging In 4 Changing your password 5 Submitting a paper 6-9 Reviewing & approving your paper 10 Tracking the

More information

Remote Support 19.1 Web Rep Console

Remote Support 19.1 Web Rep Console Remote Support 19.1 Web Rep Console 2003-2019 BeyondTrust Corporation. All Rights Reserved. BEYONDTRUST, its logo, and JUMP are trademarks of BeyondTrust Corporation. Other trademarks are the property

More information

Agent and Agent Browser. Updated Friday, January 26, Autotask Corporation

Agent and Agent Browser. Updated Friday, January 26, Autotask Corporation Agent and Agent Browser Updated Friday, January 26, 2018 2018 Autotask Corporation Table of Contents Table of Contents 2 The AEM Agent and Agent Browser 3 AEM Agent 5 Privacy Mode 9 Agent Browser 11 Agent

More information

Common monitoring and information system Reporting in IMIS system

Common monitoring and information system Reporting in IMIS system Common monitoring and information system Reporting in IMIS system 24.04.2018, 26.04.2018 Dr. Adrienn Futó Eszter Németh imisoffice@szpi.hu Content IMIS team Login to the IMIS 2014-2020 Beneficiary report

More information

Metasploit. Installation Guide Release 4.4

Metasploit. Installation Guide Release 4.4 Metasploit Installation Guide Release 4.4 TABLE OF CONTENTS About this Guide Target Audience...1 Organization...1 Document Conventions...1 Support...2 Support for Metasploit Pro and Metasploit Express...2

More information

FGI User Guide. Version Kimmo Mattila / CSC - IT center for science

FGI User Guide. Version Kimmo Mattila / CSC - IT center for science FGI User Guide Version 5.4. 2014 Kimmo Mattila / CSC - IT center for science Table of Contents FGI User Guide...3 1. Preparatory steps...4 1.1 Grid certificates...4 1.1.1 Obtaining a grid certificate from

More information

Remote Support Web Rep Console

Remote Support Web Rep Console Remote Support Web Rep Console 2017 Bomgar Corporation. All rights reserved worldwide. BOMGAR and the BOMGAR logo are trademarks of Bomgar Corporation; other trademarks shown are the property of their

More information

Parallel Job Support in the Spanish NGI! Enol Fernández del Cas/llo Ins/tuto de Física de Cantabria (IFCA) Spain

Parallel Job Support in the Spanish NGI! Enol Fernández del Cas/llo Ins/tuto de Física de Cantabria (IFCA) Spain Parallel Job Support in the Spanish NGI! Enol Fernández del Cas/llo Ins/tuto de Física de Cantabria (IFCA) Spain Introduction (I)! Parallel applica/ons are common in clusters and HPC systems Grid infrastructures

More information

DataGrid. Document identifier: Date: 24/11/2003. Work package: Partner: Document status. Deliverable identifier:

DataGrid. Document identifier: Date: 24/11/2003. Work package: Partner: Document status. Deliverable identifier: DataGrid WMS GUI USER G UIDE Document identifier: Work package: Partner: WP1 Datamat SpA Document status Deliverable identifier: Abstract: This document provides a description of all functionalities provided

More information

Architecture Proposal

Architecture Proposal Nordic Testbed for Wide Area Computing and Data Handling NORDUGRID-TECH-1 19/02/2002 Architecture Proposal M.Ellert, A.Konstantinov, B.Kónya, O.Smirnova, A.Wäänänen Introduction The document describes

More information

Client tools know everything

Client tools know everything Scheduling, clients Client tools know everything Application database Certificate Certificate Authorised users directory Certificate Policies Grid job management service Data Certificate Certificate Researcher

More information

Monitoring System for the GRID Monte Carlo Mass Production in the H1 Experiment at DESY

Monitoring System for the GRID Monte Carlo Mass Production in the H1 Experiment at DESY Journal of Physics: Conference Series OPEN ACCESS Monitoring System for the GRID Monte Carlo Mass Production in the H1 Experiment at DESY To cite this article: Elena Bystritskaya et al 2014 J. Phys.: Conf.

More information

Communication. Identity

Communication. Identity Mailock User guide OUR MISSION STATEMENT To Secure your Communication Data Identity Contents Introducing Mailock... 5 Business Users... 5 What do you need to run Mailock?... 5 In a browser... 5 On a mobile

More information

DESCRIPTION OF TYPICAL NETWORK SERVICES ON SERVERS

DESCRIPTION OF TYPICAL NETWORK SERVICES ON SERVERS DESCRIPTION OF TYPICAL NETWORK SERVICES ON SERVERS Before you start Objectives: Familiarize yourself with the services such as File and Print, WWW, FTP, E- mail, Faxing, Remote Access, DHCP, DNS and WINS.

More information

Table of Contents Brainshark. All rights reserved.

Table of Contents Brainshark. All rights reserved. Table of Contents Administrator Reference Guide... 2 Introduction... 2 Topics... 2 Folders... 3 Manage Folders... 3 Edit Folder... 3 Edit Folder Properties... 3 Assign Folder Permissions (Viewer, Author,

More information

DataGrid EDG-BROKERINFO USER GUIDE. Document identifier: Date: 06/08/2003. Work package: Document status: Deliverable identifier:

DataGrid EDG-BROKERINFO USER GUIDE. Document identifier: Date: 06/08/2003. Work package: Document status: Deliverable identifier: DataGrid Document identifier: Date: 06/08/2003 Work package: Document status: WP1-WP2 DRAFT Deliverable identifier: Abstract: This document presents what is the BrokerInfo file, the edg-brokerinfo command

More information

Monitoring the Usage of the ZEUS Analysis Grid

Monitoring the Usage of the ZEUS Analysis Grid Monitoring the Usage of the ZEUS Analysis Grid Stefanos Leontsinis September 9, 2006 Summer Student Programme 2006 DESY Hamburg Supervisor Dr. Hartmut Stadie National Technical

More information

UoW HPC Quick Start. Information Technology Services University of Wollongong. ( Last updated on October 10, 2011)

UoW HPC Quick Start. Information Technology Services University of Wollongong. ( Last updated on October 10, 2011) UoW HPC Quick Start Information Technology Services University of Wollongong ( Last updated on October 10, 2011) 1 Contents 1 Logging into the HPC Cluster 3 1.1 From within the UoW campus.......................

More information

Freshservice Discovery Probe User Guide

Freshservice Discovery Probe User Guide Freshservice Discovery Probe User Guide 1. What is Freshservice Discovery Probe? 1.1 What details does Probe fetch? 1.2 How does Probe fetch the information? 2. What are the minimum system requirements

More information

Quick Start Guide. Table of Contents

Quick Start Guide. Table of Contents Quick Start Guide Table of Contents Account Registration... 2 Signup Request... 2 Account Activation... 4 Running FLOW-3D on POD... 9 Launching the GUI... 9 Running Simulations... 11 Collaborating with

More information

Introduction to Joker Cyber Infrastructure Architecture Team CIA.NMSU.EDU

Introduction to Joker Cyber Infrastructure Architecture Team CIA.NMSU.EDU Introduction to Joker Cyber Infrastructure Architecture Team CIA.NMSU.EDU What is Joker? NMSU s supercomputer. 238 core computer cluster. Intel E-5 Xeon CPUs and Nvidia K-40 GPUs. InfiniBand innerconnect.

More information

INSTALLATION GUIDE Spring 2017

INSTALLATION GUIDE Spring 2017 INSTALLATION GUIDE Spring 2017 Copyright and Disclaimer This document, as well as the software described in it, is furnished under license of the Instant Technologies Software Evaluation Agreement and

More information

DIRAC pilot framework and the DIRAC Workload Management System

DIRAC pilot framework and the DIRAC Workload Management System Journal of Physics: Conference Series DIRAC pilot framework and the DIRAC Workload Management System To cite this article: Adrian Casajus et al 2010 J. Phys.: Conf. Ser. 219 062049 View the article online

More information

Odette CA Help File and User Manual

Odette CA Help File and User Manual How to Order and Install Odette Certificates For a German version of this file please follow this link. Odette CA Help File and User Manual 1 Release date 31.05.2016 Contents Preparation for Ordering an

More information

Introduction to BioHPC New User Training

Introduction to BioHPC New User Training Introduction to BioHPC New User Training [web] [email] portal.biohpc.swmed.edu biohpc-help@utsouthwestern.edu 1 Updated for 2019-02-06 Overview Today we re going to cover: What is BioHPC? How do I access

More information

Bitnami Re:dash for Huawei Enterprise Cloud

Bitnami Re:dash for Huawei Enterprise Cloud Bitnami Re:dash for Huawei Enterprise Cloud Description Re:dash is an open source data visualization and collaboration tool. It was designed to allow fast and easy access to billions of records in all

More information

PRISM - FHF The Fred Hollows Foundation

PRISM - FHF The Fred Hollows Foundation PRISM - FHF The Fred Hollows Foundation MY WORKSPACE USER MANUAL Version 1.2 TABLE OF CONTENTS INTRODUCTION... 4 OVERVIEW... 4 THE FHF-PRISM LOGIN SCREEN... 6 LOGGING INTO THE FHF-PRISM... 6 RECOVERING

More information

Setup Desktop Grids and Bridges. Tutorial. Robert Lovas, MTA SZTAKI

Setup Desktop Grids and Bridges. Tutorial. Robert Lovas, MTA SZTAKI Setup Desktop Grids and Bridges Tutorial Robert Lovas, MTA SZTAKI Outline of the SZDG installation process 1. Installing the base operating system 2. Basic configuration of the operating system 3. Installing

More information

Page 1 WEB CLIENT WEBCLIENT DEPARTM INVOICE VOUCHER GUIDE CHECK REQUST USER GUIDE

Page 1 WEB CLIENT WEBCLIENT DEPARTM INVOICE VOUCHER GUIDE CHECK REQUST USER GUIDE Page 1 WEB CLIENT WEBCLIENT DEPARTM INVOICE VOUCHER GUIDE CHECK REQUST USER GUIDE A. Processing an Invoice 1. Submitting an invoice for approval a. Open the web client using any browser by clicking on

More information

Synthetic Monitoring Professional Certification. Exam Blueprint

Synthetic Monitoring Professional Certification. Exam Blueprint Synthetic Monitoring Professional Certification Exam Blueprint Introduction Synthetic Monitoring Professional Certification validates that you have knowledge of the Synthetic Monitoring infrastructure,

More information

Troubleshooting Grid authentication from the client side

Troubleshooting Grid authentication from the client side System and Network Engineering RP1 Troubleshooting Grid authentication from the client side Adriaan van der Zee 2009-02-05 Abstract This report, the result of a four-week research project, discusses the

More information

RolePoint Apply. Product Overview.

RolePoint Apply. Product Overview. RolePoint Apply Product Overview www.rolepoint.com Contents Introduction High Level Architecture Building an Apply Process - Creating an Account - Building Process - Preview Jobs Managing Your RolePoint

More information

Introduction to BioHPC

Introduction to BioHPC Introduction to BioHPC New User Training [web] [email] portal.biohpc.swmed.edu biohpc-help@utsouthwestern.edu 1 Updated for 2017-01-04 Overview Today we re going to cover: What is BioHPC? How do I access

More information

This help covers the ordering, download and installation procedure for Odette Digital Certificates.

This help covers the ordering, download and installation procedure for Odette Digital Certificates. This help covers the ordering, download and installation procedure for Odette Digital Certificates. Answers to Frequently Asked Questions are available online CONTENTS Preparation for Ordering an Odette

More information

Developing Microsoft Azure Solutions

Developing Microsoft Azure Solutions Course 20532C: Developing Microsoft Azure Solutions Course details Course Outline Module 1: OVERVIEW OF THE MICROSOFT AZURE PLATFORM This module reviews the services available in the Azure platform and

More information

From using an External Harddrive, to a Google Cloud Drive; there is no one way to backup data.

From using an External Harddrive, to a Google Cloud Drive; there is no one way to backup data. Mac (OS X): Data Backup Guide 6/14/2016 Why: Backing up data should be done on a regular basis, not just when you think it is necessary, as a failure can happen at any time. While there are no set intervals

More information

Perceptive TransForm E-Forms Manager

Perceptive TransForm E-Forms Manager Perceptive TransForm E-Forms Manager Installation and Setup Guide Version: 8.x Date: February 2017 2016-2017 Lexmark. All rights reserved. Lexmark is a trademark of Lexmark International Inc., registered

More information

E-Portfolio User Guide for Verifiers

E-Portfolio User Guide for Verifiers Wessex Public Health Practitioner Registration Support Scheme E-Portfolio User Guide for Verifiers Contents 1. Logging in for the first time 2. Finding your practitioner 3. Changing your password 4. Changing

More information

Assignment 3 GridNexus Job Submission. Authors: Grid Computing Course Team C. Ferner and B. Wilkinson February 5, 2010

Assignment 3 GridNexus Job Submission. Authors: Grid Computing Course Team C. Ferner and B. Wilkinson February 5, 2010 I. Introduction Assignment 3 GridNexus Job Submission Authors: Grid Computing Course Team C. Ferner and B. Wilkinson February 5, 2010 In this assignment, you will use the two programs that you developed

More information

Slurm and Abel job scripts. Katerina Michalickova The Research Computing Services Group SUF/USIT November 13, 2013

Slurm and Abel job scripts. Katerina Michalickova The Research Computing Services Group SUF/USIT November 13, 2013 Slurm and Abel job scripts Katerina Michalickova The Research Computing Services Group SUF/USIT November 13, 2013 Abel in numbers Nodes - 600+ Cores - 10000+ (1 node->2 processors->16 cores) Total memory

More information

The MHBE Training Portal Producer Authorization OE

The MHBE Training Portal Producer Authorization OE The MHBE Training Portal Producer Authorization OE 2017-2018 1 Contents Introduction and Overview... 3 Major Training Milestones... 3 OE 17-18 Training Requirement Chart... 3 Step-by-Step Instructions...

More information

Slurm and Abel job scripts. Katerina Michalickova The Research Computing Services Group SUF/USIT October 23, 2012

Slurm and Abel job scripts. Katerina Michalickova The Research Computing Services Group SUF/USIT October 23, 2012 Slurm and Abel job scripts Katerina Michalickova The Research Computing Services Group SUF/USIT October 23, 2012 Abel in numbers Nodes - 600+ Cores - 10000+ (1 node->2 processors->16 cores) Total memory

More information

Click Studios. Passwordstate. Remote Session Launcher. Installation Instructions

Click Studios. Passwordstate. Remote Session Launcher. Installation Instructions Passwordstate Remote Session Launcher Installation Instructions This document and the information controlled therein is the property of Click Studios. It must not be reproduced in whole/part, or otherwise

More information

High Performance Computing (HPC) Club Training Session. Xinsheng (Shawn) Qin

High Performance Computing (HPC) Club Training Session. Xinsheng (Shawn) Qin High Performance Computing (HPC) Club Training Session Xinsheng (Shawn) Qin Outline HPC Club The Hyak Supercomputer Logging in to Hyak Basic Linux Commands Transferring Files Between Your PC and Hyak Submitting

More information

Using the Portal. The Overview tab displays your Quick Links, announcements from your agency, recent documents, and a list of your agency contacts.

Using the Portal. The Overview tab displays your Quick Links, announcements from your agency, recent documents, and a list of your agency contacts. Using the Portal We are happy to provide you with access to your insurance information anytime via the web. By now you should have received an invitation email with information to activate your Portal

More information

Verizon Registration Process:

Verizon Registration Process: All controlled substances will require the prescriber to electronically sign the prescription prior to transmitting it to the pharmacy. Emdeon has partnered with Verizon to provide the digital signing

More information

Ministry Platform: The Portal

Ministry Platform: The Portal Ministry Platform: The Portal This user guide will allow you to see how to view a group that you are a leader of and what data you can manipulate. Before starting, WHAT YOU DO IS DIRECTLY CONNECTED TO

More information

Perceptive TransForm E-Forms Manager 8.x. Installation and Configuration Guide March 1, 2012

Perceptive TransForm E-Forms Manager 8.x. Installation and Configuration Guide March 1, 2012 Perceptive TransForm E-Forms Manager 8.x Installation and Configuration Guide March 1, 2012 Table of Contents 1 Introduction... 3 1.1 Intended Audience... 3 1.2 Related Resources and Documentation... 3

More information

Customer Online Support Demonstration. 1

Customer Online Support Demonstration.  1 Customer Online Support Demonstration 1 Introduction SATHYA is committed to simplifying and improving your support experience. As we launch our enhanced online case management capabilities, you will see

More information

Tutorial for CMS Users: Data Analysis on the Grid with CRAB

Tutorial for CMS Users: Data Analysis on the Grid with CRAB Tutorial for CMS Users: Data Analysis on the Grid with CRAB Benedikt Mura, Hartmut Stadie Institut für Experimentalphysik, Universität Hamburg September 2nd, 2009 In this part you will learn... 1 how to

More information

PDF SHARE FORMS. Online, Offline, OnDemand. PDF forms and SharePoint are better together. PDF Share Forms Enterprise 3.0.

PDF SHARE FORMS. Online, Offline, OnDemand. PDF forms and SharePoint are better together. PDF Share Forms Enterprise 3.0. PDF SHARE FORMS Online, Offline, OnDemand PDF forms and SharePoint are better together PDF Share Forms Enterprise 3.0 Install Guide SharePoint 2013 Contents Disclaimer...3 Copyright...3 About this guide...3

More information

VMware AirWatch Content Gateway for Linux. VMware Workspace ONE UEM 1811 Unified Access Gateway

VMware AirWatch Content Gateway for Linux. VMware Workspace ONE UEM 1811 Unified Access Gateway VMware AirWatch Content Gateway for Linux VMware Workspace ONE UEM 1811 Unified Access Gateway You can find the most up-to-date technical documentation on the VMware website at: https://docs.vmware.com/

More information

Scientist s User Interface (SUI)

Scientist s User Interface (SUI) WWW-portal for all CSC users https://sui.csc.fi Sign up as customer Manage your account Access your data Download material Watch videos Monitor hosts and jobs Use applications Personalize your use Participate

More information

Using VMware vrealize Orchestrator Plug-Ins. vrealize Orchestrator 6.0

Using VMware vrealize Orchestrator Plug-Ins. vrealize Orchestrator 6.0 Using VMware vrealize Orchestrator Plug-Ins vrealize Orchestrator 6.0 You can find the most up-to-date technical documentation on the VMware website at: https://docs.vmware.com/ If you have comments about

More information

Perceptive TransForm. Licensing Guide. Version: 8.x

Perceptive TransForm. Licensing Guide. Version: 8.x Perceptive TransForm Licensing Guide Version: 8.x Written by: Product Knowledge, R&D Date: May 2018 2008-2018 Hyland Software, Inc. and its affiliates. Table of Contents Request TransForm licenses... 4

More information

Copyright 2018 VMware, Inc. All rights reserved. Copyright and trademark information.

Copyright 2018 VMware, Inc. All rights reserved. Copyright and trademark information. You can find the most up-to-date technical documentation on the VMware website at: https://docs.vmware.com/ If you have comments about this documentation, submit your feedback to docfeedback@vmware.com

More information

User Manual. MDWorkflow. Web Application from Midrange Dynamics

User Manual. MDWorkflow. Web Application from Midrange Dynamics User Manual MDWorkflow Web Application from Midrange Dynamics (Version 7.1) Tel. +41 (41) 710 27 77, Fax +41 (41) 710 95 87, www.midrangedynamics.com 1 / 36 MDWorkflow - Table of Contents 1 INTRODUCTION...

More information

ORAC Match. User Manual for Support Workers. V1.0 Updated 13/11/2017

ORAC Match. User Manual for Support Workers. V1.0 Updated 13/11/2017 ORAC Match User Manual for Support Workers V1.0 Updated 13/11/2017 1 Contents: The Login Screen: ORAC can be accessed through any web browser, smartphone or tablet via the following link; https://app.orac.support

More information

Release Notes for Cisco Service Portal for Release 9.4

Release Notes for Cisco Service Portal for Release 9.4 Release Notes for for Release 9.4 First Published: July 27, 2012 Contents New and Changed Information, page 1 Installation Notes, page 5 Limitations and Restrictions, page 5 Important Notes, page 6 Documentation

More information

My Mediasite Guide (V7.2) Create and Share Videos from Your Desktop

My Mediasite Guide (V7.2) Create and Share Videos from Your Desktop My Mediasite Guide (V7.2) Create and Share Videos from Your Desktop Introduction: Your My Mediasite Portal provides instructors access to the Mediasite desktop Recorder (MDR) for creation of presentations

More information

awarding excellence Parnassus FAQs

awarding excellence Parnassus FAQs Parnassus FAQs This document is designed to help answer frequently asked questions and resolve problems that you might encounter when using Parnassus. Please note that some of the screen shots will not

More information

Should you encounter any issues or have questions as you go through this registration process, please send an to:

Should you encounter any issues or have questions as you go through this registration process, please send an  to: User Registration In order to use EFIS 2.0, a one-time registration process is required. This document outlines the steps required to register your user account and access EFIS 2.0: This registration process

More information

EGEODE. !Dominique Thomas;! Compagnie Générale de Géophysique (CGG, France) R&D. Expanding Geosciences On Demand 1. «Expanding Geosciences On Demand»

EGEODE. !Dominique Thomas;! Compagnie Générale de Géophysique (CGG, France) R&D. Expanding Geosciences On Demand 1. «Expanding Geosciences On Demand» EGEODE «Expanding Geosciences On Demand»!Dominique Thomas;! Compagnie Générale de Géophysique (CGG, France) R&D Expanding Geosciences On Demand 1 Web data browser Expanding Geosciences On Demand 2 Data

More information

Getting Started with Serial and Parallel MATLAB on bwgrid

Getting Started with Serial and Parallel MATLAB on bwgrid Getting Started with Serial and Parallel MATLAB on bwgrid CONFIGURATION Download either bwgrid.remote.r2014b.zip (Windows) or bwgrid.remote.r2014b.tar (Linux/Mac) For Windows users, unzip the download

More information

User Communication Citrix SecureAuth

User Communication Citrix SecureAuth Prerequisites 1 *Non-Newmont PC ONLY* If you are using any PC except your Newmont issued system, you must follow this step if you are using your Newmont issued system you can move to First Time Enrollment

More information

Grid services. Enabling Grids for E-sciencE. Dusan Vudragovic Scientific Computing Laboratory Institute of Physics Belgrade, Serbia

Grid services. Enabling Grids for E-sciencE. Dusan Vudragovic Scientific Computing Laboratory Institute of Physics Belgrade, Serbia Grid services Dusan Vudragovic dusan@phy.bg.ac.yu Scientific Computing Laboratory Institute of Physics Belgrade, Serbia Sep. 19, 2008 www.eu-egee.org Set of basic Grid services Job submission/management

More information

Introduction to Programming and Computing for Scientists

Introduction to Programming and Computing for Scientists Oxana Smirnova (Lund University) Programming for Scientists Lecture 4 1 / 44 Introduction to Programming and Computing for Scientists Oxana Smirnova Lund University Lecture 4: Distributed computing Most

More information