123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- <!DOCTYPE html>
- <html lang="en" xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <title>Moving a Proxmox VM to Another Host</title>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
- <meta charset="UTF-8">
- <meta name="keywords" content="Proxmox,Hypervisor,Migration,Backup,Restore,VM,Virtual Machine,Proxmox VE,Linux,Debian,How To,Tutorial,i12bretro">
- <meta name="author" content="i12bretro">
- <meta name="description" content="Moving a Proxmox VM to Another Host">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <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>Moving a Proxmox VM to Another Host</h1>
- </div>
- <div></div>
- <div id="content">
- <h2>Network Storage</h2>
- <ol>
- <li>Create or navigate to an existing folder to share</li>
- <li>Right click on the folder > Properties > Sharing tab > Advanced Sharing...</li>
- <li>Click the Share this folder box</li>
- <li>Give the share a name (ie VMBackups)</li>
- <li>Click the Permissions button</li>
- <li>Remove the Everyone group</li>
- <li>Add users or groups to allow access to the share</li>
- <li>Click OK on all open dialog boxes</li>
- <li>Open a web browser and navigate to the ProxMox web UI</li>
- <li>Log in</li>
- <li>Select Datacenter from the left navigation menu</li>
- <li>Click Storage in the left navigation sub menu</li>
- <li>Click the Add button > CIFS</li>
- <li>Complete the Add CIFS form as follows
- <p>ID: VMBackups<br />
- Server: 10.10.27.1<br />
- Username: i12bretro<br />
- Password:<br />
- Share: VMBackups<br />
- Max Backups: 3<br />
- Content: VZDump backup file</p>
- </li>
- <li>Click the Add button</li>
- <li>That's it, ProxMox can now see the network share and it can be used for virtual machine backups</li>
- </ol>
- <h2>Creating a Backup</h2>
- <ol>
- <li>Expand the node and select the the VM to move from the left navigation</li>
- <li>Select Backup from the left sub-navigation menu</li>
- <li>Click the Backup Now button at the top of the main content area</li>
- <li>Select the destination (VMBackups share in this example), compression and mode for the backup > Click Backup</li>
- <li>Wait for the backup process to complete</li>
- </ol>
- <h2>Importing the Backup</h2>
- <ol>
- <li>Log into the target Proxmox host</li>
- <li>Add the CIFS share in the same way it was added to the source Proxmox node</li>
- <li>Expand the node and select the storage location where the backup was stored (the VMBackups share in this example)</li>
- <li>Select the backup > Click Restore towards the top of the page</li>
- <li>Set the target storage location and VM ID > Click Restore</li>
- <li>Wait for the restore process to complete</li>
- <li>Once complete, test the VM by starting it</li>
- </ol>
- </div>
- </div>
- </body>
- </html>
-
|