Skip to main content

Having an issue for getting vxlan vmk installed on ESXi host?

Hi There,

I was working on a host expansion and unfortunately after following the standard procedure, NSX manager was not able to install the vxlan vmkernels.

The first thing I had to do is to put the host into cluster in maintenance mode and immediately had to follow the log file esxupdate.log file under the folder /var/log/ and then found the below error for three vibs.

ESXi : 6.7 build # 13981272

NSX: 6.4.4

-----------------------------------------------------------------------------------------------------------------------------

esxupdate: 2106395: esxupdate: ERROR: vmware.esximage.Errors.DependencyError: VIB QLC_bootbank_qedi_2.10.15.0-1OEM.670.0.0.8169922 requires qedentv_ver = X.11.6.0, but the requirement cannot be satisfied within the ImageProfile.

 esxupdate: 2106395: esxupdate: ERROR: VIB QLC_bootbank_qedf_1.3.35.0-1OEM.600.0.0.2768847 requires qedentv_ver = X.11.6.0, but the requirement cannot be satisfied within the ImageProfile.

 esxupdate: 2106395: esxupdate: ERROR: VIB QLC_bootbank_qedrntv_3.11.7.0-1OEM.670.0.0.8169922 requires qedentv_ver = X.11.6.0, but the requirement cannot be satisfied within the ImageProfile.

-------------------------------------------------------------------------------------------------------------------------

With the help of KB article[https://kb.vmware.com/s/article/78389], I had to remove three vibs which were blocking the installation for ESXi host, below are the commands which I have used to first validate the vibs then had to remove them.

Validation:

[root@esx11.syed.in:~]esxcli software vib list | grep qedi

[root@esx11.syed.in:~]esxcli software vib list | grep qedf

[root@esx11.syed.in:~]esxcli software vib list | grep qedrntv

 Deletion:

 [root@esx11.syed.in:~]esxcli software vib remove -n qedi -f

[root@esx11.syed.in:~]esxcli software vib remove -n qedf -f

[root@esx11.syed.in:~]esxcli software vib remove -n qedrntv -f

 

Once the deletion of vibs was successful, I tried to add the host to the cluster and it worked fine.

Comments

Popular posts from this blog

Renew SSL Certificate for vCloud Director 10.4

Hello There, I would like to give credit for this article to my colleague Muhannad S. Aljaghthami who worked on this task and gave us full insight on how to do. Now lets talk about replacing an expired/ about to expire SSL certificate for the vCloud Director application which is hosted on internet. Prerequisites: Digicert Certificate utility for windows.  Putty/Mobaxterm application for SSH to vCD cells. Winscp to transfer the files to vCD cells. SSH access should be validated on vCD Cells Backup tool to take a backup of vCD cells. Versions & products used while writing this article: vCloud Director 10.4 NSX AVI 22.1.1 Step by step procedure: Initiated a CSR request using Digicert utility for windows and shared the CSR with the team who manages the SSL certificates.  Post submission of CSR,we received the root & SSL certificate for our vCloud Director URL. Using the Digicert utility, we have extracted the pfx file and key file, sample screenshot below.     No...

How to find the physical switch port details from esxcli?

 This article will help you to get the details of the physical switch port details of  ESXi uplinks. Step 1: Login to the ESXi host using root user/ SSO User. Step 2: Enter the below command into the terminal.   vim-cmd hostsvc/net/query_networkhint | grep 'portId\|devId\|vmnic' Output will show the details of the associated physical switch. Note: CDP, LLDP has to be enabled on physical switch. This information is needed when you end up in a troubleshooting session with network team for physical uplinks down/inconsistency of traffic.

JobQueue is full in iDRAC and unable to upgrade firmware??

  Hello There, I was working recently on upgrading the firmware for Dell Power Edge servers due a requirement. As usual, I did the download of the necessary firmware update file and uploaded it in the iDRAC and started the upgrade. Waited for couple of minutes, If I can say, it was almost 15 minutes without any progress. I tried to check the log/job queue in the iDRAC and found it was full of old entries and I tried clearing it but found no option. Later after findings, I managed to find a command which clears the jobqueue, and below is the command I used after logging into iDRAC via SSH. racadm jobqueue delete -i JID_CLEARALL_FORCE Once the above command was executed, I tried to login to iDRAC and check the job queue and found everything was cleared. Whats next?? Tried uploading the file again and then managed to successfully update the firmware.