시스템을 제거/재설치하지 않고 RAID 1 어레이 분해

시스템을 제거/재설치하지 않고 RAID 1 어레이 분해

RAID 시스템이 내장된 Debian을 사용하여 Soft Raid 1을 설정했습니다. 서버를 설정할 때 스페이스 HDD가 있었는데 왜 안될까 고민해서 레이드를 설정했습니다. RAID는 내가 OS를 설치할 때 Debian이 수행한 모든 작업을 사용하여 설정되었습니다(죄송합니다. Linux 사용자는 아닙니다).

하지만 이제는 실제로 디스크를 더 유용한 목적으로 사용할 수 있습니다.

OS를 재설치하지 않고도 쉽게 레이드를 막을 수 있나요? 어떻게 해야 하나요?

fdisk -l

Disk /dev/sda: 500.1 GB, 500107862016 bytes
255 heads, 63 sectors/track, 60801 cylinders, total 976773168 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 4096 bytes
I/O size (minimum/optimal): 4096 bytes / 4096 bytes
Disk identifier: 0x000d9640

   Device Boot      Start         End      Blocks   Id  System
/dev/sda1            2048   976771071   488384512   fd  Linux raid autodetect

Disk /dev/sdb: 500.1 GB, 500107862016 bytes
255 heads, 63 sectors/track, 60801 cylinders, total 976773168 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 4096 bytes
I/O size (minimum/optimal): 4096 bytes / 4096 bytes
Disk identifier: 0x0009dd99

   Device Boot      Start         End      Blocks   Id  System
/dev/sdb1            2048   950560767   475279360   83  Linux
/dev/sdb2       950562814   976771071    13104129    5  Extended
Partition 2 does not start on physical sector boundary.
/dev/sdb5       950562816   976771071    13104128   82  Linux swap / Solaris

Disk /dev/sdc: 2000.4 GB, 2000398934016 bytes
255 heads, 63 sectors/track, 243201 cylinders, total 3907029168 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
Disk identifier: 0x6fa10d6b

   Device Boot      Start         End      Blocks   Id  System
/dev/sdc1              63  3907024064  1953512001    7  HPFS/NTFS/exFAT

Disk /dev/sdd: 7803 MB, 7803174912 bytes
122 heads, 58 sectors/track, 2153 cylinders, total 15240576 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
Disk identifier: 0xc3072e18

   Device Boot      Start         End      Blocks   Id  System
/dev/sdd1   *        8064    15240575     7616256    b  W95 FAT32

fstab콘텐츠:

# /etc/fstab: static file system information.
#
# Use 'blkid' to print the universally unique identifier for a
# device; this may be used with UUID= as a more robust way to name devices
# that works even if disks are added and removed. See fstab(5).
#
# <file system> <mount point>   <type>  <options>       <dump>  <pass>
# / was on /dev/sdb1 during installation
UUID=cbc19adf-8ed0-4d20-a56e-13c1a74e9cf0 /               ext4    errors=remount-ro 0       1
# swap was on /dev/sdb5 during installation
UUID=f6836768-e2b6-4ccf-9827-99f58999607e none            swap    sw              0       0
/dev/sda1       /media/usb0     auto    rw,user,noauto  0       0
/dev/sdc1       /media/mns       ntfs-3g defaults        0       2

답변1

아마도 설정을 변경하지 않고 가장 쉬운 방법은 RAID를 단일 디스크로 줄이는 것입니다. 이렇게 하면 나중에 RAID를 재사용할 수 있도록 디스크를 추가할 수 있는 옵션이 제공됩니다.

mdadm /dev/mdx --fail /dev/disky1
mdadm /dev/mdx --remove /dev/disky1
mdadm --grow /dev/mdx --raid-devices=1 --force

결과는 다음과 같습니다.

mdx : active raid1 diskx1[3]
      62519296 blocks super 1.2 [1/1] [U]

짜잔 단일 디스크 "RAID1".

RAID 레이어를 완전히 제거하려면 mdadm --examine /dev/diskx1(데이터 오프셋 찾기), mdadm --zero-superblock(RAID 메타데이터 제거) parted파티션이 파일 시스템을 가리키도록 데이터 오프셋만큼 이동한 다음 RAID 부족을 반영하도록 부트로더 및 시스템 구성을 업데이트합니다...

답변2

실패하고 드라이브 중 하나를 삭제하십시오.

mdadm /dev/md0 --fail /dev/sdb --remove /dev/sdb

/etc/fstab그런 다음 RAID의 나머지 드라이브를 사용하도록 변경합니다 .

재시작. 그런 다음 RAID를 파괴하십시오.

mdadm /dev/md0 --destroy

재미있게 보내세요 :)

관련 정보