Exercise 2: Batch System Installation: Difference between revisions

From Gridkaschool
Jump to navigationJump to search
No edit summary
 
(5 intermediate revisions by the same user not shown)
Line 1: Line 1:
== Install the torque server ==
IMPORTANT: This page is work in progress. Only when this message disappear it will be final version.


yum install emi-torque-server
----
yum install emi-torque-utils


== Check if munge is installed and if needed install it ==
===[[Exercise 2: Batch System Installation]]===



{| class="wikitable"

|-
| yum install emi-torque-server
rpm -qa |grep munge yum install munge

|-
== Enable munge on your torque cluster ==
| yum install emi-torque-utils

|}

* Create a munge key in one of the hosts:

/usr/sbin/create-munge-key

* Check the munge key ownership

ls -l /etc/munge/munge.key

* Copy the munge key on all the hosts of the cluster

cp /etc/munge/munge.key <...>

* Start the munge daemon on these nodes

service munge start
chkconfig munge on

Latest revision as of 15:19, 22 August 2013

Install the torque server

 yum install emi-torque-server
 yum install emi-torque-utils

Check if munge is installed and if needed install it

rpm -qa |grep munge yum install munge

Enable munge on your torque cluster

  • Create a munge key in one of the hosts:
 /usr/sbin/create-munge-key
  • Check the munge key ownership
 ls -l /etc/munge/munge.key
  • Copy the munge key on all the hosts of the cluster
 cp /etc/munge/munge.key <...>
  • Start the munge daemon on these nodes
 service munge start     
 chkconfig munge on