Certificate to UI: Difference between revisions
Jump to navigation
Jump to search
(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...") |
No edit summary |
||
(6 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
- Create a .globus directory in your home directory on the mX machines | - Create a .globus directory in your home directory on the mX machines | ||
mkdir .globus | mkdir .globus | ||
- | - From your laptop, copy the certificate in *.p12 format to any mX machine | ||
scp | scp cert.p12 $USER@mshort.iihe.ac.be:.globus/cert.p12 | ||
- Change it to private/public keys with openssl | - Change it to private/public keys with openssl (do not replace <user> with yours, the key and cert '''must''' be named ''userkey'' & ''usercert'') | ||
openssl pkcs12 -nocerts -in cert.p12 -out ~/.globus/userkey.pem | openssl pkcs12 -nocerts -in ~/.globus/cert.p12 -out ~/.globus/userkey.pem | ||
openssl pkcs12 -clcerts -nokeys -in cert.p12 -out ~/.globus/usercert.pem | openssl pkcs12 -clcerts -nokeys -in ~/.globus/cert.p12 -out ~/.globus/usercert.pem | ||
- Make sure they have the correct permissions | - Make sure they have the correct permissions | ||
chmod 400 ~/.globus/userkey.pem | chmod 400 ~/.globus/userkey.pem | ||
chmod 644 ~/.globus/usercert.pem | chmod 644 ~/.globus/usercert.pem |
Latest revision as of 13:20, 3 October 2023
- Create a .globus directory in your home directory on the mX machines
mkdir .globus
- From your laptop, copy the certificate in *.p12 format to any mX machine
scp cert.p12 $USER@mshort.iihe.ac.be:.globus/cert.p12
- Change it to private/public keys with openssl (do not replace <user> with yours, the key and cert must be named userkey & usercert)
openssl pkcs12 -nocerts -in ~/.globus/cert.p12 -out ~/.globus/userkey.pem openssl pkcs12 -clcerts -nokeys -in ~/.globus/cert.p12 -out ~/.globus/usercert.pem
- Make sure they have the correct permissions
chmod 400 ~/.globus/userkey.pem chmod 644 ~/.globus/usercert.pem