Skip to main content

About




This blog belongs to Kedar Wani. Kedar has been in IT industry for past 10 years and been more focused on VMware technologies for last few years. He holds various IT certifications including VCP6-DCV and VCP-5-DCV.


What's vShishya - 


Well, you might have heard term "Guru" meaning virtuoso or maestro. Shishya (meaning dedicated student) is related term and often put together as guru-shishya parampara ("lineage") according to Indian culture. Guru is someone who has complete knowledge of the paricular field and shishya is someone who is trying to achieve all that advanced knowledge.

With technogy growing day by day, there is always something to learn new at every corner, I feel - I should always be in my student or shishya phase! As this is virtualization blog consisting more about VMware technology - I named it as "vShishya".

Disclaimer - All the views expressed on this website are explicitly views of the writer of this blog. Vendor's views may be different. It is highly recommended to test the changes/suggestions mentioned on the website, in test lab before implementing in production.

Comments

Popular posts from this blog

Upgrading HPE 3PAR SRA (Storage Replication Adapter) from 6.1 to 6.5

Here  are the high level step to upgrade the HPE 3PAR Storage Replication Adapter (SRA) - If old SRA is visible in add remove programs -  View certificates for old array (that will be removed after migration) from SRM server using following path and TPDsrm utility -        C:\Program Files\VMware\VMware Site Recovery manager\Storage\SRA\3Parinsrv>              TPDsrm.exe viewcert Uninstall old 3PAR SRA from SRM server using uninstall program feature. Reboot the SRM server. Install new 3PAR SRA using the .exe file provided by vendor. Check if you can see the new SRA in Program list. If so, reboot the SRM server.  Validate certificates for new array using following path and command on SRM server -        C:\Program Files\VMware\VMware Site Recovery manager\Storage\SRA\3Parinsrv>               TPDsrm.exe validatecert -s...

How to Check Up Time of ESXi Host or Virtual Machine from vCenter Server

To check up time of ESXi host from vCenter server - Logon to vCenter Server -  If using C# (fat) client - click on cluster - on right side pane click on Hosts - select the up time option by right clicking on the header. The column will be added at the end. You can drag and drop column to place it in your view. If using HTML client - click on cluster - on right side pane click on Hosts - select the up time attribute from show/hide column by clicking on the header  If using web (Flash)  client - click on cluster - on right side pane click on related objects - hosts - right click on the header to show/hide column - click on up time attribute Similarly,  you can check the up time for a virtual machine by clicking on the virtual machine tab instead of host tab, but only caveat  is vCenter gives you up time of a virtual machine according to reboots performed from the vCenter. So, rather than rebooting server fr...

Script to find Number of VMs per data store in vCenter

Add-PSSnapin  VMware.VimAutomation.Core    (For vSphere 5.5 or below) Import-Module VMware.VimAutomation.Core   (For vSphere 6.0 and above)   Connect-VIServer  vCenterName Get-Datastore | Select Name, @{N="NumberofVMs"; E={@($_ | Get-VM).count}} | Sort Name |Out-file "C:\Temp\VMcount.csv"