0651.html 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. <!DOCTYPE html>
  2. <html lang="en" xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <title>Moving a Proxmox VM to Another Host</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,Migration,Backup,Restore,VM,Virtual Machine,Proxmox VE,Linux,Debian,How To,Tutorial,i12bretro">
  8. <meta name="author" content="i12bretro">
  9. <meta name="description" content="Moving a Proxmox VM to Another Host">
  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>Moving a Proxmox VM to Another Host</h1>
  21. </div>
  22. <div></div>
  23. <div id="content">
  24. <h2>Network Storage</h2>
  25. <ol>
  26. <li>Create or navigate to an existing folder to share</li>
  27. <li>Right click on the folder &gt; Properties &gt; Sharing tab &gt; Advanced Sharing...</li>
  28. <li>Click the Share this folder box</li>
  29. <li>Give the share a name (ie VMBackups)</li>
  30. <li>Click the Permissions button</li>
  31. <li>Remove the Everyone group</li>
  32. <li>Add users or groups to allow access to the share</li>
  33. <li>Click OK on all open dialog boxes</li>
  34. <li>Open a web browser and navigate to the ProxMox web UI</li>
  35. <li>Log in</li>
  36. <li>Select Datacenter from the left navigation menu</li>
  37. <li>Click Storage in the left navigation sub menu</li>
  38. <li>Click the Add button &gt; CIFS</li>
  39. <li>Complete the Add CIFS form as follows
  40. <p>ID: VMBackups<br />
  41. Server: 10.10.27.1<br />
  42. Username: i12bretro<br />
  43. Password:<br />
  44. Share: VMBackups<br />
  45. Max Backups: 3<br />
  46. Content: VZDump backup file</p>
  47. </li>
  48. <li>Click the Add button</li>
  49. <li>That&#39;s it, ProxMox can now see the network share and it can be used for virtual machine backups</li>
  50. </ol>
  51. <h2>Creating a Backup</h2>
  52. <ol>
  53. <li>Expand the node and select the the VM to move from the left navigation</li>
  54. <li>Select Backup from the left sub-navigation menu</li>
  55. <li>Click the Backup Now button at the top of the main content area</li>
  56. <li>Select the destination (VMBackups share in this example), compression and mode for the backup &gt; Click Backup</li>
  57. <li>Wait for the backup process to complete</li>
  58. </ol>
  59. <h2>Importing the Backup</h2>
  60. <ol>
  61. <li>Log into the target Proxmox host</li>
  62. <li>Add the CIFS share in the same way it was added to the source Proxmox node</li>
  63. <li>Expand the node and select the storage location where the backup was stored (the VMBackups share in this example)</li>
  64. <li>Select the backup &gt; Click Restore towards the top of the page</li>
  65. <li>Set the target storage location and VM ID &gt; Click Restore</li>
  66. <li>Wait for the restore process to complete</li>
  67. <li>Once complete, test the VM by starting it</li>
  68. </ol>
  69. </div>
  70. </div>
  71. </body>
  72. </html>