It seems like just last year I posted that I had redone my website in Drupal and had gotten back into blogging, ok, gotten back into blogging somewhat. I am a pretty big fan of Drupal, I love their community driven method, the flexibility, the do it yourself of it all. As time went by though I found myself with less and less time available to deal with the community driven method of website development, lots of flexibility and the do it yourself of it all at the personal blog site level. Further I was especially stymied by the almost nonexistent support for blogging from mobile platforms. I tried various methods of dealing with this, but none of them felt as easy as anything on an iPad should feel and what was there seemed to rely on either hosting through Drupal Gardens or on running an outdated version of the Blog API module.
So for all those reasons and more this week I’m pretty happy to say that I’ve now ported this site over to essentially the anti-Drupal, WordPress. WordPress comes in both community and commercial flavors, but while I don’t think in 4 years of working with Drupal I saw a single paid module or theme that wasn’t custom work almost everyone I’ve found so far has at least some relationship with a commercial product in the same ecosphere. Even with that so far I’ve found it to be an economically viable option as long as free isn’t your ceiling. In this post I’m going to outline some of the things I’m finding helpful and some of the challenges and differences between the two I’ve had to work my way through.

I’ve recently been working on getting my environment upgraded from vSphere 5.1 to 5.5. Last week I replaced one vCenter server with a clean install and upgraded another, in process implementing home brewed certificates thanks in no small part to Derek Seaman’s excellent SSL toolkit and tutorials. With that done and nice and clean this week I turned towards getting the ESX hosts updated. Like all right thinking folks, I typically like to use vSphere Update Manager for this task in a vCenter supported environment.
The first host went very well and was up and patched without issue. After that the wheels fell off for the other two. I was continuously getting “Unsupported configuration” when I would try to scan the host, if I tried to push through and Remediate it would fail with “Software or system configuration of host <hostnamehere> is incompatible. Check scan results for details.” Nice error messages right? I tried a few things, reinstalling the management agents via VMware KB 1031919, rebooting the host, etc. After no luck there I logged a case with VMware where we began trying to find more information in the vua.log and verifying the correct fdm agent is installed via the esxcli software vib list | grep fdm command. In the end we were able to find my issue but I’ll be honest the documentation and logging in this scenario is pretty bad.
When Veeam Backup & Replication creates a vPowerNFS share, mounting your backup datastore as an addressable datastore to your host that is added in at least one way as a series of lines in the /etc/vmware/esx.conf file as shown below:
/nas/VeeamBackup_backupserver/readOnly = "false" /nas/VeeamBackup_backupserver/enabled = "true" /nas/VeeamBackup_backupserver/host = "backupserver.domain.local" /nas/VeeamBackup_backupserver/share = "/VeeamBackup_backupserver"
This is great except as I’ve moved from Veeam server to Veeam server with different names and I dismounted and removed the different datastores from the hosts the old lines of config weren’t removed from esx.conf. Further after finally seeing the “Error in ESX configuration file (esx.conf)” we got lead down the rabbit hole of the preprocessing of a VUM upgrade. Evidently one of the first steps (at the 12% mark of the remediate task in my case) is to run a variant of the esxcfg-info CLI command which in my case was producing this:
~ # esxcfg-info | grep 'System UUID' Error: Unable to resolve hostname 'backupserver.domain.local' ~ #
where backupserver.domain.local was the name of an old Veeam server we had used. When the unfiltered esxcfg-info command it would begin listing but would eventually bomb with the same error.
After seeing the command output I opened up the esx.conf file with vi, found the offending lines of configuration and removed them. After saving the file I was able to scan the host again and the scan reported the host as being non-compliant instead of incompatible, just what we were looking for. A remediation then was successful and I was back in business. One item of note if you find yourself wanting to try this yourself is make sure you take a backup of the esx.conf file as a miss step here could result in production datastore being unavailable. For those not too familar with Linux style commands you can do this easily with
cp /etc/vmware/esx.conf /tmp/esx.conf
In the end what I do know is that the act of adding a NFS datastore to an ESX host and then later removing it both from ESXi configuration as well as the underlying DNS zone is what caused the blocking of my upgrade. Now what I don’t know if this is due to it being programmatically added by Veeam and then manually removed at a later date or if this is a situation that is common to the use of NFS datastores in general. More importantly, it would be great if VMware would work on how it is reporting such configuration issues. Even taking me out of the equation, if it takes your own Support Engineer 1.5 hours to track it down it isn’t documented enough.
About me
Hi there and welcome to koolaid.info! My name is Jim Jones, a Geek of Many Hats living in West Virginia.
This site was created for the purpose of being a locker full of all the handy things I’ve learned over the years, know I’m going to need again and know I’ll forget. It’s morphed a bit over the years as all things do but still that’s the main purpose. If you’d like to know more about me check out any of the social links at the top left of the site, I’m pretty much an open book.
If you’ve found this page I hope you find it’s contents helpful. Finally, anything written here are solely my views and do not reflect those of my employer.
You must be logged in to post a comment.