Difference between revisions of "VO-specific software and modules"

From PDP/Grid Wiki
Jump to navigationJump to search
Line 1: Line 1:
 
=Introduction=
 
=Introduction=
  
VOs sometimes have a need to deploy their own software at a particular site. For this the '''S'''oftware '''G'''roup '''M'''anager VOMS role is available. Not all VOs have this role and not all VOs with this roles are supported at each site. However, if you are an SGM for a VO which '''is''' supported at Nikhef then this HOWTO will explain how you can deploy your own software and add your own module to the available modules for the <tt>modules</tt> command.
+
VOs sometimes have a need to deploy their own software at a particular site. For this the '''S'''oftware '''G'''roup '''M'''anager VOMS role is available. Not all VOs have this role and not all VOs with this role are supported at each site. If you are a Software Group Manager for a particular VO then the VOMS role will have been assigned to you and you can generate a SGM-specific proxy.
 +
 
 +
For these Software Group Managers this HOWTO will explain how you can deploy your own software and add your own module to the available modules for the <tt>modules</tt> command.
  
 
==VOMS Role==
 
==VOMS Role==
In this HOWTO the VO <tt>vlemed</tt> was chosen as the example. This VO has a role
+
The HEP VOs have an SGM role, usually of the form
 +
  /Role=lcgadmin
 +
However, in this HOWTO the VO <tt>vlemed</tt> was chosen as the example. This VO has a role
 
  /Role=sgm
 
  /Role=sgm
available, which gives users who possess that role the right to install software in the VO specific software area
+
available, which gives users who possess that role the right to install software in the VO specific software area.
 +
To generate an SGM-proxy use
 +
$ voms-proxy-init --voms vlemed:/vlemed/Role=sgm
 +
You can view your current VOMS roles using
 +
$ voms-proxy-info -all | sed 's/^/ /'
 +
subject  : /O=dutchgrid/O=users/O=nikhef/CN=Jan Just Keijser/CN=proxy
 +
issuer    : /O=dutchgrid/O=users/O=nikhef/CN=Jan Just Keijser
 +
identity  : /O=dutchgrid/O=users/O=nikhef/CN=Jan Just Keijser
 +
type      : proxy
 +
strength  : 1024 bits
 +
path      : /tmp/x509up_u7651
 +
timeleft  : 11:59:33
 +
=== VO vlemed extension information ===
 +
VO        : vlemed
 +
subject  : /O=dutchgrid/O=users/O=nikhef/CN=Jan Just Keijser
 +
issuer    : /O=dutchgrid/O=hosts/OU=sara.nl/CN=voms.grid.sara.nl
 +
attribute : '''/vlemed/Role=sgm/Capability=NULL'''
 +
attribute : /vlemed/Role=NULL/Capability=NULL
 +
timeleft  : 11:59:33
 +
uri      : voms.grid.sara.nl:30003
  
 
==VO Specific software area==
 
==VO Specific software area==
Line 12: Line 35:
 
  VO_&lt;VO&gt;_SW_DIR
 
  VO_&lt;VO&gt;_SW_DIR
 
e.g. for <tt>vlemed</tt> it is <tt>VO_VLEMED_SW_DIR</tt>
 
e.g. for <tt>vlemed</tt> it is <tt>VO_VLEMED_SW_DIR</tt>
 
  
 
=deploy software=
 
=deploy software=

Revision as of 11:29, 14 December 2009

Introduction

VOs sometimes have a need to deploy their own software at a particular site. For this the Software Group Manager VOMS role is available. Not all VOs have this role and not all VOs with this role are supported at each site. If you are a Software Group Manager for a particular VO then the VOMS role will have been assigned to you and you can generate a SGM-specific proxy.

For these Software Group Managers this HOWTO will explain how you can deploy your own software and add your own module to the available modules for the modules command.

VOMS Role

The HEP VOs have an SGM role, usually of the form

 /Role=lcgadmin

However, in this HOWTO the VO vlemed was chosen as the example. This VO has a role

/Role=sgm

available, which gives users who possess that role the right to install software in the VO specific software area. To generate an SGM-proxy use

$ voms-proxy-init --voms vlemed:/vlemed/Role=sgm

You can view your current VOMS roles using

$ voms-proxy-info -all | sed 's/^/ /'
subject   : /O=dutchgrid/O=users/O=nikhef/CN=Jan Just Keijser/CN=proxy
issuer    : /O=dutchgrid/O=users/O=nikhef/CN=Jan Just Keijser
identity  : /O=dutchgrid/O=users/O=nikhef/CN=Jan Just Keijser
type      : proxy
strength  : 1024 bits
path      : /tmp/x509up_u7651
timeleft  : 11:59:33
=== VO vlemed extension information ===
VO        : vlemed
subject   : /O=dutchgrid/O=users/O=nikhef/CN=Jan Just Keijser
issuer    : /O=dutchgrid/O=hosts/OU=sara.nl/CN=voms.grid.sara.nl
attribute : /vlemed/Role=sgm/Capability=NULL
attribute : /vlemed/Role=NULL/Capability=NULL
timeleft  : 11:59:33
uri       : voms.grid.sara.nl:30003

VO Specific software area

Normally this software area is denoted using the environment variable

VO_<VO>_SW_DIR

e.g. for vlemed it is VO_VLEMED_SW_DIR

deploy software

cd $VO_VLEMED_SW_DIR

- wget - tar xzvf

add module

mkdir -p $VO_VLEMED_SW_DIR/modules/mypackage
cd $VO_VLEMED_SW_DIR/modules/mypackage
wget modulefile
#%Module1.0#####################################################################
##
## fsl modulefile
##

proc ModulesHelp { } {
        global fslversion

        puts stderr "\tSet up the environment for FSL"
        puts stderr "\n\tVersion $fslversion\n"
}

module-whatis   "sets FSL environment"

# for Tcl script use only
set     fslversion      5.0

set fsldir      "$env(VO_VLEMED_SW_DIR)/fsl-5.0"

prepend-path    PATH    "$fsldir/bin"
setenv          FSLDIR  "$fsldir"

Use the module

  • launch normal job
  • check MODULEPATH
$ echo $MODULEPATH
[SNIP]:/etc/opt/vl-e/modulefiles::/data/esia/vlemed/modules
  • check available modules
$ module avail
[SNIP]
------------------------------------ /data/esia/vlemed/modules -------------------------------------
fsl/5.0       mypackage/5.0
  • use it:
$ module load fsl

show that it does not pick up the vlemed version:

$ module list
Currently Loaded Modulefiles:
  1) fsl/4.1.4

use

module load fsl/5.0

for that

  • new packages are picked up automatically:
$ module load mypackage
$ module list
Currently Loaded Modulefiles:
  1) fsl/4.1.4       2) mypackage/5.0