當前位置:首頁 » 編程軟體 » 遠程關機腳本

遠程關機腳本

發布時間: 2024-11-14 18:50:39

⑴ ESXI 5.5在windows下使用BAT腳本通過SSH進行遠程關機

網上搜到一段腳本用來關閉vm,再關機的
# get all the VMs identifiers
VMID=$(/usr/bin/vim-cmd vmsvc/getallvms | grep -v Vmid | awk '{print $1}')
# loop through all the VMs
for i in $VMID
do
# get their state(turned on,off,whatever)
STATE=$(/usr/bin/vim-cmd vmsvc/power.getstate $i | tail -1 | awk '{print $2}')
# if they are running,turn them off (only works correctly if
# vmware tools are installed on the VMs)
if [ $STATE == on ]
then
/usr/bin/vim-cmd vmsvc/power.shutdown $i
fi
done
#shutdown the host itself
sleep 30
/sbin/shutdown.sh
/sbin/poweroff

實際也可以通過運行命令
esxcli system maintenanceMode set -e y
進入維護模式maintenanceMode(Mode的M為大寫)
esxcli system shutdown poweroff -d 60 -r test
關機
問題是虛擬機必須關閉了才能進入維護模式,又回到用腳本來自動關閉虛擬機的問題上來了。

⑵ 如何遠程通過Xshell實現對linux主機的開、關機及重啟

關機的情況無法遠程開機,關機命令shutdown,重啟命令reboot,使用步驟如下:

1、連接上相應的linux主機,進入到等待輸入shell指令的linux命令行狀態下。

熱點內容
安卓如何開啟蜂窩數據 發布:2024-11-15 03:19:59 瀏覽:887
androidedittext移動 發布:2024-11-15 03:14:28 瀏覽:471
電腦配置很高但很卡怎麼辦 發布:2024-11-15 03:07:31 瀏覽:222
黃鱔門視頻種子ftp 發布:2024-11-15 02:43:50 瀏覽:36
資料庫簽單 發布:2024-11-15 02:43:05 瀏覽:368
openfalcon源碼 發布:2024-11-15 02:32:45 瀏覽:18
長江存儲總監 發布:2024-11-15 02:28:29 瀏覽:116
資料庫添加一列 發布:2024-11-15 02:24:09 瀏覽:979
android視頻讀取 發布:2024-11-15 02:19:43 瀏覽:258
hyperv安裝linux 發布:2024-11-15 02:05:37 瀏覽:303