Changes between Version 54 and Version 55 of client_installation_guide_rpm

Show
Ignore:
Timestamp:
10/02/12 14:54:51 (12 years ago)
Author:
piontek
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • client_installation_guide_rpm

    v54 v55  
    277277The following properties has to be set: 
    278278* QCG_URL_DEFAULT - the URL of QCG-Broker service 
    279 {{{ 
    280 #!div style="font-size: 90%" 
    281 {{{#!sh 
    282 export QCG_URL_DEFAULT="https://qcg-broker.man.poznan.pl:8443/qcg/services/" 
    283 }}} 
    284 }}} 
    285  
    286279* QCG_DN_DEFAULT - the Distinguished Name of the QCG-Broker service 
    287 {{{ 
    288 #!div style="font-size: 90%" 
    289 {{{#!sh 
    290 export QCG_DN_DEFAULT="/C=PL/O=GRID/O=PSNC/CN=qcg-broker/qcg-broker.man.poznan.pl" 
    291 }}} 
    292 }}} 
    293  
    294280* QCG_CLIENT_LOCATION_DEFAULT - the location ot the client. This value is set during the installation procedure and  
    295 {{{ 
    296 #!div style="font-size: 90%" 
    297 {{{#!sh 
    298 export QCG_CLIENT_LOCATION_DEFAULT=/usr/share/qcg/qcg-broker-client 
    299 }}} 
    300 }}} 
    301281 
    302282Optionally it is possible to configure the host and port of GridFTP service which will be used by client to staging input/output files 
    303283* GFTP_HOSTNAME - hostname of the host where the gridFTP service is installed. If the property is not set the default value is hostname of the host where the client is installed, 
    304 {{{ 
    305 #!div style="font-size: 90%" 
    306 {{{#!sh 
    307 export GFTP_HOSTNAME=qcg.man.poznan.pl 
    308 }}} 
    309 }}} 
    310  
    311284* GFTP_PORT - port which the gridFTP service is listening on. If the property is not set the default value is "2811". 
    312 {{{ 
    313 #!div style="font-size: 90%" 
    314 {{{#!sh 
    315 export GFTP_PORT=2811 
    316 }}} 
    317 }}} 
    318  
    319285 
    320286Additionally it is possible to configure also the settings responsible for defining the policy for creation and refreshing of user's proxy. 
    321287* QCG_PROXY_DURATION_DEFAULT - default length in hours of the created proxy  
    322 {{{ 
    323 #!div style="font-size: 90%" 
    324 {{{#!sh 
     288* QCG_PROXY_DURATION_MIN - minimal acceptable lifetime of the proxy. If the remaining lifetime of the proxy is smaller then the value, the proxy will be automatically recreated. 
     289 
     290{{{ 
     291#!div style="font-size: 90%" 
     292{{{#!sh 
     293export QCG_URL_DEFAULT="https://qcg-broker.man.poznan.pl:8443/qcg/services/" 
     294export QCG_DN_DEFAULT="/C=PL/O=GRID/O=PSNC/CN=qcg-broker/qcg-broker.man.poznan.pl" 
     295 
     296export GFTP_HOSTNAME=qcg.man.poznan.pl 
     297export GFTP_PORT=2811 
     298 
    325299export QCG_PROXY_DURATION_DEFAULT=600 
    326 }}} 
    327 }}} 
    328 * QCG_PROXY_DURATION_MIN - minimal acceptable lifetime of the proxy. If the remaining lifetime of the proxy is smaller then the value, the proxy will be automatically recreated. 
    329 {{{ 
    330 #!div style="font-size: 90%" 
    331 {{{#!sh 
    332300export QCG_PROXY_DURATION_MIN=480 
    333301}}} 
    334302}}} 
    335  
    336