0
点赞
收藏
分享

微信扫一扫

VM cannot power on due to locked on ESXI hosts

灵魂跑者 2023-08-17 阅读 54
VM运维
  1. Check if there are some .lck files exists in VM folder


  1. If yes, ssh to ESXi host and navigate to the vm folder, then use following command find out the VM locked on which ESXi hosts

for file in $(ls -a); do echo ${file}; vmfsfilelockinfo -p ${file} |grep -i mode; done

  1. Power on the VM on locked ESXI host


举报

相关推荐

0 条评论