Skip to main content

How to Get Started

To get started, simply click on one of the links below to read the first blog post in the series.

We encourage you to read the blog posts in order, as they build on each other. However, you can also jump around to different blog posts if you are interested in a specific topic.

Below are the set of blogs in this series, published so far:

How to Get Started

To get started, simply click on one of the links below to read the first blog post in the series.

We encourage you to read the blog posts in order, as they build on each other. However, you can also jump around to different blog posts if you are interested in a specific topic.

Below are the set of blogs in this series, published so far:

VMware for Beginners – Overview of vSphere: Part 1
VMware for Beginners – vSphere Installation Requirements : Part 2
VMware for Beginners – How to Install vSphere :Part 3
VMware for Beginners – vSphere Networking : Part 4
VMware for Beginners – vSphere Datastores – Part 5
VMware for Beginners – vSphere Virtual Machines – Part 6
VMware for Beginners – How to Install vCenter : Part 7
VMware for Beginners – Datacenter and Clusters – Part 8
VMware for Beginners – How to Create and Configure iSCSI Datastores: Part 9(a)
VMware for Beginners – How to Create and Configure iSCSI Datastores : Part 9(b)
VMware for Beginners – How to Create NFS Datastores – Part 10(a)
VMware for Beginners – How to Create NFS Datastores: Part 10(b)
VMware for Beginners – vMotion and DRS – Part 11
VMware for Beginners – vSphere HA Configuration: Part 12(a)
VMware for Beginners – vSphere HA Configuration: Part 12(b)
VMware for Beginners – vSphere HA Configuration: Part 12(c)
VMware for Beginners – What is vSphere Proactive HA?: Part 13
VMware for Beginners – What is VMware vSphere Fault Tolerance and How Does it Work?: Part 14(a)
VMware for Beginners – What is VMware vSphere Fault Tolerance and How Does it Work?: Part 14(b)
VMware for Beginners – What is vSphere Distributed Switch: Part 15(a)
VMware for Beginners – What is vSphere Distributed Switch: Part 15(b)
VMware for Beginners – What is vSphere Distributed Switch: Part 15(c)

VMware for Beginners – What is vSphere Distributed Switch: Part 15(d)
VMware for Beginners – What is vSphere Key Provider : Part 16
VMware for Beginners – What is vSphere Trust Authority: Part 17(a)
VMware for Beginners – What is vSphere Trust Authority: Part 17(b)
VMware for Beginners – Create and configure vDSwitch: Part 18(a)
VMware for Beginners – How to use LACP in vDSwitch: Part 18(b)
VMware for Beginners – How to Migrate vmkernel vDS network to vDS LACP : Part 18(c)
VMware for Beginners – How to activate vmnics from vDS network to vDS LACP: Part 18(d)


Conclusion

We’ve carefully crafted this blog series to demystify VMware for our readers. Dive into our posts and feel free to ask questions or share your thoughts.

This is your chance to embark on a journey into the world of VMware.

Comments

Popular posts from this blog

Step-by-Step Explanation of Ballooning, Compression & Swapping in VMware

 🔹 Step-by-Step Explanation of Ballooning, Compression & Swapping in VMware ⸻ 1️⃣ Memory Ballooning (vmmemctl) Ballooning is the first memory reclamation technique used when ESXi detects memory pressure. ➤ Step-by-Step: How Ballooning Works  1. VMware Tools installs the balloon driver (vmmemctl) inside the guest OS.  2. ESXi detects low free memory on the host.  3. ESXi inflates the balloon in selected VMs.  4. Balloon driver occupies guest memory, making the OS think RAM is full.  5. Guest OS frees idle / unused pages (because it believes memory is needed).  6. ESXi reclaims those freed pages and makes them available to other VMs. Why Ballooning Happens?  • Host free memory is very low.  • ESXi wants the VM to release unused pages before resorting to swapping. Example  • Host memory: 64 GB  • VMs used: 62 GB  • Free: 2 GB → ESXi triggers ballooning  • VM1 (8 GB RAM): Balloon inflates to 2 GB → OS frees 2 GB → ESXi re...

ESXi Host Troubleshooting Checklist

  🛠️ ESXi Host Troubleshooting Checklist (With Complete Log Locations) ✅ 1. Host Status & Connectivity Check host state in vCenter (Connected / Not Responding / Disconnected) Review CPU, RAM, and datastore usage Validate HA/DRS recommendations ✅ 2. Hardware Health Monitor hardware sensors (CPU, DIMMs, fans, PSU, RAID) Check RAID controller logs via vendor tools View hardware status in: vCenter → Monitor → Hardware Health DCUI → Hardware Status ✅ 3. Network Validation Verify vSwitches, Port Groups, NIC teaming, VLAN tagging Check vmkernel ports (mgmt, vMotion, iSCSI, vSAN) Test reachability using: Shell vmkping < IP > Show more lines Validate physical NIC status and link speed ✅ 4. Storage & Datastore Checks Confirm datastore accessibility Rescan storage adapters (iSCSI/FC/NFS) Validate multipathing (Round Robin / Fixed / MRU) Check datastore latency with esxtop ✅ **5. Critical Logs & Their Locations (Full List) Here are key ESXi log files that every VMware adm...
  vCenter Troubleshooting Tips, Common Issues & Log Locations 🚀 1. General Troubleshooting Approach A. Check service health first For vCenter Server Appliance (VCSA): Shell https : / / < vcenter - FQDN > : 5480 Show more lines Go to Services → Health to verify: vCenter Server ESXi hosts vSphere Client DNS, NTP, DB connections vpxd, vpxd-svcs, vsphere-ui B. DNS & NTP checks vCenter is highly dependent on correct DNS & time sync. Check: Shell nslookup < vcenter - fqdn > nslookup < esxi - host - fqdn > Show more lines Time drift > 5 minutes causes: Login failures vpxd crashes PSC authentication issues C. Check storage/database health Slow DB/storage = UI slow, tasks hung. For VCSA: Shell df - h du - sh / storage / log / * / var / log Show more lines Free up space if partitions hit >80%. D. Restart critical services safely On VCSA: Shell service - control - - status service - control - - stop - - all service - control - - start - - all ...