{"id":40512,"date":"2020-02-01T16:17:26","date_gmt":"2020-02-01T13:17:26","guid":{"rendered":"https:\/\/prohoster.info\/blog\/blog_prohoster\/pro-bekapy-v-proxmox-ve"},"modified":"2020-02-01T16:17:26","modified_gmt":"2020-02-01T13:17:26","slug":"pro-bekapy-v-proxmox-ve","status":"publish","type":"post","link":"https:\/\/prohoster.info\/en\/blog\/pro-bekapy-v-proxmox-ve","title":{"rendered":"About backups in Proxmox VE","gt_translate_keys":[{"key":"rendered","format":"text"}]},"content":{"rendered":"<p><img decoding=\"async\" alt=\"About backups in Proxmox VE\" src=\"\/wp-content\/uploads\/2020\/02\/fa71527edcee8bda086137c103728641.jpg\" style=\"display:block;margin: 0 auto;\" \/><br \/>\nIn this article <noindex><a rel=\"nofollow\" href=\"https:\/\/habr.com\/ru\/company\/selectel\/blog\/483236\/\">The Magic of Virtualization: An Introduction to Proxmox VE<\/a><\/noindex> We have successfully installed the hypervisor on the server, connected storage to it, ensured basic security, and even created the first virtual machine. Now, let's discuss how to accomplish the most fundamental tasks that must be performed to always have the ability to restore services in case of an outage.<\/p>\n<p>Proxmox's built-in tools not only allow for data backups, but also for the creation of sets of pre-configured operating system images for rapid deployment. This not only helps when it's necessary to create a new server for any service in seconds, but also minimizes downtime.<\/p>\n<p>We won't discuss the necessity of creating backups, as this is obvious and has long been an axiom. Instead, let's focus on some less obvious aspects and features.<br \/>\n<noindex><a rel=\"nofollow\" name=\"habracut\"><\/a><\/noindex><br \/>\nFirst, let's review how data is saved during the backup procedure.<\/p>\n<h2>Backup Algorithms<\/h2>\n<p>\nTo begin with, Proxmox has decent built-in tools for creating backups of virtual machines. It easily saves all the data of the virtual machine and supports two compression mechanisms as well as three methods for creating these backups.<\/p>\n<p>Let's first examine the compression mechanisms:<\/p>\n<ol>\n<li><b>LZO Compression<\/b>. A lossless data compression algorithm developed back in the mid-1990s. The code was written by <noindex><a rel=\"nofollow\" href=\"http:\/\/www.oberhumer.com\/opensource\/lzo\/\">Markus Oberhumer<\/a><\/noindex> . The main feature of this algorithm is its very fast decompression. Consequently, any backup created using this algorithm can be restored in minimal time when needed.<\/li>\n<li><b>GZIP Compression<\/b>. When using this algorithm, the backup is compressed \"on the fly\" by the GNU Zip utility, which employs a powerful Deflate algorithm created by <noindex><a rel=\"nofollow\" href=\"https:\/\/en.wikipedia.org\/wiki\/Phil_Katz\">Phil Katz<\/a><\/noindex>. The primary focus is on maximizing data compression, which helps reduce the disk space occupied by backups. The main difference from LZO is that the compression\/decompression processes take a considerable amount of time.<\/li>\n<\/ol>\n<p><\/p>\n<h2>Archiving Modes<\/h2>\n<p>\nProxmox offers system administrators three backup methods to choose from. These methods can help address the required tasks by balancing the need for downtime with the reliability of the backup created:<\/p>\n<ol>\n<li><b>Snapshot Mode<\/b>. This mode can also be referred to as Live backup, as it does not require stopping the virtual machine's operation. Using this mechanism does not interrupt the VM's work, but there are two significant drawbacks \u2014 issues may arise due to file locks by the operating system and the lowest backup creation speed. Backups created using this method should always be tested in a test environment. Otherwise, there is a risk that they may fail during emergency restoration.<\/li>\n<li><b>Suspend Mode<\/b>. The virtual machine temporarily \"freezes\" its state until the backup process is completed. The contents of RAM are not erased, allowing work to continue exactly from the point where it was paused. Naturally, this causes server downtime during the information copying process, yet there is no need to power off\/on the virtual machine, which is quite critical for certain services. Especially if the startup of some services is not automatic. Nevertheless, these backups should also be deployed in a test environment for verification.<\/li>\n<li><b>Stop Mode<\/b>. The most reliable backup method, requiring the virtual machine to be completely turned off. A command is sent to shut down the VM, once it is stopped, the backup is performed, followed by a command to power the virtual machine back on. The number of errors with this approach is minimal and often reduced to zero. Backups created in this way almost always deploy correctly.<\/li>\n<\/ol>\n<p><\/p>\n<h2>Performing the backup procedure<\/h2>\n<p>\nTo create a backup:<\/p>\n<ol>\n<li>Navigate to the required virtual machine.<\/li>\n<li>We choose the item <b>Failover<\/b>.<\/li>\n<li>Click the button <b>Backup Now<\/b>. A window will open where you can select the parameters for the future backup.\n<p><img decoding=\"async\" alt=\"About backups in Proxmox VE\" src=\"\/wp-content\/uploads\/2020\/02\/aa10195c519192e78382d67656c60223.jpg\" style=\"display:block;margin: 0 auto;\" \/>\n<\/li>\n<li>As the storage, specify the one that we connected <noindex><a rel=\"nofollow\" href=\"https:\/\/habr.com\/ru\/company\/selectel\/blog\/483236\/\">in the previous part<\/a><\/noindex>.<\/li>\n<li>After selecting the parameters, click the button <b>Failover<\/b> We are waiting for the backup to be created. A message will indicate this. <b>TASK OK<\/b>.\n<p><img decoding=\"async\" alt=\"About backups in Proxmox VE\" src=\"\/wp-content\/uploads\/2020\/02\/3ecaef57ba7e49cb77bf8af9fa7534fa.jpg\" style=\"display:block;margin: 0 auto;\" \/>\n<\/li>\n<\/ol>\n<p>The created archives with virtual machine backups will now be available for download from the server. The simplest and most common way to copy is via SFTP. For this, use the popular cross-platform FTP client FileZilla, which supports the SFTP protocol.<\/p>\n<ol>\n<li>In the field <b>Host<\/b> Enter the IP address of our virtualization server in the field. <b>Username<\/b> Enter root in the field. <b>Password<\/b> \u2014 the one that was chosen during installation, and in the field <b>Port<\/b> specify '22' (or any other port specified for SSH connections).<\/li>\n<li>Click the button <b>Quick connect<\/b> and, if all data has been entered correctly, you will see all files located on the server in the active panel.<\/li>\n<li>Go to the directory <b>\/mnt\/storage<\/b>. All created backups will be located in the subdirectory 'dump'. They will be named:\n<ul>\n<li><b>vzdump-qemu-machine_number-date-time.vma.gz<\/b> if the GZIP method was selected;<\/li>\n<li><b>vzdump-qemu-machine_number-date-time.vma.lzo<\/b> if the LZO method was selected.<\/li>\n<\/ul>\n<\/li>\n<\/ol>\n<p>\nIt is recommended to immediately download backups from the server and save them in a secure location, for example, in our cloud storage. If you unpack a file with the .vma extension using the corresponding utility that comes with Proxmox, it will contain files with the following extensions <b>.raw<\/b>, <b>.conf<\/b> and <b>.fw<\/b>. These files contain the following:<\/p>\n<ul>\n<li><b>.raw<\/b> \u2014 disk image;<\/li>\n<li><b>.conf<\/b> \u2014 VM configuration;<\/li>\n<li><b>.fw<\/b> \u2014 firewall settings.<\/li>\n<\/ul>\n<p><\/p>\n<h2>Recovering from a backup<\/h2>\n<p>\nLet's consider a situation where a virtual machine was accidentally deleted and requires emergency recovery from a backup:<\/p>\n<ol>\n<li>Open the storage where the backup is located.<\/li>\n<li>Go to the <b>Contents<\/b>.<\/li>\n<li>Select the required copy and click the <b>Restore<\/b>.\n<p><img decoding=\"async\" alt=\"About backups in Proxmox VE\" src=\"\/wp-content\/uploads\/2020\/02\/b57943719acaae310f40133f705dd46e.jpg\" style=\"display:block;margin: 0 auto;\" \/>\n<\/li>\n<li>Specify the target storage and the ID that will be assigned to the machine after the process is completed.<\/li>\n<li>Click the button <b>Restore<\/b>.<\/li>\n<\/ol>\n<p>\nOnce the recovery is complete, the VM will appear in the list of available ones.<\/p>\n<h2>Cloning a virtual machine<\/h2>\n<p>\nFor example, let\u2019s assume that the company needs to make changes to a critical service. Such a change is implemented by making numerous edits to the configuration files. The result is unpredictable, and any mistake can cause a service failure. To avoid impacting the running server with such an experiment, it is recommended to clone the virtual machine.<\/p>\n<p>The cloning mechanism will create an exact copy of the virtual server, allowing for any modifications without affecting the operation of the main service. Then, if the changes are successfully implemented, the new VM is put into operation, and the old one is shut down. There is an important detail to keep in mind during this process: the cloned machine will have the same IP address as the original VM, which means that a conflict will occur upon its launch.<\/p>\n<p>Here's how to avoid such a situation. Directly before performing the cloning, you should make changes to the network configuration. This requires temporarily changing the IP address without restarting the network service. After the cloning is complete, revert the settings on the main machine and assign a different IP address to the cloned machine. This way, you will have two copies of the same server on different addresses, allowing you to quickly bring the new service online.<\/p>\n<p>If this service is a web server, it is enough to simply change the A-record with your DNS provider, after which client requests to that domain name will be directed to the address of the cloned virtual machine.<\/p>\n<blockquote><p>By the way, Selectel provides all its clients with the service of hosting any number of domains on NS servers for free. Record management can be done both through our control panel and via a special API. Read more about this <noindex><a rel=\"nofollow\" href=\"https:\/\/kb.selectel.ru\/8782381.html\">in our knowledge base.<\/a><\/noindex>.<\/p><\/blockquote>\n<p>Cloning a VM in Proxmox is a very straightforward task. To perform it, you need to follow these steps:<\/p>\n<ol>\n<li>Go to the required machine.<\/li>\n<li>Select from the menu <b>More<\/b> the item <b>. Then enter the name of the cloned report (let's call it<\/b>.<\/li>\n<li>In the opened window, fill in the Name parameter.\n<p><img decoding=\"async\" alt=\"About backups in Proxmox VE\" src=\"\/wp-content\/uploads\/2020\/02\/134be9c8446e76c7000883eb6e0ff5a5.jpg\" style=\"display:block;margin: 0 auto;\" \/><\/li>\n<li>Execute the cloning by pressing the button <b>. Then enter the name of the cloned report (let's call it<\/b>.<\/li>\n<\/ol>\n<p>\nThis tool allows you to create a copy of the virtual machine not only on the local server. If several virtualization servers are combined into a cluster, this tool can simultaneously move the created copy to the desired physical server. A useful feature is selecting the storage option (the parameter <b>Target Storage<\/b>), which is very convenient when moving a virtual machine from one physical medium to another.<\/p>\n<h2>Virtual disk formats<\/h2>\n<p>\nLet's discuss in detail the storage formats used in Proxmox:<\/p>\n<ol>\n<li><b>RAW<\/b>The most straightforward and simple format. It is a file containing the data of the hard drive 'byte for byte' without compression or optimization. This format is very convenient, as it can be easily mounted using the standard mount command in any Linux system. Moreover, it is the fastest 'type' of storage, since the hypervisor does not need to process it in any way.\n<p>A significant drawback of this format is that whatever space you allocate for the virtual machine, the file in RAW format will occupy exactly that much space on the hard drive (regardless of the actual space used inside the virtual machine).<\/li>\n<li><b>QEMU image format (qcow2)<\/b>This is perhaps the most versatile format for performing any tasks. Its advantage is that the data file will contain only the space actually used inside the virtual machine. For example, if 40 GB of space was allocated but only 2 GB was actually used, then the remaining space will be available for other VMs. This is very relevant in conditions of conserving disk space.\n<p>A slight downside to working with this format is that to mount such an image in any other system, you will first need to load the <noindex><a rel=\"nofollow\" href=\"https:\/\/nbd.sourceforge.io\/\">special nbd driver<\/a><\/noindex>, and also use the utility <b>qemu-nbd<\/b>, which will allow the operating system to access the file as a regular block device. After that, the image will be available for mounting, partitioning, performing file system checks, and other operations.<\/p>\n<p>It should be noted that all input\/output operations when using this format are handled programmatically, which leads to slowdown during active work with the disk subsystem. If the task is to deploy a database on a server, it is better to choose the RAW format.<\/li>\n<li><b>VMware image format (vmdk)<\/b>This format is 'native' to the VMware vSphere hypervisor and has been included in Proxmox for compatibility. It allows for the migration of a VMware virtual machine to the Proxmox infrastructure.\n<p>Using vmdk on a permanent basis is not recommended; this format is the slowest in Proxmox, therefore it is only suitable for migration, nothing more. This deficiency is likely to be addressed in the foreseeable future.<\/li>\n<\/ol>\n<p><\/p>\n<h2>Working with disk images<\/h2>\n<p>\nThe Proxmox package includes a very convenient utility called <b>qemu-img<\/b>. One of its functions is converting virtual disk images. To use it, simply open the hypervisor console and execute the command in the following format:<\/p>\n<pre><code class=\"plaintext\">qemu-img convert -f vmdk test.vmdk -O qcow2 test.qcow2<\/code><\/pre>\n<p>\nIn the example provided, the vmdk image of the VMware virtual storage called <b>test<\/b> will be converted to the format <b>qcow2<\/b>. This is a very useful command when it's necessary to correct a mistake made during the initial format selection.<\/p>\n<p>With this same command, you can also forcibly create the required image using the argument <b>create<\/b>:<\/p>\n<pre><code class=\"plaintext\">qemu-img create -f raw test.raw 40G<\/code><\/pre>\n<p>\nThis command will create an image named test in the format <b>RAW<\/b>, with a size of 40 GB. It is now suitable for connection to any of the virtual machines.<\/p>\n<h2>Resizing a Virtual Disk<\/h2>\n<p>\nFinally, let's show how to increase the size of a disk image if, for some reason, space on it has become insufficient. For this, we will use the resize argument:<\/p>\n<pre><code class=\"plaintext\">qemu-img resize -f raw test.raw 80G<\/code><\/pre>\n<p>\nNow our image has a size of 80 GB. You can view detailed information about the image using the argument <b>info<\/b>:<\/p>\n<pre><code class=\"plaintext\">qemu-img info test.raw<\/code><\/pre>\n<p>\nRemember that simply changing the image size will not automatically increase the partition size \u2014 it will merely add available free space. To increase the partition, use the command:<\/p>\n<pre><code class=\"plaintext\">resize2fs \/dev\/sda1<\/code><\/pre>\n<p>\nwhere <b>\/dev\/sda1<\/b> \u2014 the required partition.<\/p>\n<h2>Automating Backup Creation<\/h2>\n<p>\nUsing a manual method for creating backups is quite labor-intensive and time-consuming. Therefore, Proxmox VE includes a tool for automatic scheduled backups. Let's see how to do this:<\/p>\n<ol>\n<li>Using the web interface of the hypervisor, navigate to the section <b>Datacenter<\/b>.<\/li>\n<li>We choose the item <b>Failover<\/b>.<\/li>\n<li>Click the button <b>Add<\/b>.<\/li>\n<li>Set the parameters for the scheduler.\n<p><img decoding=\"async\" alt=\"About backups in Proxmox VE\" src=\"\/wp-content\/uploads\/2020\/02\/25af2e0d4972539961b807076ced12fe.jpg\" style=\"display:block;margin: 0 auto;\" \/>\n<\/li>\n<li>Check the option <b>Enable<\/b>.<\/li>\n<li>Save the changes using the button <b>Create<\/b>.<\/li>\n<\/ol>\n<p>\nNow the scheduler will automatically initiate the backup program at the exact specified time, based on the set schedule.<\/p>\n<h2>Conclusion<\/h2>\n<p>\nWe reviewed the standard methods of backing up and restoring virtual machines. Their use allows for preserving all data and quickly restoring it in the event of an unexpected situation.<\/p>\n<p>Of course, this is not the only possible way to save important data. There are many tools available, such as, <noindex><a rel=\"nofollow\" href=\"https:\/\/kb.selectel.ru\/23137499.html#id-%D0%A0%D0%B5%D0%B7%D0%B5%D1%80%D0%B2%D0%BD%D0%BE%D0%B5%D0%BA%D0%BE%D0%BF%D0%B8%D1%80%D0%BE%D0%B2%D0%B0%D0%BD%D0%B8%D0%B5-%D0%A3%D1%81%D1%82%D0%B0%D0%BD%D0%BE%D0%B2%D0%BA%D0%B0%D0%B8%D0%BD%D0%B0%D1%81%D1%82%D1%80%D0%BE%D0%B9%D0%BA%D0%B0Duplicity\">Duplicity<\/a><\/noindex>, which allows you to create full and incremental backups of the content of Linux-based virtual servers.<\/p>\n<p>When performing backup procedures, it is important to consider that they place a significant load on the disk subsystem. Therefore, it is recommended to carry out these procedures during periods of minimal load to avoid delays in input\/output operations within the machines. You can monitor the status of disk operation delays directly from the hypervisor's web interface (parameter IO delay).<br \/>\n<br \/>Source: <a content=\"nofollow\" rel=\"nofollow\" href=\"https:\/\/habr.com\/ru\/company\/selectel\/blog\/486194\/\">habr.com<\/a> <\/p>","protected":false,"gt_translate_keys":[{"key":"rendered","format":"html"}]},"excerpt":{"rendered":"<p>\u0412 \u0441\u0442\u0430\u0442\u044c\u0435 \u00ab\u041c\u0430\u0433\u0438\u044f \u0432\u0438\u0440\u0442\u0443\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438: \u0432\u0432\u043e\u0434\u043d\u044b\u0439 \u043a\u0443\u0440\u0441 \u0432 Proxmox VE\u00bb \u043c\u044b \u0443\u0441\u043f\u0435\u0448\u043d\u043e \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u043b\u0438 \u043d\u0430 \u0441\u0435\u0440\u0432\u0435\u0440 \u0433\u0438\u043f\u0435\u0440\u0432\u0438\u0437\u043e\u0440, \u043f\u043e\u0434\u043a\u043b\u044e\u0447\u0438\u043b\u0438 \u043a \u043d\u0435\u043c\u0443 \u0445\u0440\u0430\u043d\u0438\u043b\u0438\u0449\u0435, \u043f\u043e\u0437\u0430\u0431\u043e\u0442\u0438\u043b\u0438\u0441\u044c \u043e\u0431 \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u0430\u0440\u043d\u043e\u0439 \u0431\u0435\u0437\u043e\u043f\u0430\u0441\u043d\u043e\u0441\u0442\u0438 \u0438 \u0434\u0430\u0436\u0435 \u0441\u043e\u0437\u0434\u0430\u043b\u0438 \u043f\u0435\u0440\u0432\u0443\u044e \u0432\u0438\u0440\u0442\u0443\u0430\u043b\u044c\u043d\u0443\u044e \u043c\u0430\u0448\u0438\u043d\u0443. \u0422\u0435\u043f\u0435\u0440\u044c \u0440\u0430\u0437\u0431\u0435\u0440\u0435\u043c \u043a\u0430\u043a \u0440\u0435\u0430\u043b\u0438\u0437\u043e\u0432\u0430\u0442\u044c \u0441\u0430\u043c\u044b\u0435 \u0431\u0430\u0437\u043e\u0432\u044b\u0435 \u0437\u0430\u0434\u0430\u0447\u0438, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u043f\u0440\u0438\u0445\u043e\u0434\u0438\u0442\u0441\u044f \u0432\u044b\u043f\u043e\u043b\u043d\u044f\u0442\u044c, \u0447\u0442\u043e\u0431\u044b \u0432\u0441\u0435\u0433\u0434\u0430 \u0438\u043c\u0435\u0442\u044c \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u044c \u0432\u043e\u0441\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u044c \u0440\u0430\u0431\u043e\u0442\u0443 \u0441\u0435\u0440\u0432\u0438\u0441\u043e\u0432 \u0432 \u0441\u043b\u0443\u0447\u0430\u0435 \u0441\u0431\u043e\u044f. \u0428\u0442\u0430\u0442\u043d\u044b\u0435 \u0438\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u044b Proxmox \u043f\u043e\u0437\u0432\u043e\u043b\u044f\u044e\u0442 \u043d\u0435 \u0442\u043e\u043b\u044c\u043a\u043e [&hellip;]<\/p>\n","protected":false,"gt_translate_keys":[{"key":"rendered","format":"html"}]},"author":1,"featured_media":40513,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[],"tags":[],"class_list":["post-40512","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 5.0.2 - aioseo.com -->\n\t<meta name=\"description\" content=\"\u0412 \u0441\u0442\u0430\u0442\u044c\u0435\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"Yuri Gagarin\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/prohoster.info\/en\/blog\/pro-bekapy-v-proxmox-ve\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 5.0.2\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"ProHoster | \u041a\u0443\u043f\u0438\u0442\u044c \u043d\u0430\u0434\u0435\u0436\u043d\u044b\u0439 \u0445\u043e\u0441\u0442\u0438\u043d\u0433 \u0434\u043b\u044f \u0441\u0430\u0439\u0442\u043e\u0432 \u0441 \u0437\u0430\u0449\u0438\u0442\u043e\u0439 \u043e\u0442 DDoS, VPS VDS \u0441\u0435\u0440\u0432\u0435\u0440\u044b\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"\ud83e\udd47\u041f\u0440\u043e \u0431\u044d\u043a\u0430\u043f\u044b \u0432 Proxmox VE | ProHoster\" \/>\n\t\t<meta property=\"og:description\" content=\"\u0412 \u0441\u0442\u0430\u0442\u044c\u0435\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/prohoster.info\/en\/blog\/pro-bekapy-v-proxmox-ve\" \/>\n\t\t<meta property=\"og:image\" content=\"https:\/\/prohoster.info\/wp-content\/uploads\/2021\/11\/logo-350.jpg\" \/>\n\t\t<meta property=\"og:image:secure_url\" content=\"https:\/\/prohoster.info\/wp-content\/uploads\/2021\/11\/logo-350.jpg\" \/>\n\t\t<meta property=\"og:image:width\" content=\"350\" \/>\n\t\t<meta property=\"og:image:height\" content=\"350\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2020-02-01T13:17:26+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2020-02-01T13:17:26+00:00\" \/>\n\t\t<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/prohoster\" \/>\n\t\t<meta property=\"article:author\" content=\"https:\/\/www.facebook.com\/prohoster\" \/>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"\ud83e\udd47About backups in Proxmox VE | ProHoster","description":"In this article","canonical_url":"https:\/\/prohoster.info\/en\/blog\/pro-bekapy-v-proxmox-ve","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":null,"og:locale":"en_US","og:site_name":"ProHoster | \u041a\u0443\u043f\u0438\u0442\u044c \u043d\u0430\u0434\u0435\u0436\u043d\u044b\u0439 \u0445\u043e\u0441\u0442\u0438\u043d\u0433 \u0434\u043b\u044f \u0441\u0430\u0439\u0442\u043e\u0432 \u0441 \u0437\u0430\u0449\u0438\u0442\u043e\u0439 \u043e\u0442 DDoS, VPS VDS \u0441\u0435\u0440\u0432\u0435\u0440\u044b","og:type":"article","og:title":"\ud83e\udd47\u041f\u0440\u043e \u0431\u044d\u043a\u0430\u043f\u044b \u0432 Proxmox VE | ProHoster","og:description":"\u0412 \u0441\u0442\u0430\u0442\u044c\u0435","og:url":"https:\/\/prohoster.info\/en\/blog\/pro-bekapy-v-proxmox-ve","og:image":"https:\/\/prohoster.info\/wp-content\/uploads\/2021\/11\/logo-350.jpg","og:image:secure_url":"https:\/\/prohoster.info\/wp-content\/uploads\/2021\/11\/logo-350.jpg","og:image:width":350,"og:image:height":350,"article:published_time":"2020-02-01T13:17:26+00:00","article:modified_time":"2020-02-01T13:17:26+00:00","article:publisher":"https:\/\/www.facebook.com\/prohoster","article:author":"https:\/\/www.facebook.com\/prohoster"},"aioseo_meta_data":{"post_id":"40512","title":null,"description":null,"keywords":null,"keyphrases":null,"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":null,"og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"","isEnabled":true},"graphs":[]},"schema_type":null,"schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":null,"robots_max_videopreview":null,"robots_max_imagepreview":"large","priority":null,"frequency":null,"local_seo":null,"seo_analyzer_scan_date":null,"breadcrumb_settings":null,"limit_modified_date":false,"reviewed_by":null,"ai":null,"created":"2021-03-01 00:36:29","updated":"2022-09-30 12:48:15","focus_keyword":null,"additional_keywords":null,"truseo_locale":null},"gt_translate_keys":[{"key":"link","format":"url"}],"_links":{"self":[{"href":"https:\/\/prohoster.info\/en\/wp-json\/wp\/v2\/posts\/40512","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/prohoster.info\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/prohoster.info\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/prohoster.info\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/prohoster.info\/en\/wp-json\/wp\/v2\/comments?post=40512"}],"version-history":[{"count":0,"href":"https:\/\/prohoster.info\/en\/wp-json\/wp\/v2\/posts\/40512\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/prohoster.info\/en\/wp-json\/wp\/v2\/media\/40513"}],"wp:attachment":[{"href":"https:\/\/prohoster.info\/en\/wp-json\/wp\/v2\/media?parent=40512"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/prohoster.info\/en\/wp-json\/wp\/v2\/categories?post=40512"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/prohoster.info\/en\/wp-json\/wp\/v2\/tags?post=40512"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}