本文出自:http://www.redhatonly.org/viewthread.php?tid=3&extra=page%3D1
作者:bibby
在 RHEL5 中集成的 RHCS 组件有一个 BUG,在使用 system-config-cluster 配置完
HA 后,再打开 system-config-cluster,会出现一个提示框:
Because this node is not currently part of a cluster, the management tab for this application is not available.
由于无法显示 Cluster Tab,所以无法管理结点。
原因:
CommandHandler.py 中设置的 cman_tool 路径不对。
cman_tool 实际安装路径是:/usr/sbin/cman_tool,但是在 CommandHandler.py
中却定义成了 /sbin/cman_tool。
解决方法:
创建一个 soft link:
# ln -s /usr/sbin/cman_tool /sbin/cman_tool
更详细 BUG 信息请访问:
https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=233621