build 7bbbddf7 | content blog-content@c8490fa · 338 posts | profiles 20 · corpus 267 | 0 skipped | | format
apiVersion: soultec.ch/v1kind: Postmetadata: name: cannot-power-on-view-vms-after-deleting-resource-pools locale: en labels: author: dario-doerflinger series: lessons-learned capability/modern-workplace: 2.11 capability/virtualization: 1.37 vendor/omnissa: 2.39 vendor/vmware: 0.88 annotations: source: blog-content/posts/en/cannot-power-on-view-vms-after-deleting-resource-pools.md route: /en/insights/cannot-power-on-view-vms-after-deleting-resource-pools/ schema: /nerd/schema/posts.json markdown: /en/insights/cannot-power-on-view-vms-after-deleting-resource-pools.mdspec: title: Cannot power on VMs after deleting resource pools date: 2017-07-27 author: dario-doerflinger locale: en summary: >- One of my colleagues had a problem the other night. He was called to troubleshoot a VMware View environment which was not running as expected. capabilities: [modern-workplace, virtualization] vendors: [omnissa, vmware] series: lessons-learned legacySlug: cannot-power-on-view-vms-after-deleting-resource-pools migrated: 2026-08-24 draft: false sections: - body: | One of my colleagues had a problem the other night. He was called to troubleshoot a VMware View environment which was not running as expected. One thing he did during the cleaning up was to get rid of a number of resource pools that were only created for the purpose of putting the VMs into "folders" when viewed from the old C# Client. After fixing other errors he was ready to create new linked clones. But they could not power on. The error message said: > The available memory resources in the parent resource pool are insufficient for this operation Turns out the hosts had a file in /etc/vmware which referred to the resource pools and was not properly cleaned up. In order to solve this problem the following had to be run on each esxi host: > rm /etc/vmware/pools.xml > /etc/init.d/hostd restart > /etc/init.d/vpxa restart After that the VMs were able to power-on as expected and the environment was up and running again.status: corpus: 267 alsoLike: - {ref: posts/soultec-ag-erreicht-hochsten-omnissa-partnerstatus, score: 1.00} - {ref: posts/ubersicht-omnissa-horizon-fur-citrix-kunden, score: 1.00} - {ref: solutions/omnissa/horizon/omnissa-app-volumes, score: 1.00}
{ "apiVersion": "soultec.ch/v1", "kind": "Post", "metadata": { "name": "cannot-power-on-view-vms-after-deleting-resource-pools", "locale": "en", "labels": { "author": "dario-doerflinger", "series": "lessons-learned", "capability/modern-workplace": "2.11", "capability/virtualization": "1.37", "vendor/omnissa": "2.39", "vendor/vmware": "0.88" }, "annotations": { "source": "blog-content/posts/en/cannot-power-on-view-vms-after-deleting-resource-pools.md", "route": "/en/insights/cannot-power-on-view-vms-after-deleting-resource-pools/", "schema": "/nerd/schema/posts.json", "markdown": "/en/insights/cannot-power-on-view-vms-after-deleting-resource-pools.md" } }, "spec": { "title": "Cannot power on VMs after deleting resource pools", "date": "2017-07-27", "author": "dario-doerflinger", "locale": "en", "summary": "One of my colleagues had a problem the other night. He was called to troubleshoot a VMware View environment which was not running as expected.", "capabilities": [ "modern-workplace", "virtualization" ], "vendors": [ "omnissa", "vmware" ], "series": "lessons-learned", "legacySlug": "cannot-power-on-view-vms-after-deleting-resource-pools", "migrated": "2026-08-24", "draft": false }, "sections": [ { "body": "One of my colleagues had a problem the other night. He was called to troubleshoot a VMware View environment which was not running as expected. One thing he did during the cleaning up was to get rid of a number of resource pools that were only created for the purpose of putting the VMs into \"folders\" when viewed from the old C# Client.\n\nAfter fixing other errors he was ready to create new linked clones. But they could not power on. The error message said:\n\n> The available memory resources in the parent resource pool are insufficient for this operation\n\nTurns out the hosts had a file in /etc/vmware which referred to the resource pools and was not properly cleaned up. In order to solve this problem the following had to be run on each esxi host:\n\n> rm /etc/vmware/pools.xml \n> /etc/init.d/hostd restart \n> /etc/init.d/vpxa restart\n\nAfter that the VMs were able to power-on as expected and the environment was up and running again." } ], "status": { "corpus": 267, "alsoLike": [ { "ref": "posts/soultec-ag-erreicht-hochsten-omnissa-partnerstatus", "score": "1.00" }, { "ref": "posts/ubersicht-omnissa-horizon-fur-citrix-kunden", "score": "1.00" }, { "ref": "solutions/omnissa/horizon/omnissa-app-volumes", "score": "1.00" } ] }}
apiVersion = "soultec.ch/v1"kind = "Post"[metadata]name = "cannot-power-on-view-vms-after-deleting-resource-pools"locale = "en"[metadata.labels]author = "dario-doerflinger"series = "lessons-learned""capability/modern-workplace" = "2.11""capability/virtualization" = "1.37""vendor/omnissa" = "2.39""vendor/vmware" = "0.88"[metadata.annotations]source = "blog-content/posts/en/cannot-power-on-view-vms-after-deleting-resource-pools.md"route = "/en/insights/cannot-power-on-view-vms-after-deleting-resource-pools/"schema = "/nerd/schema/posts.json"markdown = "/en/insights/cannot-power-on-view-vms-after-deleting-resource-pools.md"[spec]title = "Cannot power on VMs after deleting resource pools"date = 2017-07-27author = "dario-doerflinger"locale = "en"summary = "One of my colleagues had a problem the other night. He was called to troubleshoot a VMware View environment which was not running as expected."capabilities = ["modern-workplace", "virtualization"]vendors = ["omnissa", "vmware"]series = "lessons-learned"legacySlug = "cannot-power-on-view-vms-after-deleting-resource-pools"migrated = 2026-08-24draft = false[[sections]]body = '''One of my colleagues had a problem the other night. He was called to troubleshoot a VMware View environment which was not running as expected. One thing he did during the cleaning up was to get rid of a number of resource pools that were only created for the purpose of putting the VMs into "folders" when viewed from the old C# Client.After fixing other errors he was ready to create new linked clones. But they could not power on. The error message said:> The available memory resources in the parent resource pool are insufficient for this operationTurns out the hosts had a file in /etc/vmware which referred to the resource pools and was not properly cleaned up. In order to solve this problem the following had to be run on each esxi host:> rm /etc/vmware/pools.xml > /etc/init.d/hostd restart > /etc/init.d/vpxa restartAfter that the VMs were able to power-on as expected and the environment was up and running again.'''[status]corpus = 267[[status.alsoLike]]ref = "posts/soultec-ag-erreicht-hochsten-omnissa-partnerstatus"score = "1.00"[[status.alsoLike]]ref = "posts/ubersicht-omnissa-horizon-fur-citrix-kunden"score = "1.00"[[status.alsoLike]]ref = "solutions/omnissa/horizon/omnissa-app-volumes"score = "1.00"
<?xml version="1.0" encoding="UTF-8"?><manifest kind="Post"> <apiVersion>soultec.ch/v1</apiVersion> <metadata> <name>cannot-power-on-view-vms-after-deleting-resource-pools</name> <locale>en</locale> <labels> <author>dario-doerflinger</author> <series>lessons-learned</series> <entry key="capability/modern-workplace">2.11</entry> <entry key="capability/virtualization">1.37</entry> <entry key="vendor/omnissa">2.39</entry> <entry key="vendor/vmware">0.88</entry> </labels> <annotations> <source>blog-content/posts/en/cannot-power-on-view-vms-after-deleting-resource-pools.md</source> <route>/en/insights/cannot-power-on-view-vms-after-deleting-resource-pools/</route> <schema>/nerd/schema/posts.json</schema> <markdown>/en/insights/cannot-power-on-view-vms-after-deleting-resource-pools.md</markdown> </annotations> </metadata> <spec> <title>Cannot power on VMs after deleting resource pools</title> <date>2017-07-27</date> <author>dario-doerflinger</author> <locale>en</locale> <summary>One of my colleagues had a problem the other night. He was called to troubleshoot a VMware View environment which was not running as expected.</summary> <capabilities> <item>modern-workplace</item> <item>virtualization</item> </capabilities> <vendors> <item>omnissa</item> <item>vmware</item> </vendors> <series>lessons-learned</series> <legacySlug>cannot-power-on-view-vms-after-deleting-resource-pools</legacySlug> <migrated>2026-08-24</migrated> <draft>false</draft> </spec> <sections> <section> <body>One of my colleagues had a problem the other night. He was called to troubleshoot a VMware View environment which was not running as expected. One thing he did during the cleaning up was to get rid of a number of resource pools that were only created for the purpose of putting the VMs into "folders" when viewed from the old C# Client.After fixing other errors he was ready to create new linked clones. But they could not power on. The error message said:&gt; The available memory resources in the parent resource pool are insufficient for this operationTurns out the hosts had a file in /etc/vmware which referred to the resource pools and was not properly cleaned up. In order to solve this problem the following had to be run on each esxi host:&gt; rm /etc/vmware/pools.xml &gt; /etc/init.d/hostd restart &gt; /etc/init.d/vpxa restartAfter that the VMs were able to power-on as expected and the environment was up and running again. </body> </section> </sections> <status> <corpus>267</corpus> <alsoLike> <item> <ref>posts/soultec-ag-erreicht-hochsten-omnissa-partnerstatus</ref> <score>1.00</score> </item> <item> <ref>posts/ubersicht-omnissa-horizon-fur-citrix-kunden</ref> <score>1.00</score> </item> <item> <ref>solutions/omnissa/horizon/omnissa-app-volumes</ref> <score>1.00</score> </item> </alsoLike> </status></manifest>
Lessons learned · 2017-07-27

Cannot power on VMs after deleting resource pools

One of my colleagues had a problem the other night. He was called to troubleshoot a VMware View environment which was not running as expected.

2017-07-27Date
Dario DörflingerAuthor
1Min read
Topics Modern Workplace 2.11 Virtualization 1.37
Vendors Omnissa 2.39 VMware 0.88

This post is from 2017. It stays online because people still look for it, but it describes the products as they were then.

One of my colleagues had a problem the other night. He was called to troubleshoot a VMware View environment which was not running as expected. One thing he did during the cleaning up was to get rid of a number of resource pools that were only created for the purpose of putting the VMs into “folders” when viewed from the old C# Client.

After fixing other errors he was ready to create new linked clones. But they could not power on. The error message said:

The available memory resources in the parent resource pool are insufficient for this operation

Turns out the hosts had a file in /etc/vmware which referred to the resource pools and was not properly cleaned up. In order to solve this problem the following had to be run on each esxi host:

rm /etc/vmware/pools.xml
/etc/init.d/hostd restart
/etc/init.d/vpxa restart

After that the VMs were able to power-on as expected and the environment was up and running again.

You might also like