The application startup script in /opt/PowerHA/bin on my cluster node looks like this:
#!/bin/ksh
#stub script to start the Lawson application
banner "Rebuilding print queues"
/usr/local/bin/rebuildqueues
banner "Starting Lawson Application"
while true
do
date > /tmp/LawsonStart.out 2>&1
sleep 300
done
If I’m not mistaken, the ‘while’ loop creates an infinite loop. I don’t see anything within that loop that will terminate it. I don’t know what in the failover process might depend on the startup script, but I don’t want to risk HACMP waiting indefinitely for it to finish. Do I have a legitimate concern?