1847055 Members
4955 Online
110261 Solutions
New Discussion

Re: Need Restart script

 
SOLVED
Go to solution
praveen..
Super Advisor

Need Restart script

Hi, I have a IBM BCU Server and its 27 node ( like.. node001, node002....to node027)

Now I want to restart all the nodes.
I can login to any node from IBM BCU server using ssh without prompting password.

can i restart all the node using one single script on BCU server, if yes, please suggest
1 REPLY 1
Peter Godron
Honored Contributor
Solution

Re: Need Restart script

Hi,
without knowing the syntax for starting the node :

Can you not have a driver file listing node001 to node027, which is read line by line and the node restarted ?

while read node
do
start $node
done < nodefile.lis