Changes between Version 15 and Version 16 of QCG-SimpleClient

Show
Ignore:
Timestamp:
10/09/12 17:59:50 (12 years ago)
Author:
mmamonski
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • QCG-SimpleClient

    v15 v16  
    33 
    44= User Interface Machine = 
     5Every cluster in PL-Grid can be accessed from the QosCosGrid UI machine: qcg.man.poznan.pl. You can log in there using your PL-Grid account: 
    56{{{ 
    67ssh plg[your-id]@qcg.man.poznan.pl 
     8}}} 
     9== Preparing credentials == 
     101. Copy your credentials (PKCS12 keystore) to the qcg machine: 
     11{{{ 
     12scp plg[your-id].p12 plg[your-id]@qcg.man.poznan.pl:~/ 
     13}}} 
     142. Create `~/.globus` directory 
     15{{{ 
     16mkdir ~/.globus 
     17}}} 
     183. Convert your credentials to the `.pem` format 
     19{{{ 
     20 
     21$ openssl pkcs12 -nocerts -in usercred.p12 -out ~/.globus/userkey.pem 
     22$ openssl pkcs12 -clcerts -nokeys -in usercred.p12 -out ~/.globus/usercert.pem 
     23$ chmod 644 ~/.globus/usercert.pem 
     24$ chmod 400 ~/.globus/userkey.pem 
    725}}} 
    826