设为首页 收藏本站
查看: 560|回复: 0

Remove a VMFS datastore using powershell

[复制链接]

尚未签到

发表于 2018-9-1 11:57:23 | 显示全部楼层 |阅读模式
  Recently I had to remove a lot of VMFS datastores from our VMWare infrastructure as we had migrated to new storage and no longer needed them.
  In order to remove a datastore from your vmware infrastructure correctly you must follow the instructions given in this article. http://kb.vmware.com/selfservice/microsites/search.do?language=en_US&cmd=displayKC&externalId=2004605
  Basically it says you have to make sure nothing is using the datastore and then unmount and detach the datastore from each connected host. Since we work with large clusters with many ESXi hosts I didn’t enjoy the prospect of manually unmounting and detaching each datastore from each host. To avoid this I found this article http://blogs.vmware.com/vsphere/2012/01/automating-datastore-storage-device-detachment-in-vsphere-5.html which explains how to automate datastore removal. It’s a great article and includes a few functions which give you the ability to unmount and detach datastores like described above. I simply used these functions to create the script in this blog.
If the functions are already there then why use this script?
  I wrote this script so that it does everything for you in one go. You don’t have to mess around with the functions or cmd-lets yourself. Also, I made a few changes to the mentioned functions which I feel improve them. Basically all you have to do is put in the name of the datastore and run the script.
What does the script do exactly?
  1. The script gets the datastore info and then asks for confirmation before beginning the removal process.
  2. The datastore is unmounted on each host connected to it.
  3. The datastore is detached on each host connected to it.
  4. At the end of the script run the datastore name and LUN canonical name is returned. This is useful as you will probably need this information when you have to delete the LUN in your storage system later on.
How do I run the script?
  I. Go through the checklist “Unmounting a LUN checklist” here http://kb.vmware.com/selfservice/microsites/search.do?language=en_US&cmd=displayKC&externalId=2004605 and make sure your datastore is ready for removal.
  II.Copy the script to your computer and open it with and editor like powershell_ISE or powerGUI.
  III. In the #Parameters section enter the name of your vCenter server and the name of the datastore you wish to remove.
  IV. Hit F5 to run the script.
The script itself
  I’m not going to go into details about the code as you can see all that in the links to KB articles above. I have simply copied in the script for you here. Please leave a comment if you find the script useful. Enjoy!
###############################################################################################################script:           Unmount_Detach-Datastore.ps1####Description:      Unmounts and detaches a given datastore from all its connected hosts.#+                  Before running make sure that the datastore doesn't have any live VMs or templates on it.#Additional info:   http://kb.vmware.com/selfservice/microsites/search.do?language=en_US&cmd=displayKC&externalId=2004605#Additional info:   http://blogs.vmware.com/vsphere/2012/01/automating-datastore-storage-device-detachment-in-vsphere-5.html#Additional info:   https://communities.vmware.com/docs/DOC-18008##Created by:       Noam Wajnman##Creation Date:    August 4, 2014##############################################################################################################function Connect-Vcenter {    #############################################################################################    ##Function:         Connect-Vcenter    ##    ##Description:      Loads the VMWare snap-in for powershell and connects to vcenter.    ##    ##Created by:       Noam Wajnman    ##Creation Date:    20 November, 2012    ##Updated:          31 July, 2014    ##############################################################################################    param(        $vcenter    )    #Load snap-in    if (-not (Get-PSSnapin -Name VMware.VimAutomation.Core -erroraction "silentlycontinue" )) {        Write-Host "Importing VMWare Snap-in VMware.VimAutomation.Core..."           Add-PSSnapin VMware.VimAutomation.Core    }    Set-PowerCLIConfiguration -DefaultVIServerMode Single -invalidCertificateAction "ignore" -confirm:$false | out-null    #Connect to vCenter    if ($global:DefaultVIServers.Count -lt 1) {        Write-Host "Connecting to vcenter server $vcenter..."              Connect-VIServer $vCenter    }}Function Get-DatastoreMountInfo {    #function copied from https://communities.vmware.com/docs/DOC-18008    [CmdletBinding()]    Param (        [Parameter(ValueFromPipeline=$true)]        $Datastore    )    Process {        $AllInfo = @()        if (-not $Datastore) {            $Datastore = Get-Datastore        }        Foreach ($ds in $Datastore) {              if ($ds.ExtensionData.info.Vmfs) {                $hostviewDSDiskName = $ds.ExtensionData.Info.vmfs.extent[0].diskname                if ($ds.ExtensionData.Host) {                    $attachedHosts = $ds.ExtensionData.Host                    Foreach ($VMHost in $attachedHosts) {                        $hostview = Get-View $VMHost.Key                        $hostviewDSState = $VMHost.MountInfo.Mounted                        $StorageSys = Get-View $HostView.ConfigManager.StorageSystem                        $devices = $StorageSys.StorageDeviceInfo.ScsiLun                        Foreach ($device in $devices) {                            $Info = '' | Select Datastore, VMHost, Lun, Mounted, State                            if ($device.canonicalName -eq $hostviewDSDiskName) {                                $hostviewDSAttachState = ''                                if ($device.operationalState[0] -eq "ok") {                                    $hostviewDSAttachState = "Attached"                                                        } elseif ($device.operationalState[0] -eq "off") {                                    $hostviewDSAttachState = "Detached"                                                        } else {                                    $hostviewDSAttachState = $device.operationalstate[0]                                }                                $Info.Datastore = $ds.Name                                $Info.Lun = $hostviewDSDiskName                                $Info.VMHost = $hostview.Name                                $Info.Mounted = $HostViewDSState                                $Info.State = $hostviewDSAttachState                                $AllInfo += $Info                            }                        }                                             }                }            }        }        $AllInfo    }}Function Detach-Datastore {    #function based on code found here https://communities.vmware.com/docs/DOC-18008    [CmdletBinding()]    Param (        [Parameter(ValueFromPipeline=$true)]        $Datastore    )    Process {        if (-not $Datastore) {            Write-Host "No Datastore defined as input"            Exit        }        Foreach ($ds in $Datastore) {            $hostviewDSDiskName = $ds.ExtensionData.Info.vmfs.extent[0].Diskname            if ($ds.ExtensionData.Host) {                $attachedHosts = $ds.ExtensionData.Host                Foreach ($VMHost in $attachedHosts) {                    $hostview = Get-View $VMHost.Key                    $StorageSys = Get-View $HostView.ConfigManager.StorageSystem                    $devices = $StorageSys.StorageDeviceInfo.ScsiLun                    Foreach ($device in $devices) {                        if ($device.canonicalName -eq $hostviewDSDiskName) {                            #If the device is attached then detach it (I added this to the function to prevent error messages in vcenter when running the script)                            if ($device.operationalState[0] -eq "ok") {                                 $LunUUID = $Device.Uuid                                Write-Host "Detaching LUN $($Device.CanonicalName) from host $($hostview.Name)..."                                $StorageSys.DetachScsiLun($LunUUID);                            }                            #If the device isn't attached then skip it (I added this to the function to prevent error messages in vcenter when running the script)                            else {                                Write-Host "LUN $($Device.CanonicalName) is not attached on host $($hostview.Name)..."                            }                        }                    }                }            }        }    }}Function Unmount-Datastore {    #function based on code found here https://communities.vmware.com/docs/DOC-18008    [CmdletBinding()]    Param (        [Parameter(ValueFromPipeline=$true)]        $Datastore    )    Process {        if (-not $Datastore) {            Write-Host "No Datastore defined as input"            Exit        }        Foreach ($ds in $Datastore) {            $hostviewDSDiskName = $ds.ExtensionData.Info.vmfs.extent[0].Diskname            if ($ds.ExtensionData.Host) {                $attachedHosts = $ds.ExtensionData.Host                Foreach ($VMHost in $attachedHosts) {                    $hostview = Get-View $VMHost.Key                    $mounted = $VMHost.MountInfo.Mounted                    #If the device is mounted then unmount it (I added this to the function to prevent error messages in vcenter when running the script)                    if ($mounted -eq $true) {                        $StorageSys = Get-View $HostView.ConfigManager.StorageSystem                        Write-Host "Unmounting VMFS Datastore $($DS.Name) from host $($hostview.Name)..."                        $StorageSys.UnmountVmfsVolume($DS.ExtensionData.Info.vmfs.uuid);                    }                    #If the device isn't mounted then skip it (I added this to the function to prevent error messages in vcenter when running the script)                    else {                        Write-Host "VMFS Datastore $($DS.Name) is already unmounted on host $($hostview.Name)..."                    }                }            }        }    }}#VARIABLES#Parameters $vcenter = "Some_Vcenter_Server"$DSName = "Some_Datastore"#SCRIPT MAINclearConnect-Vcenter $vcenter$datastore = Get-Datastore -Name $DSName$CanonicalName = $datastore.ExtensionData.Info.Vmfs.Extent[0].DiskName$GoAhead = Read-Host "Are you sure that you want to unmount and detach: `n$DSName `n$CanonicalName`nfrom all its connected hosts?"if ($GoAhead -eq "yes" -or $GoAhead -eq "y" -or $GoAhead -eq "Y") {    Write-Host "Unmounting datastore $DSName..."       $datastore | Unmount-Datastore    Write-Host "Detaching datastore $DSName from hosts..."    $datastore | Detach-Datastore}$DSName$CanonicalName  Forward from
  https://scriptingblog.com/2014/08/13/remove-a-vmfs-datastore-using-powershell/


运维网声明 1、欢迎大家加入本站运维交流群:群②:261659950 群⑤:202807635 群⑦870801961 群⑧679858003
2、本站所有主题由该帖子作者发表,该帖子作者与运维网享有帖子相关版权
3、所有作品的著作权均归原作者享有,请您和我们一样尊重他人的著作权等合法权益。如果您对作品感到满意,请购买正版
4、禁止制作、复制、发布和传播具有反动、淫秽、色情、暴力、凶杀等内容的信息,一经发现立即删除。若您因此触犯法律,一切后果自负,我们对此不承担任何责任
5、所有资源均系网友上传或者通过网络收集,我们仅提供一个展示、介绍、观摩学习的平台,我们不对其内容的准确性、可靠性、正当性、安全性、合法性等负责,亦不承担任何法律责任
6、所有作品仅供您个人学习、研究或欣赏,不得用于商业或者其他用途,否则,一切后果均由您自己承担,我们对此不承担任何法律责任
7、如涉及侵犯版权等问题,请您及时通知我们,我们将立即采取措施予以解决
8、联系人Email:admin@iyunv.com 网址:www.yunweiku.com

所有资源均系网友上传或者通过网络收集,我们仅提供一个展示、介绍、观摩学习的平台,我们不对其承担任何法律责任,如涉及侵犯版权等问题,请您及时通知我们,我们将立即处理,联系人Email:kefu@iyunv.com,QQ:1061981298 本贴地址:https://www.yunweiku.com/thread-561084-1-1.html 上篇帖子: Powershell 将User组的成员复制到新组中去 下篇帖子: 通过PowerShell批量上传FTP文件
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

扫码加入运维网微信交流群X

扫码加入运维网微信交流群

扫描二维码加入运维网微信交流群,最新一手资源尽在官方微信交流群!快快加入我们吧...

扫描微信二维码查看详情

客服E-mail:kefu@iyunv.com 客服QQ:1061981298


QQ群⑦:运维网交流群⑦ QQ群⑧:运维网交流群⑧ k8s群:运维网kubernetes交流群


提醒:禁止发布任何违反国家法律、法规的言论与图片等内容;本站内容均来自个人观点与网络等信息,非本站认同之观点.


本站大部分资源是网友从网上搜集分享而来,其版权均归原作者及其网站所有,我们尊重他人的合法权益,如有内容侵犯您的合法权益,请及时与我们联系进行核实删除!



合作伙伴: 青云cloud

快速回复 返回顶部 返回列表