hidden:Globus Connect: Difference between revisions
From Lsdf
Jump to navigationJump to search
m (Created page with "==Steps taken to install globus connect== Some of the information is gleaned from https://www.globus.org/ * update the repo dir for easy access to the globus packages: <pre> …") |
mNo edit summary |
||
(4 intermediate revisions by the same user not shown) | |||
Line 2: | Line 2: | ||
Some of the information is gleaned from https://www.globus.org/ |
Some of the information is gleaned from https://www.globus.org/ |
||
Prereqs: |
|||
* enable EPEL acces. If the EPEL repos are in yum.repos.d then you're probably OK. (see http://fedoraproject.org/wiki/EPEL/FAQ) |
|||
* time must be synchronised: Check if an ntpd is running. |
|||
Install of Globus Connect |
|||
* update the repo dir for easy access to the globus packages: |
* update the repo dir for easy access to the globus packages: |
||
Line 8: | Line 14: | ||
rpm -hUv http://www.globus.org/ftppub/gt5/5.2/stable/installers/repo/Globus-5.2.stable-config.redhat-6Server-1.noarch.rpm |
rpm -hUv http://www.globus.org/ftppub/gt5/5.2/stable/installers/repo/Globus-5.2.stable-config.redhat-6Server-1.noarch.rpm |
||
</pre> |
</pre> |
||
This will install the Globus repo file in /etc/yum.repos.d/Globus-5.2.stable-config.redhat.repo. Globus maintains a list of |
This will install the Globus repo file in /etc/yum.repos.d/Globus-5.2.stable-config.redhat.repo. If you are installing on another distribution or version select another RPM. Globus maintains a list of RPMs that will install the proper repo file for you here: http://www.globus.org/ftppub/gt5/5.2/stable/installers/repo/. |
||
* install the Globus Connect Package: |
* install the Globus Connect Package: |
||
<pre> |
|||
yum install globus-connect-server |
yum install globus-connect-server |
||
</pre> |
|||
In my case the $releasever variable was returning 6.5 although the repo urls have locations for just 6. I fixed this by forcing the variable to 6: |
|||
<pre> |
|||
yum --releasever=6 install globus-connect-server |
|||
</pre> |
Latest revision as of 15:03, 11 May 2014
Steps taken to install globus connect
Some of the information is gleaned from https://www.globus.org/
Prereqs:
- enable EPEL acces. If the EPEL repos are in yum.repos.d then you're probably OK. (see http://fedoraproject.org/wiki/EPEL/FAQ)
- time must be synchronised: Check if an ntpd is running.
Install of Globus Connect
- update the repo dir for easy access to the globus packages:
rpm -hUv http://www.globus.org/ftppub/gt5/5.2/stable/installers/repo/Globus-5.2.stable-config.redhat-6Server-1.noarch.rpm
This will install the Globus repo file in /etc/yum.repos.d/Globus-5.2.stable-config.redhat.repo. If you are installing on another distribution or version select another RPM. Globus maintains a list of RPMs that will install the proper repo file for you here: http://www.globus.org/ftppub/gt5/5.2/stable/installers/repo/.
- install the Globus Connect Package:
yum install globus-connect-server
In my case the $releasever variable was returning 6.5 although the repo urls have locations for just 6. I fixed this by forcing the variable to 6:
yum --releasever=6 install globus-connect-server