- 论坛徽章:
- 0
|
现在的服务器都在更新换代,fence设备都在变,火大了。
上次有人也遇到drac6的问题,然后找到下面这篇文章,不过似乎按文档做也是不成功的,本人没条件做这个测试,有条件的兄弟给个测试结果!!!!
iDRAC6 Fencing configuration
Configure iDRAC6 Fencing
PowerEdge Dell servers using iDRAC6 will need specific parameters set in order to function properly. For the latest information on support for this in Conga, see Bug 496749.
Manually SSH to the iDRAC6
Copy the prompt that is displayed after successful login. (e.g. admin1->)
On one node only, edit /etc/cluster/cluster.conf and change each fencedevice line as follows.
Change references of the agent fence_drac to fence_drac5
Add the parameter cmd_prompt="your_iDRAC6_prompt" to each fencedevice line for each node.
where your_iDRAC6_prompt is the one you copied in step 2. (e.g. admin1->)
Example:
Find the line for each fence device. This example shows a two node cluster with DRAC fencing:
<fencedevices> <fencedevice agent="fence_drac" ipaddr="192.168.0.101" login="root" name="node1-drac" passwd="drac_password"/> <fencedevice agent="fence_drac" ipaddr="192.168.0.102" login="root" name="node2-drac" passwd="drac_password"/> </fencedevices>
Change the agent to fence_drac5 and add the option cmd_prompt="admin1->" on each line:
<fencedevices> <fencedevice agent="fence_drac5" cmd_prompt="admin1->" ipaddr="192.168.0.101" login="root" name="node1-drac" passwd="drac_password"/> <fencedevice agent="fence_drac5" cmd_prompt="admin1->" ipaddr="192.168.0.102" login="root" name="node2-drac" passwd="drac_password"/> </fencedevices> |
|