1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- <!DOCTYPE html>
- <html lang="en" xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <title>VMware ESXi In-Place Upgrade Version 6.7 to 7</title>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
- <meta charset="UTF-8">
- <meta name="keywords" content="How To Upgrade ESXi 6.7 To 7.0,VMware ESXi,Upgrade,In-Place,Hypervisor,Virtual Machine,VM,Upgrade ESXi 6.7 To 7.0,VMware,ESXi,VSphere,6.7,7.0,Home Lab Ideas,Home Lab,Update,In Place Upgrade,Self-Hosted,Virtual Machine Hypervisor,Virtual Machine Host,VM Host,How To,Tutorial,i12bretro">
- <meta name="author" content="i12bretro">
- <meta name="description" content="VMware ESXi In-Place Upgrade Version 6.7 to 7">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <meta name="revised" content="07/08/2023 07:46:26 AM" />
- <link rel="icon" type="image/x-icon" href="includes/favicon.ico">
- <script type="text/javascript" src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
- <script type="text/javascript" src="includes/js/steps.js"></script>
- <link href="css/steps.css" rel="stylesheet" type="text/css" />
- </head>
- <body>
- <div id="gridContainer">
- <div class="topMargin"></div>
- <div id="listName" class="topMargin">
- <h1>VMware ESXi In-Place Upgrade Version 6.7 to 7</h1>
- </div>
- <div></div>
- <div id="content">
- <h2>Downloading the Update</h2>
- <ol>
- <li>Open a web browser and navigate to https://customerconnect.vmware.com/</li>
- <li>Register or login with an existing account</li>
- <li>After logging in, navigate to https://customerconnect.vmware.com/downloads/details?downloadGroup=ESXI700&productId=974&rPId=45006</li>
- <li>Use the Select Version dropdown to set the target update version</li>
- <li>Scroll down and download the VMware vSphere Hypervisor (ESXi) Offline Bundle</li>
- </ol>
- <h2>Applying the Update</h2>
- <ol>
- <li>Log into the VMware vSphere ESXi web UI</li>
- <li>Enable the SSH service if it is not already enabled by selecting Actions > Services > Enable Secure Shell (SSH)</li>
- <li>Select Storage from the left navigation menu</li>
- <li>Click Datastore browser in the main content area > Select a target Data store > Click Upload > Browse to and select the downloaded Offline Bundle .zip file</li>
- <li>After the upload completes, connect to the ESXi host via SSH</li>
- <li>Run the following commands
- <div class="codeBlock"># put the host into maintenance mode<br />
- vim-cmd hostsvc/maintenance_mode_enter<br />
- # list datastores<br />
- ls /vmfs/volumes<br />
- # run the update, replacing the datastore name and update file name<br />
- esxcli software profile update -p ESXi-7.0U2a-17867351-standard -d "/vmfs/volumes/SATAHDD/VMware-ESXi-7.0U2a-17867351-depot.zip"<br />
- # after the update completes, reboot the host<br />
- reboot<br />
- # once the host is back up, log back in<br />
- # take the host out of maintenance mode<br />
- vim-cmd hostsvc/maintenance_mode_exit</div>
- </li>
- <li>Log back into the VMware vSphere ESXi web UI</li>
- <li>Verify the updated version is displayed</li>
- </ol> </div>
- </div>
- </body>
- </html>
-
|