Difference between revisions of "Upgrading Endeavour"

From Nuclear Physics Group Documentation Pages
Jump to navigationJump to search
Line 16: Line 16:
 
* Synchronise clock with endeavour: rdate -s endeavour && hwclock --systohc
 
* Synchronise clock with endeavour: rdate -s endeavour && hwclock --systohc
 
* Configure automount: Frankly, it is a mystery why it works, since the setup seems incomplete, but hey, I won't complain.
 
* Configure automount: Frankly, it is a mystery why it works, since the setup seems incomplete, but hey, I won't complain.
 +
* Configure Infiniband
 +
** See: http://pkg-ofed.alioth.debian.org/howto/infiniband-howto-4.html  includes a number of tests. All passed.
 +
** See: https://pkg-ofed.alioth.debian.org/howto/infiniband-howto-5.html  -- tested OK.
  
 
== To Do ==
 
== To Do ==
  
 
* Configure MPI
 
* Configure MPI
* Configure Infiniband
+
** Later. I'm not sure anyone is using this right now.
** See: http://pkg-ofed.alioth.debian.org/howto/infiniband-howto-4.html  includes a number of tests. All passed.
 
** See: https://pkg-ofed.alioth.debian.org/howto/infiniband-howto-5.html  -- tested OK.
 
 
* '''Configure open PBS''' - not an RPM
 
* '''Configure open PBS''' - not an RPM
 
** See: http://docs.adaptivecomputing.com/hpc/7-1-0/basic/Content/topics/1-installation/installingTorque.htm
 
** See: http://docs.adaptivecomputing.com/hpc/7-1-0/basic/Content/topics/1-installation/installingTorque.htm
Line 28: Line 29:
 
** See: https://access.redhat.com/solutions/301643
 
** See: https://access.redhat.com/solutions/301643
 
*** Note: The current version 4.0 does not play nice with older versions so we need to upgrade the ENTIRE pbs system to the new version.
 
*** Note: The current version 4.0 does not play nice with older versions so we need to upgrade the ENTIRE pbs system to the new version.
*** Perhaps install 2.x first?
+
*** Perhaps install 2.x first? -- YES. The 4.0 will not install on the master node because we cannot get to the RedHat repos to install openssl.
* lost more?
 

Revision as of 01:50, 2 April 2015

Upgrading Endeavour nodes to Centos 6 started March 17, 2015 with node2:

  • Reboot Node2 from a USB key with Centos6 distribution installed. Chose "minimal install"
    • Note: Should have added scp, i.e openssh-client stuff. Added this "by hand" by using from endeavour: cat openssh-client-... | ssh node2 "cat - > openssh-client.rpm" and then installing that rpm.
  • SSH into the system
  • Copy the Centos ISO to node2 with scp. Mount on /mnt/centos
  • Install packages with: yum --disablerepo \* --enablerepo c6-media install
  • List of old package installed are in ~root/new_packages.txt with the distribution and package version stripped already. From this list, the packages were filtered into "installed" and "available" with yum. From the resulting list of "available" only the x86_64 and noarch packages were installed.

Done

To Do