|
|
Choosing A Webhost: |
Re: Prologue/Epilogue script: msg#00117clustering.torque.user
On Mon, Apr 23, 2007 at 09:02:06AM -0400, Jeffrey B. Layton alleged: > Good morning, > > I'm looking for prologue/epilogue scripts that kill all user jobs > except the user who is going to run on the assigned nodes. > The prologue would leave all of the root and "non-user" jobs > running, and the epilogue would leave only root and "non-user" > jobs running. Does anyone have scripts like this tat they would > be willing to share? There are from my own prologue/epilogue scripts. node setup bits to scrub off anything that shouldn't be running: patt='root,daemon,bin,nobody,named,rpc,rpcuser,ntp,nscd' if [ -n "$(pgrep -d, -v -u $patt)" ];then pkill -v -u $patt for try in 1 2 3 4 5 6 7 8 9;do sleep 2 if [ -n "$(pgrep -d, -v -u $patt)" ];then pkill -9 -v -u $patt else break fi done fi node takedown bit to kill off the user: JOBUSER=$2 if [ -n "$(pgrep -d, -U $JOBUSER)" ];then pkill -U $JOBUSER for try in 1 2 3 4 5;do sleep 2 if [ -n "$(pgrep -d, -U $JOBUSER)" ];then pkill -9 -U $JOBUSER else break fi echo "PIDs not killed: $(pgrep -d, -U $JOBUSER)" | logger -t takedownnode done fi
|
|
| <Prev in Thread] | Current Thread | [Next in Thread> |
|---|---|---|
| Previous by Date: | Re: Torque not deleting job, Garrick Staples |
|---|---|
| Next by Date: | prologue.parallel and sisters, Kevin Van Workum |
| Previous by Thread: | Re: Prologue/Epilogue script, Steve Traylen |
| Next by Thread: | prologue.parallel and sisters, Kevin Van Workum |
| Indexes: | [Date] [Thread] [Top] [All Lists] |
Free MagazinesCisco NewsReceive a free quarterly e-newsletter with exclusive articles on how Cisco IT uses its own products and solutions to enable the business. subscribe Systems Management News, the newspaper for IT systems administration and data center managers! Each issue of Systems Management News is chock-full of news and analysis to help you understand what's happening in your field. subscribe The Enterprise Newsweekly eWeek is the essential technology information source for builders of e-business. subscribe Oracle Magazine Oracle Magazine contains technology strategy articles, sample code, tips, Oracle and partner news, how to articles for developers and DBAs, and more. Oracle (NASDAQ: ORCL) is the world's largest enterprise software company. subscribe Total Telecom Total Telecom is "The Economist of the communications industry". subscribe |