0571.html 3.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  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="Proxmox,Hypervisor,Cluster,Linux,Debian,VM,Virtual Machine,How To,Tutorial,i12bretro">
  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. <meta name="revised" content="05/28/2022 01:42:08 PM" />
  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>How to Create and Configure a Proxmox VE Cluster</h1>
  22. </div>
  23. <div></div>
  24. <div id="content">
  25. <h2>Prerequisites</h2>
  26. <ul>
  27. <li>2 or more Proxmox VE hosts</li>
  28. <li>All hosts must be on the same version of Proxmox VE</li>
  29. <li>All hosts must be able to communicate over UDP ports 5404 and 5405 and TCP port 22</li>
  30. <li>Finalized hostnames and IP addresses (can&#39;t be changed later)</li>
  31. </ul>
  32. <h2>Preparation</h2>
  33. <ol>
  34. <li>Log into the Proxmox web UI for each of the hosts to be joined to the cluster</li>
  35. <li>Run the following commands on each node to update them
  36. <div class="codeBlock"># update software repositories<br />
  37. apt update<br />
  38. # install available updates<br />
  39. apt upgrade -y</div>
  40. </li>
  41. </ol>
  42. <h2>Creating the Cluster</h2>
  43. <ol>
  44. <li>On the main node of the cluster, select Datacenter from the left navigation menu</li>
  45. <li>Select Cluster from the left sub-navigation menu</li>
  46. <li>Click the Create Cluster button</li>
  47. <li>Give the cluster a name &gt; Click Create</li>
  48. <li>Close the Create Cluster summary dialog</li>
  49. <li>Click the Join Information button</li>
  50. <li>Click the Copy Information button at the bottom of the dialog</li>
  51. <li>On the remaining nodes to join to the cluster, select Datacenter from the left navigation menu</li>
  52. <li>Select Cluster from the left sub-navigation menu</li>
  53. <li>Click the Join Cluster button</li>
  54. <li>Paste the copied join information into the Information field</li>
  55. <li>Enter the main node&#39;s root password in the password field</li>
  56. <li>Click the Join button</li>
  57. <li>After a few minutes the cluster nodes should sync and show data across all nodes</li>
  58. </ol>
  59. <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>
  60. </div>
  61. </div>
  62. </body>
  63. </html>