Changes between Version 63 and Version 64 of client_installation_guide_rpm
- Timestamp:
- 10/02/12 20:46:59 (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
client_installation_guide_rpm
v63 v64 13 13 14 14 == Certificate authorities == 15 For the PL-Grid project: Install Polish Grid and PL-Grid Simple-CA certificates: 16 17 -Add appropriate YUM repositories 15 16 === EGI IGTF CAs === 17 Install EGI Accepted CA certificates (this also install the Polish Grid CA) 18 * Add appropriate YUM repository 19 {{{ 20 #!div style="font-size: 90%" 21 {{{#!sh 22 cat > /etc/yum.repos.d/eugridpma.repo << EOF 23 [EGI-trustanchors] 24 name=EGI-trustanchors 25 baseurl=http://repository.egi.eu/sw/production/cas/1/current/ 26 gpgkey=http://repository.egi.eu/sw/production/cas/1/GPG-KEY-EUGridPMA-RPM-3 27 gpgcheck=1 28 enabled=1 29 }}} 30 }}} 31 32 * Install certificates 33 {{{ 34 #!div style="font-size: 90%" 35 {{{#!sh 36 yum install ca-policy-egi-core 37 }}} 38 }}} 39 40 The above instructions were based on this [https://wiki.egi.eu/wiki/EGI_IGTF_Release manual] 41 42 === PL-Grid Simpla-CA certificate (not part of IGTF) === 43 * Add appropriate YUM repositories 18 44 {{{ 19 45 #!div style="font-size: 90%" … … 26 52 metadata_expire=300 27 53 gpgcheck=0 28 EOF29 }}}30 }}}31 32 {{{33 #!div style="font-size: 90%"34 {{{#!sh35 cat > /etc/yum.repos.d/eugridpma.repo << EOF36 [EUGRIDPMA-igtf]37 name=EUGRIDPMA igtf repository38 baseurl=https://dist.eugridpma.info/distribution/igtf/current39 enabled=140 metadata_expire=30041 gpgcheck=042 54 43 55 [EUGRIDPMA-fetch-crl] … … 51 63 }}} 52 64 53 -Install certificates 54 {{{ 55 #!div style="font-size: 90%" 56 {{{#!sh 57 yum install ca_PolishGrid 65 * Install certificates 66 {{{ 67 #!div style="font-size: 90%" 68 {{{#!sh 58 69 yum install ca_PLGRID-SimpleCA 59 70 }}} 60 71 }}} 61 72 62 -Install certificate revocation list fetching utility 73 74 * Install certificate revocation list fetching utility 63 75 {{{ 64 76 #!div style="font-size: 90%" … … 68 80 }}} 69 81 70 -Get fresh CRLs now82 * Get fresh CRLs now 71 83 {{{ 72 84 #!div style="font-size: 90%" … … 76 88 }}} 77 89 78 -Install cron job for it90 * Install cron job for it 79 91 {{{ 80 92 #!div style="font-size: 90%"