


The company's server has a system disk of 40G, which has been used up about 30%. The boss purchased a new disk of 200G and asked me to migrate the previous data to the new disk. The migration went very smoothly. Here I will share with you how I did it.
Format
lsblk View the new disk file name
First we need to know the disk file, use lsblk to view it, and know that the new disk file name is /dev/vdb
Partition
I divided the 200G disk into two areas, with sizes of 50G and 100G respectively. I will keep the remaining 50G to see how to use it later.
# 分区的命令 fdisk /dev/vdb …… # 强制让内核重新找一次分区表 partprobe # 格式化分区 mkfs.xfs /dev/vdb1 mkfs.xfs /dev/vdb2
Mount
After partitioning and formatting, you need to mount the partition. Partitions under Linux must be mounted before they can be used.
Create a new directory/data to mount /dev/vdb1. This partition is temporarily reserved for future use.
The website data is all in the /www directory. We are going to store the data in this directory on the new disk partition. How to minimize the migration workload?
The method I adopted is to change the original directory /www to /wwwbak, and then re-create the empty directory /www. The /www directory is now empty, so it can be mounted on a new disk partition. We will mount the 100G partition to the /www directory. Then copy all the data in the /wwwbak directory to the /www directory. At this point, the migration work is completed.
# 关闭nginx及mysql服务 killall nginx killall mysqld # 将原/www目录修改为/wwwbak mv /www /wwwbak # 创建空目录 mkdir /www /data # 挂载 mount /dev/vdb1 /data mount /dev/vdb2 /www
Modify the /etc/fstab file
Modify the /etc/fstab file to allow it to be automatically mounted at boot.
# 查看分区的uuid blkid # 修改fstab文件内容 vim /etc/fstab ... # 重新挂载一遍看有没有错误 mount -a
Migrating data
Migrating data is very simple at this time. cp must add option -a so that the file attributes will not change.
# 复制数据 cp -a /wwwbak/* /www # 开启ningx和mysql /etc/init.d/nginx start /etc/init.d/mysql start
After data migration, the /wwwbak directory can be deleted, or you can keep it and make a backup.
The above is the detailed content of Remember an example of server website data migration. For more information, please follow other related articles on the PHP Chinese website!

This tutorial demonstrates efficient keyword searching in Linux using the grep command family and related tools. It covers basic and advanced techniques, including regular expressions, recursive searches, and combining commands like awk, sed, and xa

This article details the multifaceted role of a Linux system administrator, encompassing system maintenance, troubleshooting, security, and collaboration. It highlights essential technical and soft skills, salary expectations, and diverse career pr

The article provides a guide on setting up two-factor authentication (2FA) for SSH on Linux using Google Authenticator, detailing installation, configuration, and troubleshooting steps. It highlights the security benefits of 2FA, such as enhanced sec

The article explains how to use regular expressions (regex) in Linux for pattern matching, file searching, and text manipulation, detailing syntax, commands, and tools like grep, sed, and awk.

The article discusses using top, htop, and vmstat for monitoring Linux system performance, detailing their unique features and customization options for effective system management.

This article compares SELinux and AppArmor, Linux kernel security modules providing mandatory access control. It details their configuration, highlighting the differences in approach (policy-based vs. profile-based) and potential performance impacts

This article details Linux system backup and restoration methods. It compares full system image backups with incremental backups, discusses optimal backup strategies (regularity, multiple locations, versioning, testing, security, rotation), and da

This article compares Linux commands (scp, sftp, rsync, ftp) for uploading files. It emphasizes security (favoring SSH-based methods) and efficiency, highlighting rsync's delta transfer capabilities for large files. The choice depends on file size,


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Dreamweaver Mac version
Visual web development tools

MantisBT
Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

Notepad++7.3.1
Easy-to-use and free code editor

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

SublimeText3 Mac version
God-level code editing software (SublimeText3)
