- Community Home
- >
- Software
- >
- HPE OneView
- >
- OneView 6.6 Removing Rack Manager not possible. Al...
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-09-2022 03:58 AM - last edited on 08-15-2022 08:20 PM by support_s
08-09-2022 03:58 AM - last edited on 08-15-2022 08:20 PM by support_s
OneView 6.6 Removing Rack Manager not possible. Also via REST API
Hi all,
I have an issue with OneView 6.6 when having SD Flex rack managers imported with 2 chassis each that got converted to a 4 chassis Superdome Flex. If I want to remove the 2 rack managers (and also check the force option) from the OneView Actions Menu, it just tells me "Unable to contact the Rack Management Controller (RMC)" as a red locked alert. If I execute the REST API call like this: "DELETE https://appliance/rest/rack-managers/id?force=true" , even without the force option it does not remove the RMC from the OneView. A reboot of the appliance had no effect on the issue. Please provide me a solution to fully remove the object from the OneView appliance.
Best regards,
Joshua
- Tags:
- OneView
- Rack_Frame
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-15-2022 08:17 PM
08-15-2022 08:17 PM
Re: OneView 6.6 Removing Rack Manager not possible. Also via REST API
Hi Joshua,
Please verify if the session with the appliance is established with proper headers and use the auth code.
As you have OV Version 6.60 use the below headers.
Headers:
X-API-Version - 3800
Content Type - application/json
Accept - application/json
Body:
{
"userName":"Administrator",
"password":"Password"
}
Note: Replace Administrator and Password with OV credentials.
Request:
POST: https://<Appliance IP>/rest/login-sessions
Result:
200 OK
Under "Response" You can find the Session ID. using this session ID, add one more header as below.
Auth: <Session ID>
Note: Just use "Auth", DO NOT use "Authorization"
Once the header is added, use the below arguments to list the added rack-managers.
GET https://{appl}/rest/rack-managers
Note the rack manager ID and use the below arguments to delete the rack-manager.
DELETE https://{appl}/rest/rack-managers/{id}/
Verify the issue.
If you have tried this and still not able to delete the rack-manager using REST Clients, log a support case for further troubleshooting as this has to be deleted from OV Service console.