Line: 1 to 1 | ||||||||
---|---|---|---|---|---|---|---|---|
Installing GWMS Frontend using RPMs | ||||||||
Line: 8 to 8 | ||||||||
Installation | ||||||||
Changed: | ||||||||
< < | This guide assumes rhel6. | |||||||
> > | This guide assumes os >= rhel6. | |||||||
Changed: | ||||||||
< < | Install epel and osg 3.2 repos as outlined: | |||||||
> > | Install epel and osg repos as outlined: | |||||||
https://twiki.grid.iu.edu/bin/view/Documentation/Release3/YumRepositories | ||||||||
Line: 18 to 18 | ||||||||
yum install osg-ca-certs | ||||||||
Changed: | ||||||||
< < | Install fetch-crl, and enable and start both boot and cron: | |||||||
> > | Install fetch-crl, and enable and start cron: | |||||||
https://twiki.grid.iu.edu/bin/view/Documentation/Release3/InstallCertAuth#Managing_Certificate_Revocation | ||||||||
Changed: | ||||||||
< < | Disable epel and osg repos, we will manually enable them only when we need to upgrade frontend and condor components:
sed -i 's/enabled=1/enabled=0/' /etc/yum.repos.d/epel.repo sed -i 's/enabled=1/enabled=0/' /etc/yum.repos.d/osg-el6.repo | |||||||
> > | Run manually once to get certs mmediately:
/usr/sbin/fetch-crl | |||||||
Install condor and frontend rpms: | ||||||||
Changed: | ||||||||
< < | yum --enablerepo=epel --enablerepo=osg install condor yum --enablerepo=epel --enablerepo=osg install glideinwms-vofrontend | |||||||
> > | yum install condor yum install glideinwms-vofrontend | |||||||
Or alternatively pick and choose gwms packages. For example to have a node with just a collector and FE: | ||||||||
Changed: | ||||||||
< < | yum --enablerepo=epel --enablerepo=osg install condor yum --enablerepo=epel --enablerepo=osg install glideinwms-usercollector yum --enablerepo=epel --enablerepo=osg install glideinwms-vofrontend-standalone | |||||||
> > | yum install condor yum install glideinwms-usercollector yum install glideinwms-vofrontend-standalone | |||||||
Disable LOCAL_CONFIG_FILE because it is evil and overrides config.d files: | ||||||||
Line: 60 to 56 | ||||||||
mv /tmp/proxy.new /tmp/vo_proxy | ||||||||
Added: | ||||||||
> > | Run /usr/local/sbin/refresh_proxy once by hand to use FE immediately. | |||||||
And add the following to cron /etc/cron.d/refresh_proxy.cron :
39 3,9,15,21 * * * root /usr/local/sbin/refresh_proxy > /dev/null 2>&1 |