12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- <!DOCTYPE html>
- <html lang="en" xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <title>How to Create and Configure a Proxmox VE Cluster</title>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
- <meta charset="UTF-8">
- <meta name="keywords" content="Proxmox,Hypervisor,Cluster,Linux,Debian,VM,Virtual Machine,How To,Tutorial,i12bretro">
- <meta name="author" content="i12bretro">
- <meta name="description" content="How to Create and Configure a Proxmox VE Cluster">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <meta name="revised" content="05/28/2022 01:42:08 PM" />
- <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>How to Create and Configure a Proxmox VE Cluster</h1>
- </div>
- <div></div>
- <div id="content">
- <h2>Prerequisites</h2>
- <ul>
- <li>2 or more Proxmox VE hosts</li>
- <li>All hosts must be on the same version of Proxmox VE</li>
- <li>All hosts must be able to communicate over UDP ports 5404 and 5405 and TCP port 22</li>
- <li>Finalized hostnames and IP addresses (can't be changed later)</li>
- </ul>
- <h2>Preparation</h2>
- <ol>
- <li>Log into the Proxmox web UI for each of the hosts to be joined to the cluster</li>
- <li>Run the following commands on each node to update them
- <div class="codeBlock"># update software repositories<br />
- apt update<br />
- # install available updates<br />
- apt upgrade -y</div>
- </li>
- </ol>
- <h2>Creating the Cluster</h2>
- <ol>
- <li>On the main node of the cluster, select Datacenter from the left navigation menu</li>
- <li>Select Cluster from the left sub-navigation menu</li>
- <li>Click the Create Cluster button</li>
- <li>Give the cluster a name > Click Create</li>
- <li>Close the Create Cluster summary dialog</li>
- <li>Click the Join Information button</li>
- <li>Click the Copy Information button at the bottom of the dialog</li>
- <li>On the remaining nodes to join to the cluster, select Datacenter from the left navigation menu</li>
- <li>Select Cluster from the left sub-navigation menu</li>
- <li>Click the Join Cluster button</li>
- <li>Paste the copied join information into the Information field</li>
- <li>Enter the main node's root password in the password field</li>
- <li>Click the Join button</li>
- <li>After a few minutes the cluster nodes should sync and show data across all nodes</li>
- </ol>
- <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>
- </div>
- </div>
- </body>
- </html>
-
|