Changes between Version 153 and Version 154 of Doc/gLite/TemplateCustomization


Ignore:
Timestamp:
Feb 8, 2010, 8:15:03 PM (16 years ago)
Author:
/O=GRID-FR/C=FR/O=CNRS/OU=LAL/CN=Michel Jouvin
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Doc/gLite/TemplateCustomization

    v153 v154  
    494494''Note: sandbox area sharing is configured independently of other file systems specified in `WN_SHARED_AREAS`. Sandbox areas are normally not specified in `WN_SHARED_AREAS` but if they are, this takes predence over the specific configuration done with `CREAMCE_SANDBOX_MPOINTS`.''
    495495
    496 When using sandbox sharing with several CEs (specified in the same `CE_HOSTS` variable), it is important to define a distinct mount point for each CE.
     496When using sandbox sharing with several CEs (specified in the same `CE_HOSTS` variable), it is important to define a distinct mount point for each CE.  An example using `CREAMCE_SANDBOX_MPOINTS`:
     497{{{
     498variable CREAMCE_SANDBOX_MPOINTS ?= nlist(
     499  'ce1.example.org', '/cream_sandbox/ce1.example.org',
     500  'ce2.example.org', '/cream_sandbox/ce2.example.org',
     501);
     502}}}
     503
     504Or a possible definition that will implement such a naming scheme for every CREAM CE defined:
     505{{{
     506variable CE_HOSTS_CREAM ?= list('cream1.example.org','cream2.example.org');
     507variable CE_HOSTS_LCG ?= list('lcg1.example.org','lcg2.example.org');
     508variable CE_HOSTS ?= merge(CE_HOSTS_LCG,CE_HOSTS_CREAM);
     509variable CREAMCE_SANDBOX_MPOINTS ?= {
     510  foreach (i;ce;CE_HOSTS_CREAM) {
     511    SELF[ce] = '/cream_sandbox/'+ce;
     512  };
     513  SELF;
     514};
     515}}}
    497516
    498517=== Home Directories of VO Accounts ===