• 全部
  • 经验案例
  • 典型配置
  • 技术公告
  • FAQ
  • 漏洞说明
  • 全部
  • 全部
  • 大数据引擎
  • 知了引擎
产品线
搜索
取消
案例类型
发布者
是否解决
是否官方
时间
搜索引擎
匹配模式
高级搜索

调用redfish创建Riad失败

2022-04-27提问
  • 0关注
  • 1收藏,1316浏览
QUKSSS 零段
粉丝:0人 关注:0人

问题描述:

1、GET "https://10.109.0.25/redfish/v1/Systems/1/Storages/RAIDStorage0"

{"@odata.context":"/redfish/v1/$metadata#Storage.Storage(*)","@odata.id":"/redfish/v1/Systems/1/Storages/RAIDStorage0","@odata.type":"#Storage.v1_4_0.Storage","Drives":[{"@odata.id":"/redfish/v1/Chassis/1/Drives/DiskRear7"},{"@odata.id":"/redfish/v1/Chassis/1/Drives/DiskRear8"},{"@odata.id":"/redfish/v1/Chassis/1/Drives/DiskRear9"},{"@odata.id":"/redfish/v1/Chassis/1/Drives/DiskRear10"}],"Drives@odata.count":4,"Id":"RAIDStorage0","Name":"RAIDStorage0","StorageControllers":[{"@odata.id":"/redfish/v1/Systems/1/Storages/RAIDStorage0#/StorageControllers/0","AssetTag":"RAID-LSI-9361-8i(2G)-1-X","FirmwareVersion":"4.680.00-8555","Manufacturer":"Broadcom","MemberId":"0","Model":"RAID-LSI-9361-8i(2G)-1-X","Name":"RAID-LSI-9361-8i(2G)-1-X","Oem":{"Public":{"AssociatedCard":{"@odata.id":"/redfish/v1/Chassis/1/PCIeDevices/2"},"BBUstate":"Optimal","CapacitanceStatus":{"Health":"OK","State":"Enabled"},"ConfigurationVersion":"3.1705.00-0024","JBODState":false,"MemorySizeMiB":2048,"Mode":"RAID","PackageVersion":"24.21.0-0148","SASAddress":"500605B0112B5B10","SupportedRAIDLevels":["RAID0","RAID1","RAID5","RAID6","RAID10","RAID50","RAID60"]}},"SerialNumber":"SKB3902690","SpeedGbps":12,"Status":{"Health":"OK","State":"Enabled"},"SupportedDeviceProtocols":["SAS"]}],"StorageControllers@odata.count":1,"Volumes":{"@odata.id":"/redfish/v1/Systems/1/Storages/RAIDStorage0/Volumes"}}


2、GET "https://10.109.0.25/redfish/v1/Chassis/1/Drives/DiskRear10"

{"@odata.context":"/redfish/v1/$metadata#Drive.Drive(*)","@odata.id":"/redfish/v1/Chassis/1/Drives/DiskRear10","@odata.type":"#Drive.v1_4_0.Drive","CapableSpeedGbs":6,"CapacityBytes":8004444880896,"Id":"DiskRear10","Location":[{"Info":"DiskRear10","InfoFormat":"DeviceName"}],"Manufacturer":"HGST","MediaType":"HDD","Model":"HGST HUS728T8TALE6L4","Name":"DiskRear10","NegotiatedSpeedGbs":12,"Oem":{"Public":{"ConnectionID":14,"DriveNumberInBios":9,"DriveNumberInOS":9,"FirmwareStatus":"Unconfigured_Good","Panel":"Rear 10","TemperatureCelsius":255}},"PredictedMediaLifeLeftPercent":null,"Protocol":"SATA","Revision":"","SerialNumber":"VDJ7WRXD","Status":{"Health":"OK","State":"Enabled"}}


3、POST "https://10.109.0.25/redfish/v1/Systems/1/Storages/RAIDStorage0/Volumes" --header 'Content-Type: application/json'  --data '{ "Oem":{ "Name":"LogicalDisk0", "InitState": "No", "StripSize":"64KB", "Level":"RAID 0", "SpanNum": 1, "NumDrives": 1, "ReadPolicy": "Read Ahead", "WritePolicy": "Write Through", "IOPolicy": "Direct", "DriveCache": "Disable", "AccessPolicy": "Blocked", "Size": 0, "SizeUnit": "GB", "PhysicalDiskList": [{ "group_id":0, "id":10 }] } }' 

{"error":{"@Message.ExtendedInfo":[{"@odata.type":"#Message.v1_0_5.Message","Message":"The parameter /redfish/v1/Systems/1/Storages/RAIDStorage0/Volumes for the action Creat LogicalDrive Failed! Error configuring LD. Code:1 is not supported on the target resource.","MessageArgs":["/redfish/v1/Systems/1/Storages/RAIDStorage0/Volumes","Creat LogicalDrive Failed! Error configuring LD. Code:1"],"MessageId":"Base.1.0.ActionParameterNotSupported","RelatedProperties":["Setting Volumes"],"Resolution":"Remove the parameter supplied and resubmit the request if the operation failed.","Severity":"Warning"}],"code":"Base.1.0.ActionParameterNotSupported","message":"The parameter /redfish/v1/Systems/1/Storages/RAIDStorage0/Volumes for the action Creat LogicalDrive Failed! Error configuring LD. Code:1 is not supported on the target resource."}}


请问第3步创建Riad为什么会出错呢,应该怎么修改参数?

组网及组网描述:


2 个回答
粉丝:27人 关注:25人

"Size": 0这里错了吧

看文档是:当填写内容为0,以实际默认最大容量创建 逻辑盘

QUKSSS 发表时间:2022-04-28
回复QUKSSS:

curl -X POST -k -H 'Content-Type: application/json' -H 'Authorization: Basic YWRtaW46UGFzc3dvcmRAXw==' -i 'https://10.12.181.70/redfish/v1/Systems/1/Storages/RAIDStorage0/Volumes' --data '{ "Oem":{ "Name":"LogicalDisk0", "InitState": "No", "StripSize":"64KB", "Level":"RAID 0", "SpanNum": 1, "NumDrives": 1, "ReadPolicy": "Read Ahead", "WritePolicy": "Write Through", "IOPolicy": "Direct", "DriveCache": "Disable", "AccessPolicy": "Blocked", "Size": 199, "SizeUnit": "GB", "PhysicalDiskList": [{ "group_id":0, "id":44 }] } }' 我这个成功了,首先盘是UG的,然后最后那个id是get盘信息的connection id,我这个是front2,但是对应44

哪吒勇 发表时间:2022-04-28
粉丝:0人 关注:0人

group_id":0, "id":10  查看一下这个ID 10 是否赋值正确

https://10.109.0.25/redfish/v1/Chassis/1/Drives/DiskFrontX 用这个命令查看X硬盘的 

"ConnectionID":  为几,  用"ConnectionID":  在

PhysicalDiskList": [{ "group_id":0, "id":10 }] } }"中 把ID:10   改成对应的ConnectionID


编辑答案

你正在编辑答案

如果你要对问题或其他回答进行点评或询问,请使用评论功能。

分享扩散:

提出建议

    +

亲~登录后才可以操作哦!

确定

亲~检测到您登陆的账号未在http://hclhub.h3c.com进行注册

注册后可访问此模块

跳转hclhub

你的邮箱还未认证,请认证邮箱或绑定手机后进行当前操作

举报

×

侵犯我的权益 >
对根叔社区有害的内容 >
辱骂、歧视、挑衅等(不友善)

侵犯我的权益

×

泄露了我的隐私 >
侵犯了我企业的权益 >
抄袭了我的内容 >
诽谤我 >
辱骂、歧视、挑衅等(不友善)
骚扰我

泄露了我的隐私

×

您好,当您发现根叔知了上有泄漏您隐私的内容时,您可以向根叔知了进行举报。 请您把以下内容通过邮件发送到pub.zhiliao@h3c.com 邮箱,我们会尽快处理。
  • 1. 您认为哪些内容泄露了您的隐私?(请在邮件中列出您举报的内容、链接地址,并给出简短的说明)
  • 2. 您是谁?(身份证明材料,可以是身份证或护照等证件)

侵犯了我企业的权益

×

您好,当您发现根叔知了上有关于您企业的造谣与诽谤、商业侵权等内容时,您可以向根叔知了进行举报。 请您把以下内容通过邮件发送到 pub.zhiliao@h3c.com 邮箱,我们会在审核后尽快给您答复。
  • 1. 您举报的内容是什么?(请在邮件中列出您举报的内容和链接地址)
  • 2. 您是谁?(身份证明材料,可以是身份证或护照等证件)
  • 3. 是哪家企业?(营业执照,单位登记证明等证件)
  • 4. 您与该企业的关系是?(您是企业法人或被授权人,需提供企业委托授权书)
我们认为知名企业应该坦然接受公众讨论,对于答案中不准确的部分,我们欢迎您以正式或非正式身份在根叔知了上进行澄清。

抄袭了我的内容

×

原文链接或出处

诽谤我

×

您好,当您发现根叔知了上有诽谤您的内容时,您可以向根叔知了进行举报。 请您把以下内容通过邮件发送到pub.zhiliao@h3c.com 邮箱,我们会尽快处理。
  • 1. 您举报的内容以及侵犯了您什么权益?(请在邮件中列出您举报的内容、链接地址,并给出简短的说明)
  • 2. 您是谁?(身份证明材料,可以是身份证或护照等证件)
我们认为知名企业应该坦然接受公众讨论,对于答案中不准确的部分,我们欢迎您以正式或非正式身份在根叔知了上进行澄清。

对根叔社区有害的内容

×

垃圾广告信息
色情、暴力、血腥等违反法律法规的内容
政治敏感
不规范转载 >
辱骂、歧视、挑衅等(不友善)
骚扰我
诱导投票

不规范转载

×

举报说明