/dev/md0이 /dev/md127로 변경되었습니다.

/dev/md0이 /dev/md127로 변경되었습니다.

나는더반서버(최신 버전 및 모든 보안 업데이트 완료), 3년 전에 3개 이상의 디스크가 포함된 RAID-5를 만들었습니다 mdadm. 여전히 작동하지만 이제 도구에서 오류가 발생합니다 logwatch. 오늘에서야 알게 됐는데, 얼마나 오랫동안 거기 있었는지 모르겠어요. 또한 모든 로그 파일에 오류가 없습니다. 전체 RAID-5를 사용하므로 lvm다음에 제공된 솔루션을 사용하는 방법을 모르겠습니다.내 RAID 1은 재부팅 후 항상 이름이 /dev/md127로 변경됩니다. |".

나는 또한 달렸 update-initramfs -u지만 문제가 해결되지 않은 것 같습니다.

mdadm: 열 수 없습니다. /dev/md0: 해당 파일이나 디렉터리가 없습니다.

그래서 조사를 시작했고, 제가 발견한 것은 다음과 같습니다.

root@horus:/etc# ls -lhd /dev/md*
drwxr-xr-x 2 root root     60 19 dec 11:33 /dev/md
brw-rw---- 1 root disk 9, 127 19 dec 11:33 /dev/md127

root@horus:/etc# ls -lh /dev/md
totaal 0
lrwxrwxrwx 1 root root 8 19 dec 11:33 horus:0 -> ../md127

root@horus:/etc# cat /proc/mdstat 
Personalities : [raid6] [raid5] [raid4] [linear] [multipath] [raid0] [raid1] [raid10] 
md127 : active raid5 sdb1[3] sda1[0] sdd1[1]
      1953258496 blocks super 1.2 level 5, 512k chunk, algorithm 2 [3/3] [UUU]
      bitmap: 3/8 pages [12KB], 65536KB chunk
unused devices: <none>

root@horus:/etc# mdadm -D /dev/md127
/dev/md127:
           Version : 1.2
     Creation Time : Tue Jan 26 11:57:52 2021
        Raid Level : raid5
        Array Size : 1953258496 (1862.77 GiB 2000.14 GB)
     Used Dev Size : 976629248 (931.39 GiB 1000.07 GB)
      Raid Devices : 3
     Total Devices : 3
       Persistence : Superblock is persistent

     Intent Bitmap : Internal

       Update Time : Wed Feb 28 10:05:57 2024
             State : clean 
    Active Devices : 3
   Working Devices : 3
    Failed Devices : 0
     Spare Devices : 0

            Layout : left-symmetric
        Chunk Size : 512K

Consistency Policy : bitmap

              Name : horus:0  (local to host horus)
              UUID : b187df52:41d7a47e:98e7fa00:cae9bf67
            Events : 23348

    Number   Major   Minor   RaidDevice State
       0       8        1        0      active sync   /dev/sda1
       1       8       49        1      active sync   /dev/sdd1
       3       8       17        2      active sync   /dev/sdb1

root@horus:/var/log# fdisk -l /dev/md127
Disk /dev/md127: 1,82 TiB, 2000136699904 bytes, 3906516992 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 524288 bytes / 1048576 bytes

root@horus:/etc# mdadm -D --scan
ARRAY /dev/md/horus:0 metadata=1.2 name=horus:0 UUID=b187df52:41d7a47e:98e7fa00:cae9bf67

root@horus:/etc# cat mdadm/mdadm.conf 
# mdadm.conf
#
# !NB! Run update-initramfs -u after updating this file.
# !NB! This will ensure that initramfs has an uptodate copy.
#
# Please refer to mdadm.conf(5) for information about this file.
#

# by default (built-in), scan all partitions (/proc/partitions) and all
# containers for MD superblocks. alternatively, specify devices to scan, using
# wildcards if desired.
#DEVICE partitions containers

# automatically tag new arrays as belonging to the local system
HOMEHOST <system>

# instruct the monitoring daemon where to send mail alerts
MAILADDR root

# definitions of existing MD arrays
ARRAY /dev/md0 level=raid5 num-devices=3 metadata=1.2 name=horus:0 UUID=b187df52:41d7a47e:98e7fa00:cae9bf67
   devices=/dev/sda1,/dev/sdb1,/dev/sdc1

# This configuration was auto-generated on Tue, 26 Jan 2021 11:39:42 +0100 by mkconf

어떻게 해야 합니까? 파일에서 변경할 수 있나요 md0? 파일에 출력을 추가해야 합니까?md127/etc/mdadm/mdadm.confmdadm -D --scan

관련 정보