Unregister the vCenter Plug-in
You can unregister the NetApp Element Plug-in for VMware vCenter Server from vCenter using one of these procedures.
-
vCenter Administrator role privileges to unregister a plug-in.
-
The IP address of the management node.
-
URL and credentials for the vCenter from which you are unregistering the plug-in.
For vSphere 6.7 and earlier, unregistering the plug-in has the same effect as disabling it but does not remove all associated files and folders that are installed locally. To remove all plug-in files, see instructions on removing the plugin.
For vSphere 7.0, all files are removed automatically after you unregister the plugin.
-
To unregister the plug-in, follow the procedure for your installed version:
-
For vCenter Plug-in 3.0 or later, unregister the plug-in using the vCenter Plug-in registration utility:
-
Enter the IP address for your management node in a browser, including the TCP port for registration:
https://<ManagementNodeIP>:9443
. -
Navigate to Unregister Plug-in.
-
Enter the following:
-
The IP address or FQDN server name of the vCenter service on which you have registered your plug-in.
-
The vCenter Administrator user name.
-
The vCenter Administrator password.
-
-
Select Unregister.
-
-
For vCenter Plug-in 2.7 to 2.7.1:
-
Use the vCenter Managed Object Browser (MOB) interface in your browser to manually unregister:
-
Enter the MOB URL:
https://<vcenter>/mob
-
Select Content > Extension Manager > UnregisterExtension.
-
Enter
com.solidfire
. -
Select Invoke Method.
-
-
Unregister using PowerCLI:
Connect-VIServer -Server $vcenter -User administrator@vsphere.local -Password xxxxXXx -Force -ErrorAction Stop -SaveCredentials $em = Get-View ExtensionManager $em.ExtensionList | ft -property Key $em.UnregisterExtension("com.solidfire") $em.UpdateViewData() $em.ExtensionList | ft -property Key Disconnect-VIServer * -Confirm:$false
-
-