Changes between Version 10 and Version 11 of GCCluster
- Timestamp:
- 2012-10-09T16:01:23+02:00 (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
GCCluster
v10 v11 197 197 198 198 Both the Torque and Maui source downloads contain a contrib folder with /etc/init.d/ scripts to start/stop the daemons: 199 * /etc/init.d/ [[attachment:suse.pbs_server|pbs_server]]200 * /etc/init.d/ [[attachment:suse.maui|maui]]201 * /etc/init.d/ [[attachment:suse.pbs_mom|pbs_mom]]199 * /etc/init.d/pbs_server [[attachment:suse.pbs_server|SuSE flavor]] | [[attachment:redhat.pbs_server|Redhat/CentOS/Fedora flavor]] 200 * /etc/init.d/maui [[attachment:suse.maui|SuSE flavor]] | [[attachment:redhat.maui|Redhat/CentOS/Fedora flavor]] 201 * /etc/init.d/pbs_mom [[attachment:suse.pbs_mom|SuSE flavor]] 202 202 We use versions patched for: 203 203 * The location where the daemons are installed. 204 204 * The run levels at which the daemons should be started or stopped. 205 205 * Dependencies: GPFS is explicitly defined as service required for starting/stopping the Torque and Maui daemons. 206 * Make sure to check whether your scheduler runs on a SuSE or Redhat/CentOS/Fedora VM 206 207 207 208 To install: … … 209 210 On scheduler[01|02] as root: 210 211 {{{ 211 $> cp suse.pbs_server /etc/init.d/pbs_server; chkconfig -apbs_server; service pbs_server status212 $> cp suse.maui /etc/init.d/maui; chkconfig -amaui; service maui status212 $> cp *.pbs_server /etc/init.d/pbs_server; chkconfig --add pbs_server; service pbs_server status 213 $> cp *.maui /etc/init.d/maui; chkconfig --add maui; service maui status 213 214 }}} 214 215 215 216 On targetgcc![01-10] as root: 216 217 {{{ 217 $> cp suse.pbs_mom /etc/init.d/pbs_mom; chkconfig -apbs_mom; service pbs_mom status218 $> cp *.pbs_mom /etc/init.d/pbs_mom; chkconfig --add pbs_mom; service pbs_mom status 218 219 }}} 219 220