Changes between Version 36 and Version 37 of Doc/gLite/TemplateCustomization


Ignore:
Timestamp:
Mar 25, 2007, 12:00:31 AM (19 years ago)
Author:
/C=FR/O=CNRS/OU=UMR8607/CN=Michel Jouvin/emailAddress=jouvin@…
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Doc/gLite/TemplateCustomization

    v36 v37  
    278278You can define a list of several SEs on your site, in variable (list) `SE_HOSTS`. There must be one corresponding entry for each SE host in variable `SE_TYPES`, a nlist where the key is the host name as defined in `SE_HOSTS`.
    279279
     280=== CE Close SEs ===
     281
     282Variable `CE_CLOSE_SE_LIST` defines the SEs that must be registered in BDII as a close SE for the current CE. It can be either a value used for every VO or a nlist with a default value (key is `DEFAULT`) and one entry per VO with a different close SE (key is the VO name). Each value must be a string if there is only one close SE or a list of SEs.
     283
     284`CE_CLOSE_SE_LIST` defaults to deprecated `SE_HOST_DEFAULT` if defined or to the first SE in SE_HOSTS variaible. If you want all your SEs to be registered as close SEs, you need to add the following declaration :
     285{{{
     286variable CE_CLOSE_SE_LIST = SE_HOSTS;
     287}}}
     288
     289It is valid to have no close SE defined. To remove default definition, you need to do :
     290{{{
     291variable CE_CLOSE_SE_LIST = nlist('DEFAULT', undef);
     292}}}
     293
     294It is valid for the close SE to be outside your site but this is probably not recommended for standard configurations.
     295
    280296=== Default SE ===
    281297
    282298Variable `CE_DEFAULT_SE` is used to define the default SE for the site. It can be either a SE name or a nlist with a default entry (key is `DEFAULT`) and one entry per VO with a different default SE (key is the VO name).
    283299
    284 By default, if not explicitly defined, this is the first host in `SE_HOSTS` list. The default SE can be outside your site (probably not recommended for standard configurations).
    285 
    286 ''Note : variable `SE_HOST_DEFAULT` is deprecated.''
    287 
    288 === CE Close SEs ===
    289 
    290 Variable `CE_CLOSE_SE_LIST` defines the SEs that must be registered in BDII as a close SE for the current CE. It can be either a list used for every VO or a nlist with a default value (key is `DEFAULT`) and one entry per VO with a different close SE (key is the VO name). Each value must be a list of SE.
    291 
    292 `CE_CLOSE_SE_LIST` defaults to `CE_DEFAULT_SE`. If you want all your SEs to be registered as close SEs, you need to add the following declaration :
    293 {{{
    294 variable CE_CLOSE_SE_LIST SE_HOSTS;
    295 }}}
     300By default, if not explicitly defined, it defaults to the first SE in CE_CLOSE_SE_LIST entries. The default SE can be outside your site (probably not recommended for standard configurations).
    296301
    297302== DPM Configuration ==