7.7. iDRAC 문제 해결
- Redfish 관리 인터페이스가 부팅 장치를 설정하지 못했습니다
특정 iDRAC 펌웨어 버전과 함께
idrac-redfish
관리 인터페이스를 사용하고 UEFI 부팅을 사용하여 베어 메탈 서버에서 부팅 장치를 설정하려고 하면 iDRAC에서 다음 오류를 반환합니다.Unable to Process the request because the value entered for the parameter Continuous is not supported by the implementation.
Unable to Process the request because the value entered for the parameter Continuous is not supported by the implementation.
Copy to Clipboard Copied! Toggle word wrap Toggle overflow 이 문제가 발생하면 노드의
driver-info
에서force_persistent_boot_device
매개변수를Never
로 설정합니다.openstack baremetal node set --driver-info force_persistent_boot_device=Never ${node_uuid}
openstack baremetal node set --driver-info force_persistent_boot_device=Never ${node_uuid}
Copy to Clipboard Copied! Toggle word wrap Toggle overflow - 전원을 끄는 시간 초과
일부 서버는 전원을 끄거나 시간 초과할 때 너무 느려질 수 있습니다. 기본 재시도 수는
6
이므로 30초의 시간 초과가 발생합니다. 시간 초과 기간을 90초로 늘리려면 언더클라우드 hieradata 덮어쓰기 파일에서ironic::agent::rpc_response_timeout
값을18
로 설정하고openstack undercloud install
명령을 다시 실행합니다.ironic::agent::rpc_response_timeout: 18
ironic::agent::rpc_response_timeout: 18
Copy to Clipboard Copied! Toggle word wrap Toggle overflow - 벤더 패스스루 시간 초과
iDRAC를 벤더 패스스루 명령을 실행할 수 없는 경우 이러한 명령이 시간이 너무 오래 걸립니다.
openstack baremetal node passthru call --http-method GET \ aed58dca-1b25-409a-a32f-3a817d59e1e0 list_unfinished_jobs Timed out waiting for a reply to message ID 547ce7995342418c99ef1ea4a0054572 (HTTP 500)
openstack baremetal node passthru call --http-method GET \ aed58dca-1b25-409a-a32f-3a817d59e1e0 list_unfinished_jobs Timed out waiting for a reply to message ID 547ce7995342418c99ef1ea4a0054572 (HTTP 500)
Copy to Clipboard Copied! Toggle word wrap Toggle overflow 메시징의 시간 초과 기간을 늘리려면 언더클라우드 hieradata 덮어쓰기 파일에서
ironic::default::rpc_response_timeout
매개변수 값을 늘리고openstack undercloud install
명령을 다시 실행합니다.ironic::default::rpc_response_timeout: 600
ironic::default::rpc_response_timeout: 600
Copy to Clipboard Copied! Toggle word wrap Toggle overflow