Certificate to UI

From T2B Wiki
Revision as of 10:51, 5 November 2015 by ROMAIN ROUGNY rrougny@vub.ac.be (talk | contribs) (Created page with "<center><span style="font-size: 200%;"> Putting your certificate on the UIs </span></center> - Create a .globus directory in your home directory on the mX machines mkdir .gl...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
Putting your certificate on the UIs

- Create a .globus directory in your home directory on the mX machines

mkdir .globus

- Copy the certificate you extracted from your browser to any mX machine

scp mycert.p12 $USER@m0.iihe.ac.be:.globus/mycert.p12

- Change it to private/public keys with openssl

openssl pkcs12 -nocerts -in cert.p12 -out ~/.globus/userkey.pem
openssl pkcs12 -clcerts -nokeys -in cert.p12 -out ~/.globus/usercert.pem

- Make sure they have the correct permissions

chmod 400 ~/.globus/userkey.pem
chmod 644 ~/.globus/usercert.pem