Changes between Version 7 and Version 8 of GCCluster


Ignore:
Timestamp:
2012-10-02T23:25:16+02:00 (12 years ago)
Author:
Pieter Neerincx
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • GCCluster

    v7 v8  
    176176== Installation details ==
    177177
    178 Our current config files:
    179  * $TORQUE_HOME/mom_priv/config
    180  * $MAUI_HOME/maui.cfg
    181  * Other Torque settings can be loaded from a file using qmgr.[[BR]]
     178=== Our current config files: ===
     179 * $TORQUE_HOME/mom_priv/[[attachment:gcc_pbs_mom.config.txt|config]]
     180 * $MAUI_HOME/[[attachment:gcc_maui.cfg.txt|maui.cfg]]
     181 * Other Torque settings can be loaded from a [[attachment:gcc_torque.txt|file]] using qmgr.[[BR]]
    182182   To export/inspect the settings use:
    183183{{{
     
    185185}}}
    186186
    187 
    188 
    189 
    190 Both the Torque and Maui source downloads contain a contrib folder with /etc/init.d/ scripts to start/stop the daemons. We use versions patched for:
     187=== Init scripts ===
     188
     189Both the Torque and Maui source downloads contain a contrib folder with /etc/init.d/ scripts to start/stop the daemons:
     190 * /etc/init.d/[[attachment:suse.pbs_server|pbs_server]]
     191 * /etc/init.d/[[attachment:suse.maui|maui]]
     192 * /etc/init.d/[[attachment:suse.pbs_mom|pbs_mom]]
     193We use versions patched for:
    191194* The location where the daemons are installed.
    192195* The run levels at which the daemons should be started or stopped.
     
    195198To install:
    196199
    197 On scheduler[01|02]:
     200On scheduler[01|02] as root:
    198201{{{
    199202$> cp suse.pbs_server /etc/init.d/pbs_server; chkconfig -a pbs_server; service pbs_server status
     
    201204}}}
    202205
    203 On targetgcc![01-10]-mgmt:
     206On targetgcc![01-10] as root:
    204207{{{
    205208$> cp suse.pbs_mom    /etc/init.d/pbs_mom;    chkconfig -a pbs_mom;    service pbs_mom status
    206209}}}
     210
     211=== wqstat ===
     212
     213We have patched torque-2.5.12/src/cmds/[[attachment:qstat.c]] and recompiled the clients to create ''wqstat'', which reports long job names up to 40 characters as compared to the default 16. As normal user:
     214{{{
     215$> cd torque-2.5.12
     216$> ./configure --with-default-server=scheduler01 --disable-server --disable-mom --prefix=/some/other/location/cluster_clients/
     217$> make
     218$> make install
     219}}}
     220As root:
     221{{{
     222$> cp /some/other/location/cluster_clients/bin/qstat   /usr/local/bin/wqstat
     223}}}