Fail event on /dev/md127

ezelbanaan

Dabbler
Joined
Feb 2, 2020
Messages
29
in code blocks please
1. zpool status -v
2. glabel status
zpool status -v
Code:
root@truenas[~]# zpool status -v
  pool: Games
 state: ONLINE
status: Some supported and requested features are not enabled on the pool.
        The pool can still be used, but some features are unavailable.
action: Enable all features using 'zpool upgrade'. Once this is done,
        the pool may no longer be accessible by software that does not support
        the features. See zpool-features(7) for details.
  scan: resilvered 0B in 00:00:02 with 0 errors on Mon Apr  4 15:52:43 2022
config:

        NAME                                    STATE     READ WRITE CKSUM
        Games                                   ONLINE       0     0     0
          612295a2-8d4f-11eb-aea2-b3976b669fd2  ONLINE       0     0     0
          ad43c14a-23c1-11ec-a9ab-589cfc10fff6  ONLINE       0     0     0

errors: No known data errors

  pool: Raid-Z1
 state: ONLINE
status: Some supported and requested features are not enabled on the pool.
        The pool can still be used, but some features are unavailable.
action: Enable all features using 'zpool upgrade'. Once this is done,
        the pool may no longer be accessible by software that does not support
        the features. See zpool-features(7) for details.
  scan: scrub repaired 0B in 00:44:21 with 0 errors on Sun Mar  6 12:44:24 2022
config:

        NAME                                      STATE     READ WRITE CKSUM
        Raid-Z1                                   ONLINE       0     0     0
          raidz1-0                                ONLINE       0     0     0
            34e64300-873d-11eb-9049-0344185f9b67  ONLINE       0     0     0
            352f2142-873d-11eb-9049-0344185f9b67  ONLINE       0     0     0
            3520fb1f-873d-11eb-9049-0344185f9b67  ONLINE       0     0     0
            35bc0a3e-873d-11eb-9049-0344185f9b67  ONLINE       0     0     0

errors: No known data errors

  pool: boot-pool
 state: ONLINE
status: Some supported and requested features are not enabled on the pool.
        The pool can still be used, but some features are unavailable.
action: Enable all features using 'zpool upgrade'. Once this is done,
        the pool may no longer be accessible by software that does not support
        the features. See zpool-features(7) for details.
  scan: scrub repaired 0B in 00:02:45 with 0 errors on Tue Feb 22 03:47:45 2022
config:

        NAME        STATE     READ WRITE CKSUM
        boot-pool   ONLINE       0     0     0
          sda       ONLINE       0     0     0

errors: No known data errors


glabel status
Code:
root@truenas[~]# glabel status
zsh: command not found: glabel

I couldn't figure out how to install glabel
 

sretalla

Powered by Neutrality
Moderator
Joined
Jan 1, 2016
Messages
9,703

NugentS

MVP
Joined
Apr 16, 2020
Messages
2,947
Good point - missed that.
in reverse.
boot-pool is a single disk - sda - with no issues
Raid-Z1 is a RAIDZ1 array with 4 disks. No issues
Games is a think a stripe of 2 disks. No issues

If I am right about the above then all is I think good (with the disks themselves anyway). You still need to replace the nasty SATA expsnsion card with a proper HBA. However I have no idea about proxmox and what it does so I shall caveat my all is OK with "but proxmox"
 

NugentS

MVP
Joined
Apr 16, 2020
Messages
2,947
Hmmm anyone know what has replaced glabel status with on Scale? ie how to reference the GPTID back to the /dev/whatever
 

ezelbanaan

Dabbler
Joined
Feb 2, 2020
Messages
29
Good point - missed that.
in reverse.
boot-pool is a single disk - sda - with no issues
Raid-Z1 is a RAIDZ1 array with 4 disks. No issues
Games is a think a stripe of 2 disks. No issues

If I am right about the above then all is I think good (with the disks themselves anyway). You still need to replace the nasty SATA expsnsion card with a proper HBA. However I have no idea about proxmox and what it does so I shall caveat my all is OK with "but proxmox"
Ok, thanks for all the help. I will definitely replace the SATA expension card.
 

Arwen

MVP
Joined
May 17, 2014
Messages
3,611
In Linux, the "/dev/mdXXX" are SOFTWARE RAID. Which a prior output clearly shows it as a 2 way mirror of;
md127 : active raid1 sde1[1] sdd1[0](F)
The "sdd1" disk / partition has failed.

This is almost certainly the SWAP space, as my own VM of TrueNAS SCALE has this;
Code:
root@truenas[~]# swapon
NAME      TYPE      SIZE USED PRIO
/dev/dm-0 partition   2G   0B   -2
root@truenas[~]# cryptsetup status /dev/dm-0
/dev/dm-0 is active and is in use.
  type:    PLAIN
  cipher:  aes-cbc-essiv:sha256
  keysize: 256 bits
  key location: dm-crypt
  device:  /dev/md127
  sector size:  512
  offset:  0 sectors
  size:    4194177 sectors
  mode:    read/write
root@truenas[~]# cat /proc/mdstat
Personalities : [linear] [multipath] [raid0] [raid1] [raid6] [raid5] [raid4] [raid10]
md127 : active raid1 sdc1[1] sdb1[0]
      2097088 blocks super non-persistent [2/2] [UU]
     
unused devices: <none>
 
Joined
Jan 27, 2020
Messages
577
These were bogging me too, and I didn't could make any sense out of them.
Looked it up on JIRA and there is already a fix for these "confusing" messages due in SCALE 22.12.1

 
Top