-2

My Host server is ESXi where I have three virtual servers. These virtual servers automatically shuts down continuously after one hour.

Dave M
  • 4,494
  • 21
  • 30
  • 30

1 Answers1

3

If these are Windows Server machines, shutting down every hour is a typical behavior of trial licenses (which you shouldn't use in production) when not connected to the Internet. You can confirm this by looking at the Event Logs.

If they are Linux or Unix servers (or properly licensed Windows machines), look at scheduled tasks inside the guest:

  • Linux/Unix: cron, systemctl, at, ps auxwwf| grep nohup
  • Windows: Get-ScheduledTask

If you can rule out scheduled tasks or license issues, you should look at the hypervisor itself and possible PSU issues.

A. Darwin
  • 427
  • 1
  • 4
  • Yes, these windows Server (2019) are still in trail Version. You means due to trail version it goes shutdown??? – user785879 Jul 27 '21 at 07:25
  • @user785879 yes. – A. Darwin Jul 27 '21 at 07:25
  • http://muliantophang.blogspot.com/2017/09/windows-server-evaluation-auto-shutdown.html might be a work around, but if 3 Month of testing for a windows server is not enough then you using it like a [warez software](https://en.wikipedia.org/wiki/Warez) ;) – djdomi Jul 27 '21 at 10:52