- 论坛徽章:
- 1
|
hacmp在机器关机的时候执行不执行接管动作,在/usr/es/sbin/cluster/etc/rc.shutdown里是会有定义的,可能你的环境问题导致的宕机应验其中了的一种情况。\r\n\r\n附/usr/es/sbin/cluster/etc/rc.shutdown部分内容:\r\n- ###############################################################################\r\n# We\'re doing a shutdown because of an EPOW condition\r\n###############################################################################\r\nif [[ $EPOW_SHUTDOWN == true ]] ; then\r\n ###########################################################################\r\n # We attempt to do a \'graceful with takeover\' shutdown, so that the\r\n # resource groups get taken over when this node fails. Note that this\r\n # is in no sense guaranteed to complete before the node dies, but at\r\n # least the other cluster nodes should perform takeover.\r\n ###########################################################################\r\n clstop -gr -y -s -N -S\r\n###############################################################################\r\n# A \"fast shutdown\" (\"-F\") was specified. We turn this into a forced down\r\n# operation, mostly to preserve compatabilty\r\n###############################################################################\r\nelif [[ $fast == true ]] ; then\r\n clstop -f -y -s -N -S\r\n###############################################################################\r\n# A \"reboot\" (\"-r\") was specified. Do a graceful down, without takeover,\r\n# leaving the application cleanly down and HACMP out of the way on reboot.\r\n###############################################################################\r\nelif [[ $reboot == true ]] ; then\r\n clstop -g -y -s -N -S\r\n###############################################################################\r\n# Every other shutdown is mapped to a graceful with takeover\r\n###############################################################################\r\nelse\r\n clstop -gr -y -s -N -S\r\nfi\r\n###############################################################################\r\n# this is shutdown so remove the cluster shared memory\r\n###############################################################################\r\nsleep 4\r\nrm -f /usr/es/sbin/cluster/etc/ClSm 2>/dev/null
复制代码 |
|