Upgrade Log Insight

Posted Leave a commentPosted in Log Insight, VMware

Now that Log Insight 1.5 has to be come GA, its time to upgrade. So what new in 1.5 ? Among the most Important are: Active Directory support for authentication Significant query performance improvements by optimizing the execution of common queries User interface for upgrading from previous versions of Log Insight through Administration UI The rest can be read in the release notes here   Note the last bullet – Cause this is not how its done on 1.0, more on that later, first we need to have a look at security! (and if you haven’t downloaded the rpm file, now […]

Bulk create vSwitch networks

Posted Leave a commentPosted in Script

I blogged a bit about this in the Consolidating datacenters post. As part of moving a customers VM’s in to our datacenter, the network and storage was streched and host deployed in our datacenter was presented to the customeres vCenter, so that it was a simple (s)vMotion, that was all that was needed to move the VM’s from customer site to our datacenter. Simple, fast and effective. All this was only possible because the customer still used the standard vSwitch – As our datacenter uses the distributed virtual switch, I created this script in order to stadalize how network was created […]

Reset VM reservations and limits

Posted Leave a commentPosted in Script

I was moving a customers VM’s from their site via vMotion into our datacenter, and one of the problems you can run into is with reservations and limits. There may have been valid reasons for having limit and reservations, but they can also be the root of performance problems. As this was not the case with this customer, I created the one liner below in order to remove the reservation and limits.  

vCops Forced password change

Posted Leave a commentPosted in Vcops, vRops

Short after vCops 5.8 was released I upgraded, all went smooth. But then the other day, I had to restart the appliance, after waiting a while and I was still not able to login to the web gui. I open up a console to the two VMs, only to see the both VMs were stuck at boot waiting for a password change. So I typed in the old password and a new one and shortly after vCops was up and running again.   Well as it turns out had I just read the release notes properly, I would have know […]

CIM error

Posted 1 CommentPosted in Script

I was trying get some hardware info via CIM, the other day and ran into this error message: Get-CimInstance : The response that the WS-Management service computed exceed the internal limit for envelope size. At line:4 char:12 + $Logical = Get-CimInstance -CimSession $Session -ClassName CIM_EnabledLogicalEle … + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + CategoryInfo : LimitsExceeded: (root\cimv2:CIM_EnabledLogicalElement:String) [Get-CimInstance], CimExce ption + FullyQualifiedErrorId : HRESULT 0x80338049,Microsoft.Management.Infrastructure.CimCmdlets.GetCimInstanceCommand + PSComputerName : hostname After googling the error i found a lot of site pointing to this command – winrm set winrm/config @{MaxEnvelopeSizekb=”1024″}   which needs to be run as admin. Only problem it doesn’t work on windows 7/2008+… […]

Batch rename of VMs

Posted 1 CommentPosted in Script

The other day a consultant came by my desk. He had a problem, the 400 VMs we just move from the customer site in to our datacenter; The backup jobs were failing for most of the VMs. He had looked into it and it turns out that Symantec Netbackup, which is what is used, is case sensitive and the VM names were all a mix of low, high and low and high cases. So the backup team had to recreate the backup jobs, but before they did that, the consultant asked if it wasn’t possible to rename all of the […]

Unmount datastore

Posted Leave a commentPosted in Script

Was at VMUGDK the other day listen to Paudie O’Riordan to one of his great session on storage troubleshooting – He was talking about how to remove datastores safely and this script that I’ve created for our storage team earlier this year came to mind.   The script reli on William Lam‘s powershell module which can be found here http://blogs.vmware.com/vsphere/2012/01/automating-datastore-storage-device-detachment-in-vsphere-5.html The script has four options; list, unmount detach and all – The first three is self explanatory and the latter simply does all three, first it unmounts the datastore, then it detaches the datastore and lastly it list the datastore to verify […]

Consolidating datacenters

Posted 1 CommentPosted in Script, VMware

There is truly many ways and approaches to do server/datacenter consolidation… What i’m sharing here is just one way to do it, for one customer. But it has been done in so many ways for other customers – simple p2v and v2v from customer site in to the datacenter and onto more advanced approaches where some of the data is mirrored in via SAN replication/mirror and the rest is p2v or v2v’ed into datacenter. Like i said there are many ways to do this… What is this project, well quite simple it’s all about moving 800 VMs from one datacenter […]

Validate/change SSH access to ESXi hosts

Posted Leave a commentPosted in Script

This is another script that I’ve posted earlier this year on twitter and pastbin.   This script is very basic, it enables you to get the SSH status of a given vCenter or change it. It takes multiple input, meaning you will be able to stop and disable the service on all host with one command – Aswell as start or view the status of the hosts.   This should cover most use cases. An example would be to stop and disable the SSH service and then list new state in order to valid it. As it can be seen […]

vCops remote DB access

Posted 2 CommentsPosted in Vcops, VMware, vRops

UPDATE: I still get hit on this blog post – So just for the record this blog post is obsolete! If you are running vCops I suggest you upgrade to vRops asap and then take a look at my blog post around the vRops API – vRops API consumed with Powershell I posted this on twitter and postbin earlier this year, but now that I’ve got the site up and running, I thought I would write it here also. This started as a wish to get some of the data out of vCops in order to do a centralized capacity management. I […]