|
Post by jameslundberg on Jul 20, 2022 16:37:22 GMT
I'm running the Mockup-Server and it runs good and I can change collections data!
(venv) [jimlund@IBM-R912JTS2 ~]$ redfishtool -r 127.0.0.1:8000 -u root -p password123456 -S Never AccountService Accounts list
{
"_Path": "/redfish/v1/AccountService/Accounts",
"Name": "Accounts Collection",
"Members@odata.count": 1,
"Members": [
{
"Id": "1",
"@odata.id": "/redfish/v1/AccountService/Accounts/1",
"UserName": "Administrator"
}
]
}
(venv) [jimlund@IBM-R912JTS2 ~]$ redfishtool -r 127.0.0.1:8000 -u root -p password123456 -S Never AccountService setusername 1 james
{
"UserName": "james"
}
(venv) [jimlund@IBM-R912JTS2 ~]$ redfishtool -r 127.0.0.1:8000 -u root -p password123456 -S Never AccountService Accounts list
{
"_Path": "/redfish/v1/AccountService/Accounts",
"Name": "Accounts Collection",
"Members@odata.count": 1,
"Members": [
{
"Id": "1",
"@odata.id": "/redfish/v1/AccountService/Accounts/1",
"UserName": "james"
}
]
}
But then when I close the server the data does not persist. Is there a way to save the data session?
|
|
|
Post by mraineri on Jul 21, 2022 13:16:55 GMT
At this time, we do not have that type of feature in the mockup server.
|
|