1、进入维护模式:
方法一:# vim-cmd /hostsvc/maintenance_mode_enter
方法二:# esxcli system maintenanceMode set --enable yes
方法三:# vimsh -n -e /hostsvc/maintenance_mode_enter
2、退出维护模式:
方法一:# vim-cmd /hostsvc/maintenance_mode_exit
方法二:# esxcli system maintenanceMode set --enable no
方法三:# vimsh -n -e /hostsvc/maintenance_mode_exit
3、检查主机是否在维护模式
方法一:# vim-cmd /hostsvc/hostsummary | grep inMaintenanceMode
方法二:# vimsh -n -e /hostsvc/hostsummary | grep inMaintenanceMode
本文出自 “风之谷” 博客,请务必保留此出处http://chenchunjia.blog.51cto.com/1878790/1955924
原文地址:http://chenchunjia.blog.51cto.com/1878790/1955924