Changes between Version 1 and Version 2 of qcg-client-config
- Timestamp:
- 11/26/13 22:56:17 (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
qcg-client-config
v1 v2 29 29 30 30 = Configuration of the client = 31 One can overwrite global client configuration crating or editing the ~/.qcg/qcg.conf file and setting the following variables: 31 One 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 == 32 36 * QCG_ENV_PROXY_DURATION - default lifetime (in hours) of the proxy certificate created by the client, 33 37 * 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 {{{ 39 export QCG_ENV_PROXY_DURATION=600 40 export 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 {{{ 49 export QCG_TASK_FORMAT="%-22I %-20N %-15T %-15X %-15E %-16S %-8H %-5F %-20D"; 50 export QCG_RESERVATION_FORMAT="%-22I %-20N %-15T %-15X %-15E %-16S %-8H %-5C %-20D"; 51 export QCG_LIST_TIME_FORMAT="dd.MM.yy HH:mm" 52 }}} 53 54 == Interactive tasks configuration == 34 55 * QCG_ENV_CONNECT_TIMEOUT - maximal time (in seconds) that the client waits to connect to the interactive sesion, 56 {{{ 57 export QCG_ENV_CONNECT_TIMEOUT=60 58 }}} 59 60 == Security configuration == 35 61 * 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 {{{ 64 export QCG_ENV_SKIP_KEY_CHECK=true 65 export QCG_ENV_CERTIFICATES=/etc/grid-security/certificates 66 }}} 67 '''IMPORTANT:'''Big number of CA certificates can increase the time needed to initialize the client.