**** ATTENTION !!! ****
**** Please be sure to BACKUP any related databases
The following steps provide information on removing virtual machines from VMWare vRealize Automation (vRA).
These steps are to be used when the following conditions exist:
- A virtual machine that is being managed without being deleted from the endpoint.
- You want to manually remove the machine from the endpoint.
vRA Application Steps:
Log into vRA – https://vcac.yourdomain.tld using your-domain\*your-user-id*
- Click the Infrastructure Tab
- Click Machines > Reserved Machines
- Search for Service Name (e.g. VRA-FAQ360)
- Delete the associated service
SQL Database Steps:
- Connect to SQL Database Server: VRA-SQL
- In “Object Explorer” window, Locate database vCAC
- Backup the vCAC database
- Expand the vCAC database
- Under Programmability > Stored Procedures, locate ‘dbo.usp_RemoveVMFromVCAC’
- Execute Procedure and apply ID of the Multi-Machine Service (e.g. VRA-FAQ360)
- Repeat this step for each instance
Notes:
The store procedure may look like the following:
USE [vCAC]
GO
DECLARE @return_value int
EXEC @return_value = [dbo].[usp_RemoveVMFromVCAC]
@MachineName = N’VRA-FAQ360′
SELECT ‘Return Value’ = @return_value
GO