0571.html 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. <!DOCTYPE html>
  2. <html lang="en" xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <title>How to Create and Configure a Proxmox VE Cluster</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,Tutorial,i12bretro,Proxmox,Hypervisor,Cluster,Linux,Debian,VM,Virtual Machine">
  8. <meta name="author" content="i12bretro">
  9. <meta name="description" content="How to Create and Configure a Proxmox VE Cluster">
  10. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  11. <link rel="icon" type="image/x-icon" href="includes/favicon.ico">
  12. <script type="text/javascript" src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
  13. <script type="text/javascript" src="includes/js/steps.js"></script>
  14. <link href="css/steps.css" rel="stylesheet" type="text/css" />
  15. </head>
  16. <body>
  17. <div id="gridContainer">
  18. <div class="topMargin"></div>
  19. <div id="listName" class="topMargin">
  20. <h1>How to Create and Configure a Proxmox VE Cluster</h1>
  21. </div>
  22. <div></div>
  23. <div id="content">
  24. <h2>Prerequisites</h2>
  25. <ul>
  26. <li>2 or more Proxmox VE hosts</li>
  27. <li>All hosts must be on the same version of Proxmox VE</li>
  28. <li>All hosts must be able to communicate over UDP ports 5404 and 5405 and TCP port 22</li>
  29. <li>Finalized hostnames and IP addresses (can&#39;t be changed later)</li>
  30. </ul>
  31. <h2>Preparation</h2>
  32. <ol>
  33. <li>Log into the Proxmox web UI for each of the hosts to be joined to the cluster</li>
  34. <li>Run the following commands on each node to update them
  35. <div class="codeBlock"># update software repositories<br />
  36. apt update<br />
  37. # install available updates<br />
  38. apt upgrade -y</div>
  39. </li>
  40. </ol>
  41. <h2>Creating the Cluster</h2>
  42. <ol>
  43. <li>On the main node of the cluster, select Datacenter from the left navigation menu</li>
  44. <li>Select Cluster from the left sub-navigation menu</li>
  45. <li>Click the Create Cluster button</li>
  46. <li>Give the cluster a name &gt; Click Create</li>
  47. <li>Close the Create Cluster summary dialog</li>
  48. <li>Click the Join Information button</li>
  49. <li>Click the Copy Information button at the bottom of the dialog</li>
  50. <li>On the remaining nodes to join to the cluster, select Datacenter from the left navigation menu</li>
  51. <li>Select Cluster from the left sub-navigation menu</li>
  52. <li>Click the Join Cluster button</li>
  53. <li>Paste the copied join information into the Information field</li>
  54. <li>Enter the main node&#39;s root password in the password field</li>
  55. <li>Click the Join button</li>
  56. <li>After a few minutes the cluster nodes should sync and show data across all nodes</li>
  57. </ol>
  58. <p>Further reading: <a href="https://pve.proxmox.com/pve-docs/pve-admin-guide.html#chapter_pvecm" target="_blank">https://pve.proxmox.com/pve-docs/pve-admin-guide.html#chapter_pvecm</a></p>
  59. </div>
  60. </div>
  61. </body>
  62. </html>