ESXI 5.5在windows下使用BAT脚本通过SSH进行远程关机?

ESXI 5.5在windows下使用BAT脚本通过SSH进行远程关机?,第1张

网上搜到一段脚本用来关闭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

关机

问题是虚拟机必须关闭了才能进入维护模式,又回到用脚本来自动关闭虚拟机的问题上来了。

打开终端使用ssh命令链接远程服务器。 命令格式 : ssh root@192.168.1.1(root对应你使用的用户名,192……对应的服务器ip地址,一般服务器端口22,命令默认22.如果需要更改端口在ssh后面 -p 端口)

关机的情况无法远程开机,关机命令shutdown,重启命令reboot,使用步骤如下:

1、连接上相应的linux主机,进入到等待输入shell指令的linux命令行状态下。

2、其次,以重启为例,在linux命令行中输入:reboot。

3、最后,按下回车键执行shell指令,此时会看到linux主机成功重启了。


欢迎分享,转载请注明来源:夏雨云

原文地址:https://www.xiayuyun.com/zonghe/530645.html

(0)
打赏 微信扫一扫微信扫一扫 支付宝扫一扫支付宝扫一扫
上一篇 2023-06-23
下一篇2023-06-23

发表评论

登录后才能评论

评论列表(0条)

    保存