{"id":839,"date":"2020-04-22T19:52:18","date_gmt":"2020-04-23T03:52:18","guid":{"rendered":"https:\/\/angrysysadmins.tech\/?p=839"},"modified":"2020-04-22T20:52:07","modified_gmt":"2020-04-23T04:52:07","slug":"vmware-esxi-6-x-x-invalid-vm-status-or-virtual-machines-are-numbers","status":"publish","type":"post","link":"https:\/\/angrysysadmins.tech\/index.php\/2020\/04\/grassyloki\/vmware-esxi-6-x-x-invalid-vm-status-or-virtual-machines-are-numbers\/","title":{"rendered":"VMware ESXi 6.x.x: &#8220;Invalid VM Status&#8221; or &#8220;Virtual machines are numbers&#8221;"},"content":{"rendered":"<p>I woke up today to a wonderful sight. My ESXi 6.7 server bootlooping! It was failing with the error code 15 (Not Found) on a driver file. I know that I certainly did not delete it, but oh well this is what backups are for&#8230; I don&#8217;t have backups of the ESXi boot flashdrive, but I do for everything else. Luckily, I was able to change the boot environment to an older version. In doing this, It uninstalled my Fusion IOdrive2 Drivers, and, strangely, it appended an old version of my virtual machine inventory file to the running one. Because VMware is special, it changed the UUID of my Fusion IOdrive2&#8217;s datastore, so now I have to fix the filepath in the inventory folder. To restore my Virtual Machines, I did the following:<\/p>\n<h2>Method 1: Fixing the Problem<\/h2>\n<p>Firstly, you need to find the VM Object ID&#8217;s of your VM&#8217;s. Luckily, this is easy. Running the following command will get a list of all the invalid virtual machines.<\/p>\n<pre>vim-cmd vmsvc\/getallvms | grep invalid<\/pre>\n<p>This is the output I got on my problem child:<\/p>\n<pre>[root@ESXi-S2600:~] vim-cmd vmsvc\/getallvms | grep invalid\r\nSkipping invalid VM '553'\r\nSkipping invalid VM '714'\r\nSkipping invalid VM '715'<\/pre>\n<p>From this, we know that the ID&#8217;s of the invalid VM&#8217;s are 553, 714, 715.<\/p>\n<p>Next we need to look at the ESXi inventory file to get the path of the virtual machine. The file is located at \/etc\/vmware\/hostd\/vmInventory.xml. If we run the command below, it will parse the file and find anything in the file with the string &#8220;553&#8221;. Replace 553 with your VM ID<\/p>\n<pre>grep 553 -A 2 \/etc\/vmware\/hostd\/vmInventory.xml<\/pre>\n<p>The output will be similar to this:<\/p>\n<pre>root@ESXi-S2600:\/vmfs\/volumes] grep 553 -A 2 \/etc\/vmware\/hostd\/vmInventory.xml\r\n&lt;objID&gt;553&lt;\/objID&gt;\r\n&lt;secDomain\/&gt;\r\n&lt;vmxCfgPath&gt;\/vmfs\/volumes\/5af3d037-c454c5ba-f280-0026b97b8252\/VPN EU Routing\/VPN EU Routing.vmx&lt;\/vmxCfgPath&gt;<\/pre>\n<p>With this, we now know the filepath VMware is expecting. In my case, the file path is &#8220;\/vmfs\/volumes\/5af3d037-c454c5ba-f280-0026b97b8252\/VPN EU Routing\/VPN EU Routing.vmx&#8221;<\/p>\n<p>If I try and cat the file I will get an error saying that the file is not found. This is because my UUID for my &#8220;FusionIO&#8221; datastore has changed. I can find the new UUID by going to the directory in the command line or by finding the file.<\/p>\n<pre>[root@ESXi-S2600:~] cd \/vmfs\/volumes\/FusionIO\/<\/pre>\n<p>with the output being nothing, and changing the directory.<\/p>\n<pre>[root@ESXi-S2600:\/vmfs\/volumes\/5e3e8d1a-40d7d622-f7e7-001b2142c328]<\/pre>\n<p>The UUID can be found by looking at what the directory has changed to, in this case, &#8220;5e3e8d1a-40d7d622-f7e7-001b2142c328&#8221; instead of &#8220;FusionIO&#8221; like I told it too. That is because the Datastore name is a symlink to the UUID of the Datastore volume.<\/p>\n<p>Another way of finding the UUID is by searching all of your drives for the .vmx file VMware is looking for. The name of my VMX file is &#8220;VPN EU Routing.vmx&#8221;. I can run the following command to find it in the filesystems:<\/p>\n<pre>find \/vmfs\/volumes\/ | grep \"VPN EU Routing.vmx\"<\/pre>\n<p>My output was the following<\/p>\n<pre>\/vmfs\/volumes\/5be986bd-b0d0aa76-cf8d-001b2142c328\/VPN EU Routing\/VPN EU Routing.vmx\r\n\/vmfs\/volumes\/5be986bd-b0d0aa76-cf8d-001b2142c328\/VPN EU Routing\/VPN EU Routing.vmx.lck\r\n\/vmfs\/volumes\/5be986bd-b0d0aa76-cf8d-001b2142c328\/VPN EU Routing\/VPN EU Routing.vmx~<\/pre>\n<p>With this, we now have the full path of the virtual machine configuration file. the only one that matters is the .vmx and not the .vmx.lck and vmx~<\/p>\n<p>&nbsp;<\/p>\n<p>Next, we need to stop some of the VMware services so they recognize the change to the file. Run the following commands:<\/p>\n<pre>\/etc\/init.d\/vpxa stop\r\n\/etc\/init.d\/hostd stop<\/pre>\n<p>&nbsp;<\/p>\n<p>Now that we have the new UUID of the Datastore Volume, we need to change it in the manifest file. we can use sed to accomplish this. I will be taking my old UUID &#8220;5af3d037-c454c5ba-f280-0026b97b8252&#8221; to my new UUID &#8220;5be986bd-b0d0aa76-cf8d-001b2142c328&#8221;. <strong>MAKE SURE TO BACKUP THE FILE BEFORE DOING THIS STEP! <\/strong>-i.bak will make a backup as well, but it is good to be thorough.<strong><br \/>\n<\/strong><\/p>\n<pre>sed -i.bak 's\/5af3d037-c454c5ba-f280-0026b97b8252\/5be986bd-b0d0aa76-cf8d-001b2142c328\/' \/etc\/vmware\/hostd\/vmInventory.xml<\/pre>\n<p>Now that the file has been edited, we can restart the services<\/p>\n<pre>\/etc\/init.d\/vpxa start\r\n\/etc\/init.d\/hostd start<\/pre>\n<p>&nbsp;<\/p>\n<p>Next, we need to reload the virtual machine, with 553 being my VM ID.<\/p>\n<pre>vim-cmd vmsvc\/reload '553'<\/pre>\n<p>Now we can see if the VM was fixed either logging to the webui and looking for the missing virtual machine, or by running<\/p>\n<pre>vim-cmd vmsvc\/getallvms | grep invalid<\/pre>\n<p>If you don&#8217;t see the VM ID, then it worked! However, all hope may not be lost if the ID does show up, there may be other methods to re-add them. If you know of any, PLEASE POST THEM BELOW!<\/p>\n<h2>Method 2: Remove and Re-add<\/h2>\n<p>The last resort method is to remove the VM&#8217;s and re add them. You can accomplish them by doing the following.<\/p>\n<p>Firstly, you need to find the VM Object ID&#8217;s of your VM&#8217;s. Luckily, this is easy. Running the following command will get a list of all the invalid virtual machines.<\/p>\n<pre>vim-cmd vmsvc\/getallvms | grep invalid<\/pre>\n<p>This is the output I got on my problem child:<\/p>\n<pre>[root@ESXi-S2600:~] vim-cmd vmsvc\/getallvms | grep invalid\r\nSkipping invalid VM '553'\r\nSkipping invalid VM '714'\r\nSkipping invalid VM '715'<\/pre>\n<p>From this, we know that the id&#8217;s of the invalid VM&#8217;s are 553, 714, 715.<\/p>\n<p>&nbsp;<\/p>\n<p>Next we need to look at the ESXi inventory file to get the path of the virtual machine. The file is located at \/etc\/vmware\/hostd\/vmInventory.xml. If we run the command below, it will parse the file and find anything in the file with the string &#8220;553&#8221;. Replace 553 with your VM ID<\/p>\n<pre>grep 553 -A 2 \/etc\/vmware\/hostd\/vmInventory.xml<\/pre>\n<p>The output will be similar to this:<\/p>\n<pre>root@ESXi-S2600:\/vmfs\/volumes] grep 553 -A 2 \/etc\/vmware\/hostd\/vmInventory.xml\r\n&lt;objID&gt;553&lt;\/objID&gt;\r\n&lt;secDomain\/&gt;\r\n&lt;vmxCfgPath&gt;\/vmfs\/volumes\/5af3d037-c454c5ba-f280-0026b97b8252\/VPN EU Routing\/VPN EU Routing.vmx&lt;\/vmxCfgPath&gt;<\/pre>\n<p>From this, we can see what the .vmx file. In my case, this vmx file is &#8220;VPN EU Routing.vmx&#8221;. Save this filename for future use.<\/p>\n<p>&nbsp;<\/p>\n<p>Now that we have the filename. we can remove the problem virtual machine. In my case ID 553.<\/p>\n<pre>vim-cmd \/vmsvc\/unregister 553<\/pre>\n<p>&nbsp;<\/p>\n<p>Now that the machine is removed, we can re-add it by finding the .vmx, in my case &#8220;VPN EU Routing.vmx&#8221;<\/p>\n<pre>find \/vmfs\/volumes\/ | grep \"VPN EU Routing.vmx\"<\/pre>\n<p>My output was the following<\/p>\n<pre>\/vmfs\/volumes\/5be986bd-b0d0aa76-cf8d-001b2142c328\/VPN EU Routing\/VPN EU Routing.vmx\r\n\/vmfs\/volumes\/5be986bd-b0d0aa76-cf8d-001b2142c328\/VPN EU Routing\/VPN EU Routing.vmx.lck\r\n\/vmfs\/volumes\/5be986bd-b0d0aa76-cf8d-001b2142c328\/VPN EU Routing\/VPN EU Routing.vmx~<\/pre>\n<p>With this, we now have the full path of the virtual machine configuration file. The only one that matters is the .vmx and not the .vmx.lck and vmx~<\/p>\n<p>&nbsp;<\/p>\n<p>Finally, we can issue a command to add the virtual machine from the filepath discovered by the find command.<\/p>\n<pre>vim-cmd solo\/registervm \"\/vmfs\/volumes\/5be986bd-b0d0aa76-cf8d-001b2142c328\/VPN EU Routing\/VPN EU Routing.vmx\"<\/pre>\n<p>And just like that, it is re-added. You will need to disconnect and reconnect the host in vCenter to see the changes. Since it is a new VM, you will have to modify auto start, resource groups, and logical folders, as well as any other thing using that VM&#8217;s old VM Object ID. It sucks but at least you did not lose any data.<\/p>\n<p>If you have a better method for fixing this (or a similar issue) please post about it below. I would love to see better methods, as the documentation for these issues is not too great.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>I woke up today to a wonderful sight. My ESXi 6.7 server bootlooping! It was failing with the error code 15 (Not Found) on a driver file. I know that I certainly did not delete it, but oh well this is what backups are for&#8230; I don&#8217;t have backups of the ESXi boot flashdrive, but <br \/><a class=\"read-more-button\" href=\"https:\/\/angrysysadmins.tech\/index.php\/2020\/04\/grassyloki\/vmware-esxi-6-x-x-invalid-vm-status-or-virtual-machines-are-numbers\/\">Read More &raquo;<\/a><\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[22,11],"tags":[18,14],"coauthors":[39],"class_list":["post-839","post","type-post","status-publish","format-standard","hentry","category-virtualization","category-vmware","tag-virtualization","tag-vmware"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>VMware ESXi 6.x.x: &quot;Invalid VM Status&quot; or &quot;Virtual machines are numbers&quot; - Angry Sysadmins<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/angrysysadmins.tech\/index.php\/2020\/04\/grassyloki\/vmware-esxi-6-x-x-invalid-vm-status-or-virtual-machines-are-numbers\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"VMware ESXi 6.x.x: &quot;Invalid VM Status&quot; or &quot;Virtual machines are numbers&quot; - Angry Sysadmins\" \/>\n<meta property=\"og:description\" content=\"I woke up today to a wonderful sight. My ESXi 6.7 server bootlooping! It was failing with the error code 15 (Not Found) on a driver file. I know that I certainly did not delete it, but oh well this is what backups are for&#8230; I don&#8217;t have backups of the ESXi boot flashdrive, but Read More &raquo;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/angrysysadmins.tech\/index.php\/2020\/04\/grassyloki\/vmware-esxi-6-x-x-invalid-vm-status-or-virtual-machines-are-numbers\/\" \/>\n<meta property=\"og:site_name\" content=\"Angry Sysadmins\" \/>\n<meta property=\"article:published_time\" content=\"2020-04-23T03:52:18+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2020-04-23T04:52:07+00:00\" \/>\n<meta name=\"author\" content=\"Ryan Parker\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Ryan Parker\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"7 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/angrysysadmins.tech\\\/index.php\\\/2020\\\/04\\\/grassyloki\\\/vmware-esxi-6-x-x-invalid-vm-status-or-virtual-machines-are-numbers\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/angrysysadmins.tech\\\/index.php\\\/2020\\\/04\\\/grassyloki\\\/vmware-esxi-6-x-x-invalid-vm-status-or-virtual-machines-are-numbers\\\/\"},\"author\":{\"name\":\"Ryan Parker\",\"@id\":\"https:\\\/\\\/angrysysadmins.tech\\\/#\\\/schema\\\/person\\\/651321cd35645fb6a4d8a75b7bc7c199\"},\"headline\":\"VMware ESXi 6.x.x: &#8220;Invalid VM Status&#8221; or &#8220;Virtual machines are numbers&#8221;\",\"datePublished\":\"2020-04-23T03:52:18+00:00\",\"dateModified\":\"2020-04-23T04:52:07+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/angrysysadmins.tech\\\/index.php\\\/2020\\\/04\\\/grassyloki\\\/vmware-esxi-6-x-x-invalid-vm-status-or-virtual-machines-are-numbers\\\/\"},\"wordCount\":1045,\"commentCount\":1,\"keywords\":[\"Virtualization\",\"VMware\"],\"articleSection\":[\"Virtualization\",\"VMware\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/angrysysadmins.tech\\\/index.php\\\/2020\\\/04\\\/grassyloki\\\/vmware-esxi-6-x-x-invalid-vm-status-or-virtual-machines-are-numbers\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/angrysysadmins.tech\\\/index.php\\\/2020\\\/04\\\/grassyloki\\\/vmware-esxi-6-x-x-invalid-vm-status-or-virtual-machines-are-numbers\\\/\",\"url\":\"https:\\\/\\\/angrysysadmins.tech\\\/index.php\\\/2020\\\/04\\\/grassyloki\\\/vmware-esxi-6-x-x-invalid-vm-status-or-virtual-machines-are-numbers\\\/\",\"name\":\"VMware ESXi 6.x.x: \\\"Invalid VM Status\\\" or \\\"Virtual machines are numbers\\\" - Angry Sysadmins\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/angrysysadmins.tech\\\/#website\"},\"datePublished\":\"2020-04-23T03:52:18+00:00\",\"dateModified\":\"2020-04-23T04:52:07+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/angrysysadmins.tech\\\/#\\\/schema\\\/person\\\/651321cd35645fb6a4d8a75b7bc7c199\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/angrysysadmins.tech\\\/index.php\\\/2020\\\/04\\\/grassyloki\\\/vmware-esxi-6-x-x-invalid-vm-status-or-virtual-machines-are-numbers\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/angrysysadmins.tech\\\/index.php\\\/2020\\\/04\\\/grassyloki\\\/vmware-esxi-6-x-x-invalid-vm-status-or-virtual-machines-are-numbers\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/angrysysadmins.tech\\\/index.php\\\/2020\\\/04\\\/grassyloki\\\/vmware-esxi-6-x-x-invalid-vm-status-or-virtual-machines-are-numbers\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/angrysysadmins.tech\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"VMware ESXi 6.x.x: &#8220;Invalid VM Status&#8221; or &#8220;Virtual machines are numbers&#8221;\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/angrysysadmins.tech\\\/#website\",\"url\":\"https:\\\/\\\/angrysysadmins.tech\\\/\",\"name\":\"Angry Sysadmins\",\"description\":\"A site full of angry sysadmins here to vent and help\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/angrysysadmins.tech\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/angrysysadmins.tech\\\/#\\\/schema\\\/person\\\/651321cd35645fb6a4d8a75b7bc7c199\",\"name\":\"Ryan Parker\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/fc12b1a02765c8017062ee6f41eb34a7b14575bcd8acd7da40e176fe8f12b10f?s=96&d=mm&r=g664d0e05248e51cb1d71b3f66c6f929d\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/fc12b1a02765c8017062ee6f41eb34a7b14575bcd8acd7da40e176fe8f12b10f?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/fc12b1a02765c8017062ee6f41eb34a7b14575bcd8acd7da40e176fe8f12b10f?s=96&d=mm&r=g\",\"caption\":\"Ryan Parker\"},\"description\":\"Professionally im a Infrastructure Security Specialist. I current maintain a homelab with about 3TB of RAM, 240+ TB of storage, tons of CPU cores, and 100gbit networking backbone in the garage running up my electricity bill.\",\"url\":\"https:\\\/\\\/angrysysadmins.tech\\\/index.php\\\/author\\\/grassyloki\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"VMware ESXi 6.x.x: \"Invalid VM Status\" or \"Virtual machines are numbers\" - Angry Sysadmins","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/angrysysadmins.tech\/index.php\/2020\/04\/grassyloki\/vmware-esxi-6-x-x-invalid-vm-status-or-virtual-machines-are-numbers\/","og_locale":"en_US","og_type":"article","og_title":"VMware ESXi 6.x.x: \"Invalid VM Status\" or \"Virtual machines are numbers\" - Angry Sysadmins","og_description":"I woke up today to a wonderful sight. My ESXi 6.7 server bootlooping! It was failing with the error code 15 (Not Found) on a driver file. I know that I certainly did not delete it, but oh well this is what backups are for&#8230; I don&#8217;t have backups of the ESXi boot flashdrive, but Read More &raquo;","og_url":"https:\/\/angrysysadmins.tech\/index.php\/2020\/04\/grassyloki\/vmware-esxi-6-x-x-invalid-vm-status-or-virtual-machines-are-numbers\/","og_site_name":"Angry Sysadmins","article_published_time":"2020-04-23T03:52:18+00:00","article_modified_time":"2020-04-23T04:52:07+00:00","author":"Ryan Parker","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Ryan Parker","Est. reading time":"7 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/angrysysadmins.tech\/index.php\/2020\/04\/grassyloki\/vmware-esxi-6-x-x-invalid-vm-status-or-virtual-machines-are-numbers\/#article","isPartOf":{"@id":"https:\/\/angrysysadmins.tech\/index.php\/2020\/04\/grassyloki\/vmware-esxi-6-x-x-invalid-vm-status-or-virtual-machines-are-numbers\/"},"author":{"name":"Ryan Parker","@id":"https:\/\/angrysysadmins.tech\/#\/schema\/person\/651321cd35645fb6a4d8a75b7bc7c199"},"headline":"VMware ESXi 6.x.x: &#8220;Invalid VM Status&#8221; or &#8220;Virtual machines are numbers&#8221;","datePublished":"2020-04-23T03:52:18+00:00","dateModified":"2020-04-23T04:52:07+00:00","mainEntityOfPage":{"@id":"https:\/\/angrysysadmins.tech\/index.php\/2020\/04\/grassyloki\/vmware-esxi-6-x-x-invalid-vm-status-or-virtual-machines-are-numbers\/"},"wordCount":1045,"commentCount":1,"keywords":["Virtualization","VMware"],"articleSection":["Virtualization","VMware"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/angrysysadmins.tech\/index.php\/2020\/04\/grassyloki\/vmware-esxi-6-x-x-invalid-vm-status-or-virtual-machines-are-numbers\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/angrysysadmins.tech\/index.php\/2020\/04\/grassyloki\/vmware-esxi-6-x-x-invalid-vm-status-or-virtual-machines-are-numbers\/","url":"https:\/\/angrysysadmins.tech\/index.php\/2020\/04\/grassyloki\/vmware-esxi-6-x-x-invalid-vm-status-or-virtual-machines-are-numbers\/","name":"VMware ESXi 6.x.x: \"Invalid VM Status\" or \"Virtual machines are numbers\" - Angry Sysadmins","isPartOf":{"@id":"https:\/\/angrysysadmins.tech\/#website"},"datePublished":"2020-04-23T03:52:18+00:00","dateModified":"2020-04-23T04:52:07+00:00","author":{"@id":"https:\/\/angrysysadmins.tech\/#\/schema\/person\/651321cd35645fb6a4d8a75b7bc7c199"},"breadcrumb":{"@id":"https:\/\/angrysysadmins.tech\/index.php\/2020\/04\/grassyloki\/vmware-esxi-6-x-x-invalid-vm-status-or-virtual-machines-are-numbers\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/angrysysadmins.tech\/index.php\/2020\/04\/grassyloki\/vmware-esxi-6-x-x-invalid-vm-status-or-virtual-machines-are-numbers\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/angrysysadmins.tech\/index.php\/2020\/04\/grassyloki\/vmware-esxi-6-x-x-invalid-vm-status-or-virtual-machines-are-numbers\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/angrysysadmins.tech\/"},{"@type":"ListItem","position":2,"name":"VMware ESXi 6.x.x: &#8220;Invalid VM Status&#8221; or &#8220;Virtual machines are numbers&#8221;"}]},{"@type":"WebSite","@id":"https:\/\/angrysysadmins.tech\/#website","url":"https:\/\/angrysysadmins.tech\/","name":"Angry Sysadmins","description":"A site full of angry sysadmins here to vent and help","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/angrysysadmins.tech\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/angrysysadmins.tech\/#\/schema\/person\/651321cd35645fb6a4d8a75b7bc7c199","name":"Ryan Parker","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/fc12b1a02765c8017062ee6f41eb34a7b14575bcd8acd7da40e176fe8f12b10f?s=96&d=mm&r=g664d0e05248e51cb1d71b3f66c6f929d","url":"https:\/\/secure.gravatar.com\/avatar\/fc12b1a02765c8017062ee6f41eb34a7b14575bcd8acd7da40e176fe8f12b10f?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/fc12b1a02765c8017062ee6f41eb34a7b14575bcd8acd7da40e176fe8f12b10f?s=96&d=mm&r=g","caption":"Ryan Parker"},"description":"Professionally im a Infrastructure Security Specialist. I current maintain a homelab with about 3TB of RAM, 240+ TB of storage, tons of CPU cores, and 100gbit networking backbone in the garage running up my electricity bill.","url":"https:\/\/angrysysadmins.tech\/index.php\/author\/grassyloki\/"}]}},"_links":{"self":[{"href":"https:\/\/angrysysadmins.tech\/index.php\/wp-json\/wp\/v2\/posts\/839","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/angrysysadmins.tech\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/angrysysadmins.tech\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/angrysysadmins.tech\/index.php\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/angrysysadmins.tech\/index.php\/wp-json\/wp\/v2\/comments?post=839"}],"version-history":[{"count":7,"href":"https:\/\/angrysysadmins.tech\/index.php\/wp-json\/wp\/v2\/posts\/839\/revisions"}],"predecessor-version":[{"id":847,"href":"https:\/\/angrysysadmins.tech\/index.php\/wp-json\/wp\/v2\/posts\/839\/revisions\/847"}],"wp:attachment":[{"href":"https:\/\/angrysysadmins.tech\/index.php\/wp-json\/wp\/v2\/media?parent=839"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/angrysysadmins.tech\/index.php\/wp-json\/wp\/v2\/categories?post=839"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/angrysysadmins.tech\/index.php\/wp-json\/wp\/v2\/tags?post=839"},{"taxonomy":"author","embeddable":true,"href":"https:\/\/angrysysadmins.tech\/index.php\/wp-json\/wp\/v2\/coauthors?post=839"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}