<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Server on Commentary of Takao</title><link>https://takao.blog/ko/categories/server/</link><description>Recent content in Server on Commentary of Takao</description><generator>Hugo -- gohugo.io</generator><language>ko</language><copyright>Commentary of Takao</copyright><lastBuildDate>Sun, 12 Jul 2026 04:12:51 +0900</lastBuildDate><atom:link href="https://takao.blog/ko/categories/server/index.xml" rel="self" type="application/rss+xml"/><item><title>Proxmox Backup Strategies: vzdump, PBS, and Disaster Recovery</title><link>https://takao.blog/ko/web/proxmox-backup-disaster-recovery/</link><pubDate>Mon, 20 Jan 2025 00:00:00 +0000</pubDate><guid>https://takao.blog/ko/web/proxmox-backup-disaster-recovery/</guid><description>&lt;img src="https://takao.blog/img/thumbnail/proxmox-backup-disaster-recovery-ko.png" alt="Featured image of post Proxmox Backup Strategies: vzdump, PBS, and Disaster Recovery" /&gt;&lt;p&gt;Backups are not optional. Bit rot, accidental deletion, and ransomware all target hypervisor storage. Proxmox VE offers two backup paths: the built-in &lt;code&gt;vzdump&lt;/code&gt; and the dedicated Proxmox Backup 서버 (PBS).&lt;/p&gt;
&lt;h2 id="why-backup-matters"&gt;Why Backup Matters
&lt;/h2&gt;&lt;table&gt;
	&lt;thead&gt;
			&lt;tr&gt;
					&lt;th&gt;Threat&lt;/th&gt;
					&lt;th&gt;Impact&lt;/th&gt;
					&lt;th&gt;Mitigation&lt;/th&gt;
			&lt;/tr&gt;
	&lt;/thead&gt;
	&lt;tbody&gt;
			&lt;tr&gt;
					&lt;td&gt;Bit rot&lt;/td&gt;
					&lt;td&gt;Silent single-bit corruption&lt;/td&gt;
					&lt;td&gt;Integrity-verified (PBS)&lt;/td&gt;
			&lt;/tr&gt;
			&lt;tr&gt;
					&lt;td&gt;Accidental deletion&lt;/td&gt;
					&lt;td&gt;VM lost instantly&lt;/td&gt;
					&lt;td&gt;Retention + off-site&lt;/td&gt;
			&lt;/tr&gt;
			&lt;tr&gt;
					&lt;td&gt;Ransomware&lt;/td&gt;
					&lt;td&gt;Encrypted disks&lt;/td&gt;
					&lt;td&gt;Immutable off-site backups&lt;/td&gt;
			&lt;/tr&gt;
	&lt;/tbody&gt;
&lt;/table&gt;
&lt;h2 id="vzdump-the-built-in-tool"&gt;vzdump: The Built-In Tool
&lt;/h2&gt;&lt;p&gt;vzdump creates consistent backups of VMs and containers. For VMs, install the Qemu Guest Agent so vzdump can quiesce the filesystem before snapshotting:&lt;/p&gt;</description></item><item><title>Proxmox VE ZFS Storage: Pool Setup, Snapshots, and Optimization</title><link>https://takao.blog/ko/web/proxmox-zfs-storage/</link><pubDate>Wed, 14 Aug 2024 00:00:00 +0000</pubDate><guid>https://takao.blog/ko/web/proxmox-zfs-storage/</guid><description>&lt;img src="https://takao.blog/img/thumbnail/proxmox-zfs-storage-ko.png" alt="Featured image of post Proxmox VE ZFS Storage: Pool Setup, Snapshots, and Optimization" /&gt;&lt;h2 id="why-zfs-on-proxmox"&gt;Why ZFS on Proxmox
&lt;/h2&gt;&lt;p&gt;ZFS brings enterprise-grade 기능 to Proxmox VE: data integrity via checksumming (detects and repairs silent corruption), transparent compression, instant snapshots and clones, and flexible RAID-like pooling. It replaces traditional volume management and filesystem layers with a single, unified stack.&lt;/p&gt;
&lt;h2 id="creating-a-pool"&gt;Creating a Pool
&lt;/h2&gt;&lt;p&gt;A pool is built from virtual devices (vdevs). Common vdev types:&lt;/p&gt;
&lt;table&gt;
	&lt;thead&gt;
			&lt;tr&gt;
					&lt;th&gt;Vdev type&lt;/th&gt;
					&lt;th&gt;Minimum disks&lt;/th&gt;
					&lt;th&gt;Usable capacity&lt;/th&gt;
					&lt;th&gt;Description&lt;/th&gt;
			&lt;/tr&gt;
	&lt;/thead&gt;
	&lt;tbody&gt;
			&lt;tr&gt;
					&lt;td&gt;Mirror&lt;/td&gt;
					&lt;td&gt;2&lt;/td&gt;
					&lt;td&gt;50%&lt;/td&gt;
					&lt;td&gt;Data mirrored across two disks&lt;/td&gt;
			&lt;/tr&gt;
			&lt;tr&gt;
					&lt;td&gt;RAIDZ1&lt;/td&gt;
					&lt;td&gt;3&lt;/td&gt;
					&lt;td&gt;67%&lt;/td&gt;
					&lt;td&gt;Single parity (max 1 disk failure)&lt;/td&gt;
			&lt;/tr&gt;
			&lt;tr&gt;
					&lt;td&gt;RAIDZ2&lt;/td&gt;
					&lt;td&gt;4&lt;/td&gt;
					&lt;td&gt;50%&lt;/td&gt;
					&lt;td&gt;Double parity (max 2 failures)&lt;/td&gt;
			&lt;/tr&gt;
			&lt;tr&gt;
					&lt;td&gt;RAIDZ3&lt;/td&gt;
					&lt;td&gt;5&lt;/td&gt;
					&lt;td&gt;40%&lt;/td&gt;
					&lt;td&gt;Triple parity (max 3 failures)&lt;/td&gt;
			&lt;/tr&gt;
			&lt;tr&gt;
					&lt;td&gt;Stripe&lt;/td&gt;
					&lt;td&gt;1&lt;/td&gt;
					&lt;td&gt;100%&lt;/td&gt;
					&lt;td&gt;No redundancy (not recommended)&lt;/td&gt;
			&lt;/tr&gt;
	&lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;Create a mirrored pool:&lt;/p&gt;</description></item><item><title>Proxmox LXC Containers: Complete Management Guide</title><link>https://takao.blog/ko/web/proxmox-lxc-containers/</link><pubDate>Wed, 22 May 2024 00:00:00 +0000</pubDate><guid>https://takao.blog/ko/web/proxmox-lxc-containers/</guid><description>&lt;img src="https://takao.blog/img/thumbnail/proxmox-lxc-containers-ko.png" alt="Featured image of post Proxmox LXC Containers: Complete Management Guide" /&gt;&lt;h2 id="what-is-lxc"&gt;What is LXC?
&lt;/h2&gt;&lt;p&gt;LXC (Linux Containers) is an OS-level virtualization method that runs multiple isolated Linux systems on a single host using a shared kernel. Unlike full virtual machines, LXC containers share the host OS kernel while maintaining their own filesystem, processes, and 네트워크 stack. This design makes them extremely lightweight and fast to start.&lt;/p&gt;
&lt;h2 id="lxc-vs-virtual-machines"&gt;LXC vs Virtual Machines
&lt;/h2&gt;&lt;p&gt;The choice between LXC containers and VMs depends on your isolation and 성능 requirements:&lt;/p&gt;</description></item><item><title>Proxmox VE VM Management: From Creation to Optimization</title><link>https://takao.blog/ko/web/proxmox-vm-management/</link><pubDate>Sun, 18 Feb 2024 00:00:00 +0000</pubDate><guid>https://takao.blog/ko/web/proxmox-vm-management/</guid><description>&lt;img src="https://takao.blog/img/thumbnail/proxmox-vm-management-ko.png" alt="Featured image of post Proxmox VE VM Management: From Creation to Optimization" /&gt;&lt;h2 id="creating-a-vm-step-by-step"&gt;Creating a VM Step by Step
&lt;/h2&gt;&lt;p&gt;Proxmox VE provides a guided wizard for VM creation accessible from the web UI at &lt;strong&gt;Create VM&lt;/strong&gt; or via the &lt;code&gt;qm&lt;/code&gt; CLI tool. The wizard walks through eight configuration pages.&lt;/p&gt;
&lt;h3 id="general"&gt;General
&lt;/h3&gt;&lt;p&gt;Set a unique VM ID (an integer, typically starting at 100) and a descriptive name. The name does not affect guest networking — it is purely for identification. Optionally, select a resource pool to organize related VMs.&lt;/p&gt;</description></item><item><title>Proxmox VE Installation and Initial Setup Guide</title><link>https://takao.blog/ko/web/proxmox-install-setup/</link><pubDate>Wed, 15 Nov 2023 00:00:00 +0000</pubDate><guid>https://takao.blog/ko/web/proxmox-install-setup/</guid><description>&lt;img src="https://takao.blog/img/thumbnail/proxmox-install-setup-ko.png" alt="Featured image of post Proxmox VE Installation and Initial Setup Guide" /&gt;&lt;h2 id="what-is-proxmox-ve"&gt;What is Proxmox VE?
&lt;/h2&gt;&lt;p&gt;Proxmox Virtual Environment (Proxmox VE) is an open-source 서버 virtualization platform that combines KVM-based virtual machines and LXC-based containers under a single web 인터페이스. Built on Debian Linux, it integrates enterprise 기능 such as live migration, high availability, software-defined storage, and a built-in firewall. Its agentless design and central management 인터페이스 make it a popular choice for homelabs, small businesses, and data centers alike.&lt;/p&gt;</description></item></channel></rss>