Comprehensive VCF 9 Upgrade Paths Overview
Comprehensive VCF 9 Upgrade Paths Overview
An comprehensive overview of the common upgrade paths for upgrading from vSphere 8.x and VCF 5.x to VCF 9.0.
Daniel Micanek virtual Blog – Like normal Dan, but virtual.
Comprehensive VCF 9 Upgrade Paths Overview
An comprehensive overview of the common upgrade paths for upgrading from vSphere 8.x and VCF 5.x to VCF 9.0.
Scaling ESX DCUI & Console for Compressed Screen Resolution
I recently shared my VMware Cloud Foundation (VCF) 9.0 Mini Rack build, which includes the use of a tiny 7″ LCD screen for direct console access to the ESX hosts. Since the LCD is optimizing for the 10″ inch rack, it is also using a non-standard resolution of 1280×400, which can make the output […]
Quick Tip – Deploy OVF/OVA with Basic Authentication Endpoint
As part of rebuilding my VMware Cloud Foundation (VCF) 9.0.1 environment, a refresh of my VCF (Offline) Software Depot was needed to include the latest 9.0.1 binaries including various OVF/OVAs like Data Services Manager (DSM). My VCF Software Depot has been configured with basic authentication, which is a requirement for the VCF Installer. This meant […]
With VCF 9.0.1 dropping earlier this week I thought I’d upgrade my lab, I’m started with VCF Operations Fleet Manager. Logging into VCF Operations – Fleet Management – Lifecycle – VCF Management, you’ll notice right away there is a new version available.From here I went to Binary Management […]
When VMware Cloud Foundation (VCF) Single-Sign On (SSO) is configured with the Active Directory over LDAP Identity Provider, VCF Operations will periodically synchronize the users and groups from your identity source. By default, the sync frequency will default to once per week but it is user […]
How many VMware Cloud Foundation (VCF) Instances can a VCF Fleet support?
With the release of VMware Cloud Foundation (VCF) 9.0, a new architectural construct has been introduced called a VCF Fleet. This brings centralized fleet management and provides modern workload consumption across multiple VCF instances, all managed through a single deployment of VCF Automation [..]
With the release of VMware ESXi 8.0 Update 1, VMware quietly introduced nConnect support in the NFS client — a long-awaited enhancement for environments using NFSv3 datastores.
The nConnect feature allows administrators to establish multiple parallel TCP connections per NFS datastore, significantly improving throughput, resiliency, and traffic isolation.
This guide walks you through how to configure nConnect, supported versions, and key operational tips.
From ESXi 8.0U1 onwards, a new parameter -c (number of connections) is available in esxcli when mounting NFSv3 datastores.
esxcli storage nfs add \
-H <host> \
-v <volume-label> \
-s <remote_share> \
-c <number_of_connections>
Key points:
esxcfg-advcfg -s 8 /NFS/MaxConnectionsPerDatastore
⚠️ The total number of connections across all mounted NFSv3 datastores is capped at 256.
The nConnect feature got a useful upgrade in VMware ESXi 8.0 Update 2.
You can now increase or decrease the number of TCP connections on an existing NFSv3 mount without unmounting the datastore:
esxcli storage nfs param set \
-v <volume-label> \
-c <number_of_connections>
This flexibility helps admins fine-tune NFS performance on the fly — for example, ramping up connections during heavy backup windows or scaling down during low I/O periods.
Note: In both 8.0U1 and 8.0U2, the default number of connections remains
1.
To view the number of RPC clients currently used by mounted NFSv3 datastores, run:
vsish -e get /vmkModules/nfsclient/info
Sample output:
NFS Connections Info {
mountedVolumes:10
totalConnections 40
}
This command is particularly handy for performance troubleshooting and capacity planning.
Although official Host Profile support for nConnect is not yet released, VMware added an experimental field named “Number of TCP connections” in:
Host Profile → Storage Configuration → NFS
What it does:
When you set a value here, ESXi will use that number of parallel TCP sessions when mounting the NFS datastore during profile remediation.
This is ideal for consistent deployment across multiple hosts in larger clusters.
The nConnect feature in ESXi’s NFS client marks a major step forward in improving NFSv3 performance and scalability in enterprise environments.
Whether you’re running backup workloads, large VMs, or latency-sensitive applications, multiple TCP connections per NFS datastore can make a measurable difference.
If you’re upgrading to VMware ESXi 8.0U1 or later, nConnect is worth testing and adopting in your storage strategy.
In this blog post, we will now deploy an instance of VMware Private AI Services (PAIS) that will use the Vector Database that was provisioned earlier and the OIDC Client Application that we had also setup earlier using the Authentik Identity Provider (IdP). Requirements: VCF Automation (VCFA) […]
Upgrading from vSphere 8.x with Standalone Aria Operations to VCF 9.0
An overview of the upgrade path for upgrading a vSphere 8.x environment that is running with a standalone Aria Operations instance to a VCF 9.0 Fleet.
In this blog post, we will walk through the configuration of an Identity Provider (IdP) and create an OIDC Public Application Client, which will be used to grant access to a PAIS deployment. As of this blog post, the instructions for setting up the required IdP will be based on Authentik (which […]