Changes between Version 2 and Version 3 of installation_QCG_Broker_Client
- Timestamp:
- 05/18/11 17:16:32 (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
installation_QCG_Broker_Client
v2 v3 117 117 }}} 118 118 }}} 119 * QosCosGrid testing repository119 * !QosCosGrid testing repository 120 120 {{{ 121 121 #!div style="font-size: 90%" … … 150 150 151 151 * Client looks for proxy according to following rules: 152 <pre> 152 {{{ 153 #!div style="font-size: 90%" 154 {{{#!default 153 155 It first checks the X509_USER_PROXY system property. If the property 154 156 is not set, it checks next the 'proxy' property in the current … … 161 163 If a UID system property is not set, the username will be used instead 162 164 of the UID. That is, it returns ${tempdir}/x509up_u_${username} 163 </pre> 165 }}} 166 }}} 164 167 165 168 * Client looks for the CA directory according to following rules: 166 <pre> 169 {{{ 170 #!div style="font-size: 90%" 171 {{{#!sh 167 172 It first checks the X509_CERT_DIR system property. If the property 168 173 is not set, it checks next the 'cacert' property in the current … … 175 180 system property is set then the ${GLOBUS_LOCATION}/share/certificates 176 181 directory is checked. 177 </pre> 178 179 CoG library configuration can be modified using the COG properties file '''~/.globus/cog.properties''' 180 <pre> 182 }}} 183 }}} 184 185 CoG library configuration can be modified using the COG properties file `~/.globus/cog.properties` 186 {{{ 187 #!div style="font-size: 90%" 188 {{{#!sh 181 189 #Java CoG Kit Configuration File 182 190 proxy=/tmp/x509up_u501 183 191 cacert=/etc/grid-security/certificates/ 184 </pre> 192 }}} 193 }}} 185 194 186 195 Additionaly the location of user's certificate and private key must be specified. 187 <pre> 196 {{{ 197 #!div style="font-size: 90%" 198 {{{#!sh 188 199 usercert=/home/piontek/.globus/usercert.pem 189 200 userkey=/home/piontek/.globus/userkey.pem 190 </pre> 191 If they are specified and user proxy certificate doesn't exist it will be automatically created by the client. Otherwise the proxy certificate has to be created by ''grid-proxy-init'' tool. 192 193 =Job Profile= 201 }}} 202 }}} 203 If they are specified and user proxy certificate doesn't exist it will be automatically created by the client. Otherwise the proxy certificate has to be created by `grid-proxy-init` tool. 204 205 = Job Profile = 194 206 Every experiment submitted to GRMS has to be described by XML-based document called "Job Profile". The structure of Job Profile is formalized by [http://node2.qoscosgrid.man.poznan.pl/~qcg/download/QCGJobProfile.xsd Job Profile schema]. 195 207