0652.html 3.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. <!DOCTYPE html>
  2. <html lang="en" xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <title>VMware ESXi In-Place Upgrade Version 6.7 to 7</title>
  5. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  6. <meta charset="UTF-8">
  7. <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">
  8. <meta name="author" content="i12bretro">
  9. <meta name="description" content="VMware ESXi In-Place Upgrade Version 6.7 to 7">
  10. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  11. <meta name="revised" content="07/08/2023 07:46:26 AM" />
  12. <link rel="icon" type="image/x-icon" href="includes/favicon.ico">
  13. <script type="text/javascript" src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
  14. <script type="text/javascript" src="includes/js/steps.js"></script>
  15. <link href="css/steps.css" rel="stylesheet" type="text/css" />
  16. </head>
  17. <body>
  18. <div id="gridContainer">
  19. <div class="topMargin"></div>
  20. <div id="listName" class="topMargin">
  21. <h1>VMware ESXi In-Place Upgrade Version 6.7 to 7</h1>
  22. </div>
  23. <div></div>
  24. <div id="content">
  25. <h2>Downloading the Update</h2>
  26. <ol>
  27. <li>Open a web browser and navigate to https://customerconnect.vmware.com/</li>
  28. <li>Register or login with an existing account</li>
  29. <li>After logging in, navigate to https://customerconnect.vmware.com/downloads/details?downloadGroup=ESXI700&amp;productId=974&amp;rPId=45006</li>
  30. <li>Use the Select Version dropdown to set the target update version</li>
  31. <li>Scroll down and download the VMware vSphere Hypervisor (ESXi) Offline Bundle</li>
  32. </ol>
  33. <h2>Applying the Update</h2>
  34. <ol>
  35. <li>Log into the VMware vSphere ESXi web UI</li>
  36. <li>Enable the SSH service if it is not already enabled by selecting Actions &gt; Services &gt; Enable Secure Shell (SSH)</li>
  37. <li>Select Storage from the left navigation menu</li>
  38. <li>Click Datastore browser in the main content area &gt; Select a target Data store &gt; Click Upload &gt; Browse to and select the downloaded Offline Bundle .zip file</li>
  39. <li>After the upload completes, connect to the ESXi host via SSH</li>
  40. <li>Run the following commands
  41. <div class="codeBlock"># put the host into maintenance mode<br />
  42. vim-cmd hostsvc/maintenance_mode_enter<br />
  43. # list datastores<br />
  44. ls /vmfs/volumes<br />
  45. # run the update, replacing the datastore name and update file name<br />
  46. esxcli software profile update -p ESXi-7.0U2a-17867351-standard -d &quot;/vmfs/volumes/SATAHDD/VMware-ESXi-7.0U2a-17867351-depot.zip&quot;<br />
  47. # after the update completes, reboot the host<br />
  48. reboot<br />
  49. # once the host is back up, log back in<br />
  50. # take the host out of maintenance mode<br />
  51. vim-cmd hostsvc/maintenance_mode_exit</div>
  52. </li>
  53. <li>Log back into the VMware vSphere ESXi web UI</li>
  54. <li>Verify the updated version is displayed</li>
  55. </ol> </div>
  56. </div>
  57. </body>
  58. </html>