A Bit of DSC Frustration

§ August 20, 2014 14:42 by beefarino |

DSC is like remoting – when it works it’s amazing.  When it doesn’t work….. who knows why?

While prepping a Desired State Configuration demo for SQL Saturday #328, I hit a small roadblock that proved to waste several hours of my time.  I’m documenting it here in the hopes that it helps someone else.

I’m using DSC to install SQL Server onto an Azure VM.  At some point in the process, running Start-DscConfiguration started to error out, with a cryptic and altogether unhelpful message:

An old configuration is still pending. Please wait for the pending configuration to finish. If the problem persists, 
execute Start-DSCConfiguration command with -Force parameter.
    + CategoryInfo          : ResourceExists: (root/Microsoft/...gurationManager:String) [], CimException
    + FullyQualifiedErrorId : MI RESULT 11
    + PSComputerName        : nottaken.cloudapp.net
 

This error persisted regardless of what I tried, and it eventually took a new form:

Cannot invoke the SendConfigurationApply method. The PerformRequiredConfigurationChecks method is in progress and must 
return before SendConfigurationApply can be invoked.
    + CategoryInfo          : NotSpecified: (root/Microsoft/...gurationManager:String) [], CimException
    + FullyQualifiedErrorId : MI RESULT 1
    + PSComputerName        : nottaken.cloudapp.net

I finally swallowed my pride and reached out to DSC trailblazer Steve Murawski, who was able to quickly and generously point me to the fix.

The Cause

In my case, it would seem that the DSC local service was hard at work on my target node trying to make things work.  The problem was that DSC neglected a failed installer (or the resource in question failed to report it correctly).  In any case, this left DSC in a state where it thought a configurable something is happening, and thus it should prevent new things from happening. 

Specifically, I was trying to install SQL Server using xSqlPs, but the password I specified for sa did not meet the strong password requirements and the installation exited.  For some reason I’m still investigating, the xSqlServerInstall resource failed to notice the error.

The Fix

To get DSC working again, I did the following steps, on the target machine,in this order:

  1. Delete c:\windows\system32\configuration\pending.mof;
  2. Stop all WMI processes;
  3. Restart the WinRM service;

The first step was the only one I hadn’t tried, because I didn’t know anything about that file.  And it’s the key – that file tells DSC what needs to be done.  If it isn’t there, DSC seems to think that everything is back to being cool.

The Code

Here is some code I’ve started using to automate the fix described above.

remove-item $env:systemRoot/system32/configuration/pending.mof -force;
get-process *wmi* | stop-process -force;
restart-service winrm -force

Good luck!



If it’s Worth the Going it’s Worth the Ride

§ August 9, 2014 18:34 by beefarino |

My best friend from childhood is Lee Carpenter. 

He and I lived in adjacent lots that shared a corner.  That corner never grew grass because we were always stomping back and forth between our houses.  He had a swing set in his yard and I had piney woods with trees to climb and access to the creek.  He used to let me ride his larger Big Wheel because I was bigger than him and couldn’t ride mine anymore, but that way we could both cruise around our neighborhood together looking for trouble.  I went to his First Communion even though I had to wear uncomfortable clothes and no idea what a First Communion was or what was happening.  Our Lego collections routinely intermingled.  Once he added pretend wings to our pretend pirate ship because he knew I was deadly afraid of the ocean.  We protected each other when our neighbor’s big mean dog got out of its yard and came after us.  We took a dance class together because our moms wanted us to.  We once spent an afternoon figuring out how matchbox cars are put together by smashing ours apart.  Lee’s awesome, and I just got off the phone with his mother.  He passed away on July 24, 2014 from a rare germ cell cancer he apparently carried in him for his whole 41 years on Earth. 

Getting back in touch with Lee has been on my GTD “someday” list.  For years.  I’m looking at the list right now, and it’s on there.  It just says “Lee?” but I know what it means.  I probably copied that item from list to list maybe a dozen times over the span of years.  Something I should really do at some point.

And that’s as far as my effort went.  The stupid line item doesn’t matter anymore.  It’s no longer within my purview as to whether it happens.  It’s a terribly harsh reminder that as important as goals are, they’re just meaningless noise if you don’t make the effort.

So I know a Lee whose father left, but I’ll never know the Lee who raised a son on his own.

I know a Lee who couldn’t read.  I’ll never know the Lee who taught himself to do so in his Twenties. 

I know a Lee who went to some “special” school no adult would elaborate on.  I’ll never know the Lee that worked in the Smithsonian restoring historical pieces.

I know a Lee who could build homes for Star Wars action figures out of Legos.  I’ll never know the Lee who could recreate authentic furniture stains and polishes from different historical periods.

I’m happy to know the Lee I know.  But I think I’ll always wonder about the other one.  He sounds like a pretty great guy.

So hey, why don’t you stop reading this and do that thing you’ve wanted to do that you haven’t done.  Please.