... | @@ -73,3 +73,27 @@ ipmitool -I lanplus -H $IPMI_IP -U ADMIN -P $PASSWORD chassis bootdev |
... | @@ -73,3 +73,27 @@ ipmitool -I lanplus -H $IPMI_IP -U ADMIN -P $PASSWORD chassis bootdev |
|
```
|
|
```
|
|
|
|
|
|
You can also use the web interface to access sensor readings and change settings that are vendor specific and not (easily) accessible with the commandline tool.
|
|
You can also use the web interface to access sensor readings and change settings that are vendor specific and not (easily) accessible with the commandline tool.
|
|
|
|
|
|
|
|
# IPMI on computenode01 - computenode04
|
|
|
|
|
|
|
|
```bash
|
|
|
|
ssh Administrator@10.1.0.101
|
|
|
|
# enter password and wait 10 seconds (it's slow)
|
|
|
|
# you get a "-> " prompt
|
|
|
|
|
|
|
|
# power on
|
|
|
|
start /admin1/system1
|
|
|
|
|
|
|
|
# power off
|
|
|
|
stop /admin1/system1
|
|
|
|
|
|
|
|
# power off (forced)
|
|
|
|
stop -f /admin1/system1
|
|
|
|
|
|
|
|
# disconnect any existing sessions
|
|
|
|
set /admin1/system1/textredirectsvc1/textredirectsap1 EnabledState=6
|
|
|
|
|
|
|
|
# connect to console
|
|
|
|
start /admin1/system1/textredirectsvc1
|
|
|
|
```
|
|
|
|
|