本文主要是介绍linux基于xfs文件系统实现数据备份和恢复,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
实战:xfs文件系统的备份和恢复
XFS文件系统
- centos7选择xfs格式作为默认文件系统,而且不再使用以前的ext,仍然支持ext4,
- xfs专为大数据产生,每个单个文件系统最大可以支持8eb,单个文件可以支持16tb,不仅数据量大,而且扩展性高。
- 还可以通过xfsdump,xfsrestore来备份和恢复。
XFS备份 恢复工具
-
XFS提供了 xfsdump 和 xfsrestore 工具协助备份XFS文件系统中的数据。xfsdump 按inode顺序备份一个XFS文件系统。
-
与传统的UNIX文件系统不同,XFS不需要在备份前被卸载;对使用中的XFS文件系统做备份就可以保证镜像的一致性。XFS的备份和恢复的过程是可以被中断然后继续的,无须冻结文件系统。xfsdump 甚至提供了高性能的多线程备份操作——它把一次dump拆分成多个数据流,每个数据流可以被发往不同的目的地
xfsdump的备份级别
首先了解一下xfsdump的备份级别有以下两种,默认为0(即完全备份)
- 0 级别代表: 完全备份
- 1 到9级别代表: 增量备份
扩展:
- 完全备份:每次都把指定的备份目录完整的复制一遍,不管目录下的文件有没有变化;
- 增量备份:每次将之前(第一次、第二次、直到前一次)做过备份之后有变化的文件进行备份;
- 差异备份:每次都将第一次完整备份以来有变化的文件进行备份。
环境准备
实验环境
系统CetnOS8 添加一块虚拟硬盘(准备一个测试分区)
正常使用一块磁盘过程如下:
添加磁盘大小:2G ->分区->格式化->挂载
- 虚拟机新增2G硬盘
- 开机后查看设备
使用fdisk -l查看新增硬盘
Last login: Tue Oct 20 04:13:20 2020 from 10.0.0.1
[root@C8-3 ~]# fdisk -l
Disk /dev/sda: 20 GiB, 21474836480 bytes, 41943040 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disklabel type: dos
Disk identifier: 0xbfcdb101Device Boot Start End Sectors Size Id Type
/dev/sda1 * 2048 2099199 2097152 1G 83 Linux
/dev/sda2 2099200 41943039 39843840 19G 8e Linux LVMDisk /dev/sdb: 2 GiB, 2147483648 bytes, 4194304 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
- 给新增硬盘分区
[root@C8-3 ~]# fdisk /dev/sdb #使用fdisk命令分区Welcome to fdisk (util-linux 2.32.1).
Changes will remain in memory only, until you decide to write them.
Be careful before using the write command.Device does not contain a recognized partition table.
Created a new DOS disklabel with disk identifier 0x467c42d4.Command (m for help): m #查看有哪些命令可以用Help:DOS (MBR)a toggle a bootable flagb edit nested BSD disklabelc toggle the dos compatibility flagGenericd delete a partitionF list free unpartitioned spacel list known partition typesn add a new partitionp print the partition tablet change a partition typev verify the partition tablei print information about a partitionMiscm print this menuu change display/entry unitsx extra functionality (experts only)ScriptI load disk layout from sfdisk script fileO dump disk layout to sfdisk script fileSave & Exitw write table to disk and exitq quit without saving changesCreate a new labelg create a new empty GPT partition tableG create a new empty SGI (IRIX) partition tableo create a new empty DOS partition tables create a new empty Sun partition tableCommand (m for help): n #选择新建一个分区
Partition typep primary (0 primary, 0 extended, 4 free)e extended (container for logical partitions)
Select (default p): p #创建主分区
Partition number (1-4, default 1): #直接回车默认值
First sector (2048-4194303, default 2048): #起始扇区,回车默认
Last sector, +sectors or +size{K,M,G,T,P} (2048-4194303, default 4194303): #结束扇区,回车默认分配全部空间Created a new partition 1 of type 'Linux' and of size 2 GiB.Command (m for help): w #将以上操作写入硬盘分区表,结束分区
The partition table has been altered.
Calling ioctl() to re-read partition table.
Syncing disks.
[root@C8-3 ~]# lsblk #查看分区是否成功
NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINT
sda 8:0 0 20G 0 disk
├─sda1 8:1 0 1G 0 part /boot
└─sda2 8:2 0 19G 0 part ├─cl-root 253:0 0 17G 0 lvm /└─cl-swap 253:1 0 2G 0 lvm [SWAP]
sdb 8:16 0 2G 0 disk
└─sdb1 8:17 0 2G 0 part #分区成功但未挂载
- 将新建分区格式化为xfs格式
使用mkfs.xfs格式化新分区
[root@C8-3 ~]# type mkfs.xfs #查看是否有此工具
mkfs.xfs is /usr/sbin/mkfs.xfs
[root@C8-3 ~]# mkfs.xfs --help #查看命令的帮助
mkfs.xfs: invalid option -- '-'
unknown option --
Usage: mkfs.xfs
/* blocksize */ [-b size=num]
/* metadata */ [-m crc=0|1,finobt=0|1,uuid=xxx,rmapbt=0|1,reflink=0|1]
/* data subvol */ [-d agcount=n,agsize=n,file,name=xxx,size=num,(sunit=value,swidth=value|su=num,sw=num|noalign),sectsize=num
/* force overwrite */ [-f]
/* inode size */
这篇关于linux基于xfs文件系统实现数据备份和恢复的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!