Changes between Version 1 and Version 2 of qcg-client-config

Show
Ignore:
Timestamp:
11/26/13 22:56:17 (10 years ago)
Author:
piontek
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • qcg-client-config

    v1 v2  
    2929 
    3030= Configuration of the client = 
    31 One can overwrite global client configuration crating or editing the ~/.qcg/qcg.conf file and setting the following variables: 
     31One can overwrite global client configuration crating or editing the ~/.qcg/qcg.conf file 
     32 
     33'''IMPORTANT:''' All variables have to be "exported". 
     34 
     35== Proxy configuration == 
    3236* QCG_ENV_PROXY_DURATION - default lifetime (in hours) of the proxy certificate created by the client, 
    3337* QCG_ENV_PROXY_DURATION_MIN - minimal liefetime of the proxy certificate in hours. If the remaining lifetime is shorter then the given value the proxy is automatically recreated by the client 
     38{{{ 
     39export QCG_ENV_PROXY_DURATION=600 
     40export QCG_ENV_PROXY_DURATION_MIN=240 
     41}}} 
     42 
     43== Columns (qcg-list, qcg-rlist) configuration == 
     44* QCG_ENV_TASK_FORMAT - Format for the qcg-list command. Default format: "%-22I  %-20N  %-15T  %-15X  %-15E  %-16S  %-8H  %-5F  %-20D"; 
     45* QCG_ENV_RESERVATION_FORMAT - Format for the qcg-rlist command. Default format: "%-22I  %-20N  %-15T  %-15X  %-15E  %-16S  %-8H  %-5C  %-20D"; 
     46* QCG_ENV_LIST_TIME_FORMAT - date format.  Default format: "dd.MM.yy HH:mm" 
     47 
     48{{{ 
     49export QCG_TASK_FORMAT="%-22I  %-20N  %-15T  %-15X  %-15E  %-16S  %-8H  %-5F  %-20D"; 
     50export QCG_RESERVATION_FORMAT="%-22I  %-20N  %-15T  %-15X  %-15E  %-16S  %-8H  %-5C  %-20D"; 
     51export QCG_LIST_TIME_FORMAT="dd.MM.yy HH:mm" 
     52}}} 
     53 
     54== Interactive tasks configuration == 
    3455* QCG_ENV_CONNECT_TIMEOUT - maximal time (in seconds) that the client waits to connect to the interactive sesion, 
     56{{{ 
     57export QCG_ENV_CONNECT_TIMEOUT=60 
     58}}} 
     59 
     60== Security configuration == 
    3561* QCG_ENV_SKIP_KEY_CHECK - If the variable is not empty client do not check the correctness of the key format. Must be check if the client is configured to use the proxy and the key/certificate are not provided. 
     62* QCG_ENV_CERTIFICATES - directory with CA certificates. 
     63{{{ 
     64export QCG_ENV_SKIP_KEY_CHECK=true 
     65export QCG_ENV_CERTIFICATES=/etc/grid-security/certificates 
     66}}} 
     67'''IMPORTANT:'''Big number of CA certificates can increase the time needed to initialize the client.