Difference between revisions of "PBS setup execution node"

From Notes_Wiki
(Created page with "Home > CentOS > CentOS 7.x > CentOS 7.x Rocks cluster 7.0 > PBS setup execution node To setup PBS execution node use: # Download & Install pbs packages using: #:<pre> #:: wget http://wpc.23a7.iotacdn.net/8023A7/origin2/rl/PBS-Open/pbspro_19.1.2.centos_7.zip #:: unzip pbspro_19.1.2.centos_7.zip #:: cd pbspro_19.1.2.centos_7 #:: yum localinstall -y ./pbspro-execution-19.1.2-0.x86_64.rpm #:</pre> # Edit master hostname in '<tt>/etc/pbs.conf</t...")
 
m
 
Line 30: Line 30:




Refer:
* http://community.pbspro.org/t/step-by-step-install-document/814/10
* https://github.com/PBSPro/pbspro/blob/master/INSTALL
* http://community.pbspro.org/t/qstat-cannot-connect-to-server-single-node-cluster/1504




[[Main Page|Home]] > [[CentOS]] > [[CentOS 7.x]] > [[CentOS 7.x Rocks cluster 7.0]] > [[PBS setup execution node]]
[[Main Page|Home]] > [[CentOS]] > [[CentOS 7.x]] > [[CentOS 7.x Rocks cluster 7.0]] > [[PBS setup execution node]]

Latest revision as of 08:45, 8 July 2022

Home > CentOS > CentOS 7.x > CentOS 7.x Rocks cluster 7.0 > PBS setup execution node

To setup PBS execution node use:

  1. Download & Install pbs packages using:
    wget http://wpc.23a7.iotacdn.net/8023A7/origin2/rl/PBS-Open/pbspro_19.1.2.centos_7.zip
    unzip pbspro_19.1.2.centos_7.zip
    cd pbspro_19.1.2.centos_7
    yum localinstall -y ./pbspro-execution-19.1.2-0.x86_64.rpm
  2. Edit master hostname in '/etc/pbs.conf' as:
    PBS_SERVER=<rocks-master-hostname> //Ex: master
    Here use short name such as rocks2, master without using FQDN
    The short name should resolve to master private IP via /etc/hosts
  3. Source the files using:
    source /etc/profile.d/pbs.sh
    source /etc/pbs.conf
  4. Enter master node details in '/var/spool/pbs/mom_priv/config'
    $clienthost <rocks-master-hostname> //Ex: master
  5. Start the pbs
    systemctl start pbs


Refer:


Home > CentOS > CentOS 7.x > CentOS 7.x Rocks cluster 7.0 > PBS setup execution node