1,885
edits
Changes
→HTTP configuration
Deny from all
</Directory>
== IPMI Control of the Highbank Server ==
Fedora includes a version of ipmitool but this does not include the Calxeda (cxoem) extensions. You can build the Calxeda version from the source:
git clone git://sources.calxeda.com/ipmitool.git
cd ipmitol
./configure
make
sudo make install
The cxmanage wrapper script can also be retrieved in a similar way:
git clone git://sources.calxeda.com/cxmanage.git
cd cxmanage
python setup.py install
== Getting Console Access on the Highbank Server ==
You can connect to the console of a particular node on the Highbank server with:
ipmitool -I lanplus -H '''ipaddress''' -U admin -P admin sol activate
Change the IP address to address the management processor on the desired node.
== Node Power Control on the Highbank Server ==
Turn a node on:
ipmitool -H '''ipaddress''' -U admin -P admin chassis power on
Reset a node (hard):
ipmitool -H '''ipaddress''' -U admin -P admin chassis power reset
Turn a node off:
ipmitool -H '''ipaddress''' -U admin -P admin chassis power off