raid 状态查看 storcli64
场景
当磁盘报错的时候使用该命令排查
fdisk -l /dev/sdb
fdisk: cannot open /dev/sdb: Input/output error
进一步使用 smartctl 排查
smartctl -a /dev/sdb
输出
smartctl 7.1 2019-12-30 r5022 [x86_64-linux-5.4.0-144-generic] (local build)
Copyright (C) 2002-19, Bruce Allen, Christian Franke, www.smartmontools.org=== START OF INFORMATION SECTION ===
Vendor: AVAGO
Product: MR9364-8i
Revision: 4.28
Compliance: SPC-3
User Capacity: 12,000,675,495,936 bytes [12.0 TB]
Logical block size: 512 bytes
Logical Unit id: 0x600605b00b66a0802e83c37139e64fd4
Serial number: 00d44fe63971c3832e80a0660bb00506
Device type: disk
Local Time is: Fri Dec 20 15:57:50 2024 CST
device is NOT READY (e.g. spun down, busy)
A mandatory SMART command failed: exiting. To continue, add one or more '-T permissive' options.
解释下输出
smartctl -a /dev/sdb 命令的输出提供了关于 /dev/sdb 磁盘的详细信息。以下是各个部分的中文解释:
开始信息部分:
Vendor(厂商):
AVAGO:这款磁盘由 AVAGO(现已并入 Broadcom)生产,说明它可能是与 RAID 控制器(如 MegaRAID)相关的磁盘。
Product(产品):
MR9364-8i:这是 Broadcom/LSI MegaRAID SAS 9364-8i 控制器的产品名称,说明磁盘是通过这个 RAID 控制器管理的。
Revision(版本):
4.28:磁盘固件的版本号。
Compliance(符合标准):
SPC-3:磁盘符合 SPC-3 标准,这是存储设备的一种行业标准。
User Capacity(用户容量):
12,000,675,495,936 bytes [12.0 TB]:磁盘的总容量为 12.0 TB。
Logical block size(逻辑块大小):
512 bytes:磁盘的逻辑块大小为 512 字节。
Logical Unit id(逻辑单元 ID):
0x600605b00b66a0802e83c37139e64fd4:这是该磁盘在 RAID 中的唯一标识符。
Serial number(序列号):
00d44fe63971c3832e80a0660bb00506:这是磁盘的唯一序列号。
Device type(设备类型):
disk:设备类型为磁盘。
Local Time is:
显示本地时间为:Fri Dec 20 15:57:50 2024 CST。
设备状态:
device is NOT READY:
这表明磁盘当前不可用。原因可能是磁盘已被关闭(spun down),或者磁盘正忙于其他操作(例如 RAID 重建、初始化等)。
如果磁盘处于忙碌状态或未准备好,则无法读取其 SMART 信息。
错误消息:
A mandatory SMART command failed:
这表示智能监控工具(SMART)在尝试获取磁盘状态时失败,通常是由于磁盘未就绪(NOT READY)。
提示信息中建议使用 -T permissive 选项继续命令,但这通常不推荐,因为它可能掩盖硬件问题。
总结:
从输出可以看出,磁盘 /dev/sdb 由于某些原因(如磁盘处于忙碌或未准备好状态)无法获取 SMART 信息。您可以检查磁盘是否在忙碌状态(如重建 RAID 阵列等),或者等待磁盘进入就绪状态后再尝试获取 SMART 信息。
下载 storcli工具
登录Broadcom官网
安装 storcli
unzip MR_SAS_StorCLI_1-16-06.zip
unzip storcli_all_os.zip
cd storcli_all_os/Ubuntu/
sudo dpkg -i storcli_1.0_all.deb
sudo /opt/MegaRAID/storcli/storcli64 adpcount
storcli64 /c0/eall/sall show
/opt/MegaRAID/storcli/storcli64 /c0/eall/sall show 详细解释下这条命令
/opt/MegaRAID/storcli/storcli64 /c0/eall/sall show 是一条用于查看硬件 RAID 控制器配置的命令,具体含义如下:
命令组成
/opt/MegaRAID/storcli/storcli64:这是 storcli 工具的路径。storcli 是用于管理和查看 LSI(现为 Broadcom)MegaRAID 控制器的命令行工具。storcli64 是该工具的 64 位版本,通常用于管理和查看 RAID 配置、硬件状态、磁盘状态等。
/c0:指定控制器的编号。MegaRAID 控制器通常有多个,在这种情况下,/c0 指的是第一个控制器。如果有多个控制器,c0 表示第一个控制器,c1 表示第二个控制器,以此类推。
/eall:表示“所有外部设备”(enclosure)。在 MegaRAID 控制器中,磁盘阵列通常连接到外部机架(enclosure),使用 /eall 可以查看所有外部机架上的设备信息。
/sall:表示“所有槽位”(slot)。这意味着查看控制器上所有物理磁盘(所有槽位上的磁盘)的状态。
show:这是命令的操作部分,表示显示设备信息或状态。
命令作用
这条命令会显示有关 MegaRAID 控制器、所有连接的外部机架和所有槽位中的磁盘的详细信息。这包括控制器的状态、磁盘组配置、各个磁盘的健康状态、RAID 阵列的配置等信息。
输出内容解释
执行该命令后,通常会返回类似以下的信息:
控制器信息:
产品名称、固件版本、BIOS 版本、驱动程序版本等信息。
例如:
Controller = 0
Product Name = AVAGO MegaRAID SAS 9364-8i
Firmware Version = 4.280.00-4410
Driver Version = 07.713.01.00-rc1
磁盘组信息(Disk Groups):
显示当前 RAID 阵列的配置,包括阵列的类型(RAID1、RAID5 等)、大小、状态、缓存策略等。
例如:
DG/VD TYPE State Size Name
0/0 RAID5 Optimal 10.914 TB
物理磁盘信息(Physical Drives):
显示控制器连接的每个物理磁盘的状态、型号、接口类型、大小等信息。
例如:
EID:Slt DID State DG Size Model
252:0 6 Offln 0 3.637 TB ST4000NM000B-2TF100
252:1 5 Onln 0 3.637 TB ST4000NM000B-2TF100
磁盘状态:
显示每个磁盘的健康状态,状态包括 “Online”(在线)、“Offline”(离线)、“Degraded”(降级)等。
如果某些磁盘离线或出现故障,命令输出中会明确显示。
RAID 阵列的拓扑结构:
显示 RAID 阵列中各个磁盘的具体位置和状态。
例如:
DG Arr Row EID:Slot DID Type State BT Size PDC PI SED DS3 FSpace
0 - - - RAID5 OfLn N 10.914 TB dflt N N none N
0 0 - - - RAID5 Dgrd N 10.914 TB dflt N N none N
RAID 磁盘组详细信息:
可能会显示阵列成员磁盘的更多详细信息,包括阵列类型、保护级别、缓存设置等。
总结
/opt/MegaRAID/storcli/storcli64 /c0/eall/sall show 主要是用于获取 MegaRAID 控制器中所有连接的磁盘、阵列以及相关硬件的详细信息。可以用来检查 RAID 阵列的健康状态、硬件配置、磁盘状态等。如果你需要了解磁盘的详细状态,特别是 RAID 阵列的配置、磁盘是否健康,这条命令是非常有用的。
/opt/MegaRAID/storcli/storcli64 /c0/eall/sall show
/opt/MegaRAID/storcli/storcli64 /c0/eall/sall show
Controller = 0
Status = Success
Description = Show Drive Information Succeeded.Drive Information :
=================------------------------------------------------------------------------------
EID:Slt DID State DG Size Intf Med SED PI SeSz Model Sp
------------------------------------------------------------------------------
252:0 6 Offln 0 3.637 TB SATA HDD N N 512B ST4000NM000B-2TF100 U
252:1 5 Offln 0 3.637 TB SATA HDD N N 512B ST4000NM000B-2TF100 U
252:2 4 Offln 0 3.637 TB SATA HDD N N 512B ST4000NM000B-2TF100 U
252:3 3 UBad - 3.637 TB SATA HDD N N 512B ST4000NM000B-2TF100 U
252:4 2 JBOD - 3.637 TB SATA SSD N N 512B Samsung SSD 870 QVO 4TB U
------------------------------------------------------------------------------EID-Enclosure Device ID|Slt-Slot No.|DID-Device ID|DG-DriveGroup
DHS-Dedicated Hot Spare|UGood-Unconfigured Good|GHS-Global Hotspare
UBad-Unconfigured Bad|Onln-Online|Offln-Offline|Intf-Interface
Med-Media Type|SED-Self Encryptive Drive|PI-Protection Info
SeSz-Sector Size|Sp-Spun|U-Up|D-Down|T-Transition|F-Foreign
UGUnsp-Unsupported|UGShld-UnConfigured shielded|HSPShld-Hotspare shielded
CFShld-Configured shielded|Cpybck-CopyBack|CBShld-Copyback Shielded
/opt/MegaRAID/storcli/storcli64 /c0 show
/opt/MegaRAID/storcli/storcli64 /c0 show
Generating detailed summary of the adapter, it may take a while to complete.Controller = 0
Status = Success
Description = NoneProduct Name = AVAGO MegaRAID SAS 9364-8i
Serial Number = SV55243101
SAS Address = 500605b00b66a080
PCI Address = 00:21:00:00
System Time = 12/20/2024 15:21:21
Mfg. Date = 12/22/15
Controller Time = 12/20/2024 07:20:59
FW Package Build = 24.8.0-0026
BIOS Version = 6.24.05.0_4.17.08.00_0x060D0200
FW Version = 4.280.00-4410
Driver Name = megaraid_sas
Driver Version = 07.713.01.00-rc1
Vendor Id = 0x1000
Device Id = 0x5D
SubVendor Id = 0x1000
SubDevice Id = 0x936A
Host Interface = PCI-E
Device Interface = SAS-12G
Bus Number = 33
Device Number = 0
Function Number = 0
Drive Groups = 1TOPOLOGY :
========-------------------------------------------------------------------------
DG Arr Row EID:Slot DID Type State BT Size PDC PI SED DS3 FSpace
-------------------------------------------------------------------------0 - - - - RAID5 OfLn N 10.914 TB dflt N N none N0 0 - - - RAID5 Dgrd N 10.914 TB dflt N N none N0 0 0 - - DRIVE Msng - 3.637 TB - - - - -0 0 1 252:2 4 DRIVE Offln N 3.637 TB dflt N N none -0 0 2 252:1 5 DRIVE Offln N 3.637 TB dflt N N none -0 0 3 252:0 6 DRIVE Offln N 3.637 TB dflt N N none -
-------------------------------------------------------------------------DG=Disk Group Index|Arr=Array Index|Row=Row Index|EID=Enclosure Device ID
DID=Device ID|Type=Drive Type|Onln=Online|Rbld=Rebuild|Dgrd=Degraded
Pdgd=Partially degraded|Offln=Offline|BT=Background Task Active
PDC=PD Cache|PI=Protection Info|SED=Self Encrypting Drive|Frgn=Foreign
DS3=Dimmer Switch 3|dflt=Default|Msng=Missing|FSpace=Free Space PresentMissing Drives Count = 1Missing Drives :
==============-------------------
Array Row Size
-------------------0 0 3.637 TB
-------------------Virtual Drives = 1VD LIST :
=======--------------------------------------------------------------
DG/VD TYPE State Access Consist Cache Cac sCC Size Name
--------------------------------------------------------------
0/0 RAID5 OfLn RW No RWTD - ON 10.914 TB
--------------------------------------------------------------Cac=CacheCade|Rec=Recovery|OfLn=OffLine|Pdgd=Partially Degraded|dgrd=Degraded
Optl=Optimal|RO=Read Only|RW=Read Write|HD=Hidden|B=Blocked|Consist=Consistent|
R=Read Ahead Always|NR=No Read Ahead|WB=WriteBack|
AWB=Always WriteBack|WT=WriteThrough|C=Cached IO|D=Direct IO|sCC=Scheduled
Check ConsistencyPhysical Drives = 5PD LIST :
=======------------------------------------------------------------------------------
EID:Slt DID State DG Size Intf Med SED PI SeSz Model Sp
------------------------------------------------------------------------------
252:0 6 Offln 0 3.637 TB SATA HDD N N 512B ST4000NM000B-2TF100 U
252:1 5 Offln 0 3.637 TB SATA HDD N N 512B ST4000NM000B-2TF100 U
252:2 4 Offln 0 3.637 TB SATA HDD N N 512B ST4000NM000B-2TF100 U
252:3 3 UBad - 3.637 TB SATA HDD N N 512B ST4000NM000B-2TF100 U
252:4 2 JBOD - 3.637 TB SATA SSD N N 512B Samsung SSD 870 QVO 4TB U
------------------------------------------------------------------------------EID-Enclosure Device ID|Slt-Slot No.|DID-Device ID|DG-DriveGroup
DHS-Dedicated Hot Spare|UGood-Unconfigured Good|GHS-Global Hotspare
UBad-Unconfigured Bad|Onln-Online|Offln-Offline|Intf-Interface
Med-Media Type|SED-Self Encryptive Drive|PI-Protection Info
SeSz-Sector Size|Sp-Spun|U-Up|D-Down|T-Transition|F-Foreign
UGUnsp-Unsupported|UGShld-UnConfigured shielded|HSPShld-Hotspare shielded
CFShld-Configured shielded|Cpybck-CopyBack|CBShld-Copyback Shielded
/opt/MegaRAID/storcli/storcli64 /c0/eall/sall show all
Controller = 0
Status = Success
Description = Show Drive Information Succeeded.Drive /c0/e252/s0 :
=================--------------------------------------------------------------------------
EID:Slt DID State DG Size Intf Med SED PI SeSz Model Sp
--------------------------------------------------------------------------
252:0 6 Offln 0 3.637 TB SATA HDD N N 512B ST4000NM000B-2TF100 U
--------------------------------------------------------------------------EID-Enclosure Device ID|Slt-Slot No.|DID-Device ID|DG-DriveGroup
DHS-Dedicated Hot Spare|UGood-Unconfigured Good|GHS-Global Hotspare
UBad-Unconfigured Bad|Onln-Online|Offln-Offline|Intf-Interface
Med-Media Type|SED-Self Encryptive Drive|PI-Protection Info
SeSz-Sector Size|Sp-Spun|U-Up|D-Down|T-Transition|F-Foreign
UGUnsp-Unsupported|UGShld-UnConfigured shielded|HSPShld-Hotspare shielded
CFShld-Configured shielded|Cpybck-CopyBack|CBShld-Copyback ShieldedDrive /c0/e252/s0 - Detailed Information :
========================================Drive /c0/e252/s0 State :
=======================
Shield Counter = 1
Media Error Count = 0
Other Error Count = 7
Drive Temperature = N/A
Predictive Failure Count = 0
S.M.A.R.T alert flagged by drive = NoDrive /c0/e252/s0 Device attributes :
===================================
SN = WX002B46
Manufacturer Id = ATA
Model Number = ST4000NM000B-2TF100
NAND Vendor = NA
WWN = 5000c500ed1ad198
Firmware Revision = TN01
Raw size = 3.638 TB [0x1d1c0beb0 Sectors]
Coerced size = 3.637 TB [0x1d1b00000 Sectors]
Non Coerced size = 3.637 TB [0x1d1b0beb0 Sectors]
Device Speed = 6.0Gb/s
Link Speed = 6.0Gb/s
NCQ setting = Enabled
Write cache = N/A
Logical Sector Size = 512B
Physical Sector Size = 512BDrive /c0/e252/s0 Policies/Settings :
===================================
Drive position = DriveGroup:0, Span:0, Row:3
Enclosure position = 0
Connected Port Number = 0(path0)
Sequence Number = 4
Commissioned Spare = No
Emergency Spare = No
Last Predictive Failure Event Sequence Number = 0
Successful diagnostics completion on = 12-11-2024 0:5:55SED Capable = No
SED Enabled = No
Secured = No
Locked = No
Needs EKM Attention = No
PI Eligible = No
Certified = No
Wide Port Capable = NoPort Information :
================-----------------------------------------
Port Status Linkspeed SAS address
-----------------------------------------0 Active 6.0Gb/s 0x4433221100000000
-----------------------------------------Inquiry Data =
5a 0c ff 3f 37 c8 10 00 00 00 00 00 3f 00 00 00
00 00 00 00 20 20 20 20 20 20 20 20 20 20 20 20
58 57 30 30 42 32 36 34 00 00 00 00 00 00 4e 54
31 30 20 20 20 20 54 53 30 34 30 30 4d 4e 30 30
42 30 32 2d 46 54 30 31 20 30 20 20 20 20 20 20
20 20 20 20 20 20 20 20 20 20 20 20 20 20 10 80
00 40 00 2f 00 40 00 02 00 02 07 00 ff 3f 10 00
3f 00 10 fc fb 00 10 5d ff ff ff 0f 00 00 07 00Drive /c0/e252/s1 :
=================--------------------------------------------------------------------------
EID:Slt DID State DG Size Intf Med SED PI SeSz Model Sp
--------------------------------------------------------------------------
252:1 5 Offln 0 3.637 TB SATA HDD N N 512B ST4000NM000B-2TF100 U
--------------------------------------------------------------------------EID-Enclosure Device ID|Slt-Slot No.|DID-Device ID|DG-DriveGroup
DHS-Dedicated Hot Spare|UGood-Unconfigured Good|GHS-Global Hotspare
UBad-Unconfigured Bad|Onln-Online|Offln-Offline|Intf-Interface
Med-Media Type|SED-Self Encryptive Drive|PI-Protection Info
SeSz-Sector Size|Sp-Spun|U-Up|D-Down|T-Transition|F-Foreign
UGUnsp-Unsupported|UGShld-UnConfigured shielded|HSPShld-Hotspare shielded
CFShld-Configured shielded|Cpybck-CopyBack|CBShld-Copyback ShieldedDrive /c0/e252/s1 - Detailed Information :
========================================Drive /c0/e252/s1 State :
=======================
Shield Counter = 1
Media Error Count = 0
Other Error Count = 7
Drive Temperature = 19C (66.20 F)
Predictive Failure Count = 0
S.M.A.R.T alert flagged by drive = NoDrive /c0/e252/s1 Device attributes :
===================================
SN = WX001S0P
Manufacturer Id = ATA
Model Number = ST4000NM000B-2TF100
NAND Vendor = NA
WWN = 5000c500ed11a0bb
Firmware Revision = TN01
Raw size = 3.638 TB [0x1d1c0beb0 Sectors]
Coerced size = 3.637 TB [0x1d1b00000 Sectors]
Non Coerced size = 3.637 TB [0x1d1b0beb0 Sectors]
Device Speed = 6.0Gb/s
Link Speed = 6.0Gb/s
NCQ setting = Enabled
Write cache = N/A
Logical Sector Size = 512B
Physical Sector Size = 512BDrive /c0/e252/s1 Policies/Settings :
===================================
Drive position = DriveGroup:0, Span:0, Row:2
Enclosure position = 0
Connected Port Number = 1(path0)
Sequence Number = 4
Commissioned Spare = No
Emergency Spare = No
Last Predictive Failure Event Sequence Number = 0
Successful diagnostics completion on = 12-11-2024 0:5:55SED Capable = No
SED Enabled = No
Secured = No
Locked = No
Needs EKM Attention = No
PI Eligible = No
Certified = No
Wide Port Capable = NoPort Information :
================-----------------------------------------
Port Status Linkspeed SAS address
-----------------------------------------0 Active 6.0Gb/s 0x4433221101000000
-----------------------------------------Inquiry Data =
5a 0c ff 3f 37 c8 10 00 00 00 00 00 3f 00 00 00
00 00 00 00 20 20 20 20 20 20 20 20 20 20 20 20
58 57 30 30 53 31 50 30 00 00 00 00 00 00 4e 54
31 30 20 20 20 20 54 53 30 34 30 30 4d 4e 30 30
42 30 32 2d 46 54 30 31 20 30 20 20 20 20 20 20
20 20 20 20 20 20 20 20 20 20 20 20 20 20 10 80
00 40 00 2f 00 40 00 02 00 02 07 00 ff 3f 10 00
3f 00 10 fc fb 00 10 5d ff ff ff 0f 00 00 07 00Drive /c0/e252/s2 :
=================--------------------------------------------------------------------------
EID:Slt DID State DG Size Intf Med SED PI SeSz Model Sp
--------------------------------------------------------------------------
252:2 4 Offln 0 3.637 TB SATA HDD N N 512B ST4000NM000B-2TF100 U
--------------------------------------------------------------------------EID-Enclosure Device ID|Slt-Slot No.|DID-Device ID|DG-DriveGroup
DHS-Dedicated Hot Spare|UGood-Unconfigured Good|GHS-Global Hotspare
UBad-Unconfigured Bad|Onln-Online|Offln-Offline|Intf-Interface
Med-Media Type|SED-Self Encryptive Drive|PI-Protection Info
SeSz-Sector Size|Sp-Spun|U-Up|D-Down|T-Transition|F-Foreign
UGUnsp-Unsupported|UGShld-UnConfigured shielded|HSPShld-Hotspare shielded
CFShld-Configured shielded|Cpybck-CopyBack|CBShld-Copyback ShieldedDrive /c0/e252/s2 - Detailed Information :
========================================Drive /c0/e252/s2 State :
=======================
Shield Counter = 1
Media Error Count = 0
Other Error Count = 6
Drive Temperature = 19C (66.20 F)
Predictive Failure Count = 0
S.M.A.R.T alert flagged by drive = NoDrive /c0/e252/s2 Device attributes :
===================================
SN = WX0068CJ
Manufacturer Id = ATA
Model Number = ST4000NM000B-2TF100
NAND Vendor = NA
WWN = 5000c500ed66d391
Firmware Revision = TN01
Raw size = 3.638 TB [0x1d1c0beb0 Sectors]
Coerced size = 3.637 TB [0x1d1b00000 Sectors]
Non Coerced size = 3.637 TB [0x1d1b0beb0 Sectors]
Device Speed = 6.0Gb/s
Link Speed = 6.0Gb/s
NCQ setting = Enabled
Write cache = N/A
Logical Sector Size = 512B
Physical Sector Size = 512BDrive /c0/e252/s2 Policies/Settings :
===================================
Drive position = DriveGroup:0, Span:0, Row:1
Enclosure position = 0
Connected Port Number = 2(path0)
Sequence Number = 4
Commissioned Spare = No
Emergency Spare = No
Last Predictive Failure Event Sequence Number = 0
Successful diagnostics completion on = 12-11-2024 0:5:55SED Capable = No
SED Enabled = No
Secured = No
Locked = No
Needs EKM Attention = No
PI Eligible = No
Certified = No
Wide Port Capable = NoPort Information :
================-----------------------------------------
Port Status Linkspeed SAS address
-----------------------------------------0 Active 6.0Gb/s 0x4433221102000000
-----------------------------------------Inquiry Data =
5a 0c ff 3f 37 c8 10 00 00 00 00 00 3f 00 00 00
00 00 00 00 20 20 20 20 20 20 20 20 20 20 20 20
58 57 30 30 38 36 4a 43 00 00 00 00 00 00 4e 54
31 30 20 20 20 20 54 53 30 34 30 30 4d 4e 30 30
42 30 32 2d 46 54 30 31 20 30 20 20 20 20 20 20
20 20 20 20 20 20 20 20 20 20 20 20 20 20 10 80
00 40 00 2f 00 40 00 02 00 02 07 00 ff 3f 10 00
3f 00 10 fc fb 00 10 5d ff ff ff 0f 00 00 07 00Drive /c0/e252/s3 :
=================--------------------------------------------------------------------------
EID:Slt DID State DG Size Intf Med SED PI SeSz Model Sp
--------------------------------------------------------------------------
252:3 3 UBad - 3.637 TB SATA HDD N N 512B ST4000NM000B-2TF100 U
--------------------------------------------------------------------------EID-Enclosure Device ID|Slt-Slot No.|DID-Device ID|DG-DriveGroup
DHS-Dedicated Hot Spare|UGood-Unconfigured Good|GHS-Global Hotspare
UBad-Unconfigured Bad|Onln-Online|Offln-Offline|Intf-Interface
Med-Media Type|SED-Self Encryptive Drive|PI-Protection Info
SeSz-Sector Size|Sp-Spun|U-Up|D-Down|T-Transition|F-Foreign
UGUnsp-Unsupported|UGShld-UnConfigured shielded|HSPShld-Hotspare shielded
CFShld-Configured shielded|Cpybck-CopyBack|CBShld-Copyback ShieldedDrive /c0/e252/s3 - Detailed Information :
========================================Drive /c0/e252/s3 State :
=======================
Shield Counter = 0
Media Error Count = 0
Other Error Count = 0
Drive Temperature = 17C (62.60 F)
Predictive Failure Count = 0
S.M.A.R.T alert flagged by drive = NoDrive /c0/e252/s3 Device attributes :
===================================
SN = WX003NG7
Manufacturer Id = ATA
Model Number = ST4000NM000B-2TF100
NAND Vendor = NA
WWN = 5000c500ed66e2f9
Firmware Revision = TN01
Raw size = 3.638 TB [0x1d1c0beb0 Sectors]
Coerced size = 3.637 TB [0x1d1b00000 Sectors]
Non Coerced size = 3.637 TB [0x1d1b0beb0 Sectors]
Device Speed = 6.0Gb/s
Link Speed = 6.0Gb/s
NCQ setting = Enabled
Write cache = N/A
Logical Sector Size = 512B
Physical Sector Size = 512BDrive /c0/e252/s3 Policies/Settings :
===================================
Enclosure position = 0
Connected Port Number = 3(path0)
Sequence Number = 7
Commissioned Spare = No
Emergency Spare = No
Last Predictive Failure Event Sequence Number = 0
Successful diagnostics completion on = N/A
SED Capable = No
SED Enabled = No
Secured = No
Locked = No
Needs EKM Attention = No
PI Eligible = No
Certified = No
Wide Port Capable = NoPort Information :
================-----------------------------------------
Port Status Linkspeed SAS address
-----------------------------------------0 Active 6.0Gb/s 0x4433221103000000
-----------------------------------------Inquiry Data =
5a 0c ff 3f 37 c8 10 00 00 00 00 00 3f 00 00 00
00 00 00 00 20 20 20 20 20 20 20 20 20 20 20 20
58 57 30 30 4e 33 37 47 00 00 00 00 00 00 4e 54
31 30 20 20 20 20 54 53 30 34 30 30 4d 4e 30 30
42 30 32 2d 46 54 30 31 20 30 20 20 20 20 20 20
20 20 20 20 20 20 20 20 20 20 20 20 20 20 10 80
00 40 00 2f 00 40 00 02 00 02 07 00 ff 3f 10 00
3f 00 10 fc fb 00 10 5d ff ff ff 0f 00 00 07 00Drive /c0/e252/s4 :
=================------------------------------------------------------------------------------
EID:Slt DID State DG Size Intf Med SED PI SeSz Model Sp
------------------------------------------------------------------------------
252:4 2 JBOD - 3.637 TB SATA SSD N N 512B Samsung SSD 870 QVO 4TB U
------------------------------------------------------------------------------EID-Enclosure Device ID|Slt-Slot No.|DID-Device ID|DG-DriveGroup
DHS-Dedicated Hot Spare|UGood-Unconfigured Good|GHS-Global Hotspare
UBad-Unconfigured Bad|Onln-Online|Offln-Offline|Intf-Interface
Med-Media Type|SED-Self Encryptive Drive|PI-Protection Info
SeSz-Sector Size|Sp-Spun|U-Up|D-Down|T-Transition|F-Foreign
UGUnsp-Unsupported|UGShld-UnConfigured shielded|HSPShld-Hotspare shielded
CFShld-Configured shielded|Cpybck-CopyBack|CBShld-Copyback ShieldedDrive /c0/e252/s4 - Detailed Information :
========================================Drive /c0/e252/s4 State :
=======================
Shield Counter = 0
Media Error Count = 0
Other Error Count = 0
Drive Temperature = 18C (64.40 F)
Predictive Failure Count = 0
S.M.A.R.T alert flagged by drive = NoDrive /c0/e252/s4 Device attributes :
===================================
SN = S5STNF0T901298D
Manufacturer Id = ATA
Model Number = Samsung SSD 870 QVO 4TB
NAND Vendor = NA
WWN = 5002538f4290b3c2
Firmware Revision = SVQ02B6Q
Raw size = 3.638 TB [0x1d1c0beb0 Sectors]
Coerced size = 3.637 TB [0x1d1b00000 Sectors]
Non Coerced size = 3.637 TB [0x1d1b0beb0 Sectors]
Device Speed = 6.0Gb/s
Link Speed = 6.0Gb/s
NCQ setting = Enabled
Write cache = N/A
Logical Sector Size = 512B
Physical Sector Size = 512BDrive /c0/e252/s4 Policies/Settings :
===================================
Enclosure position = 0
Connected Port Number = 4(path0)
Sequence Number = 2
Commissioned Spare = No
Emergency Spare = No
Last Predictive Failure Event Sequence Number = 0
Successful diagnostics completion on = N/A
SED Capable = No
SED Enabled = No
Secured = No
Locked = No
Needs EKM Attention = No
PI Eligible = No
Certified = No
Wide Port Capable = NoPort Information :
================-----------------------------------------
Port Status Linkspeed SAS address
-----------------------------------------0 Active 6.0Gb/s 0x4433221104000000
-----------------------------------------Inquiry Data =
40 00 ff 3f 37 c8 10 00 00 00 00 00 3f 00 00 00
00 00 00 00 35 53 54 53 46 4e 54 30 30 39 32 31
38 39 20 44 20 20 20 20 00 00 00 00 00 00 56 53
30 51 42 32 51 36 61 53 73 6d 6e 75 20 67 53 53
20 44 37 38 20 30 56 51 20 4f 54 34 20 42 20 20
20 20 20 20 20 20 20 20 20 20 20 20 20 20 01 80
01 40 00 2f 00 40 00 02 00 02 07 00 ff 3f 10 00
3f 00 10 fc fb 00 01 01 ff ff ff 0f 00 00 07 00
/opt/MegaRAID/storcli/storcli64 /c0/eall/sall show all
/opt/MegaRAID/storcli/storcli64 /c0/eall/sall show all
Controller = 0
Status = Success
Description = Show Drive Information Succeeded.Drive /c0/e252/s0 :
=================--------------------------------------------------------------------------
EID:Slt DID State DG Size Intf Med SED PI SeSz Model Sp
--------------------------------------------------------------------------
252:0 6 Offln 0 3.637 TB SATA HDD N N 512B ST4000NM000B-2TF100 U
--------------------------------------------------------------------------EID-Enclosure Device ID|Slt-Slot No.|DID-Device ID|DG-DriveGroup
DHS-Dedicated Hot Spare|UGood-Unconfigured Good|GHS-Global Hotspare
UBad-Unconfigured Bad|Onln-Online|Offln-Offline|Intf-Interface
Med-Media Type|SED-Self Encryptive Drive|PI-Protection Info
SeSz-Sector Size|Sp-Spun|U-Up|D-Down|T-Transition|F-Foreign
UGUnsp-Unsupported|UGShld-UnConfigured shielded|HSPShld-Hotspare shielded
CFShld-Configured shielded|Cpybck-CopyBack|CBShld-Copyback ShieldedDrive /c0/e252/s0 - Detailed Information :
========================================Drive /c0/e252/s0 State :
=======================
Shield Counter = 1
Media Error Count = 0
Other Error Count = 7
Drive Temperature = N/A
Predictive Failure Count = 0
S.M.A.R.T alert flagged by drive = NoDrive /c0/e252/s0 Device attributes :
===================================
SN = WX002B46
Manufacturer Id = ATA
Model Number = ST4000NM000B-2TF100
NAND Vendor = NA
WWN = 5000c500ed1ad198
Firmware Revision = TN01
Raw size = 3.638 TB [0x1d1c0beb0 Sectors]
Coerced size = 3.637 TB [0x1d1b00000 Sectors]
Non Coerced size = 3.637 TB [0x1d1b0beb0 Sectors]
Device Speed = 6.0Gb/s
Link Speed = 6.0Gb/s
NCQ setting = Enabled
Write cache = N/A
Logical Sector Size = 512B
Physical Sector Size = 512BDrive /c0/e252/s0 Policies/Settings :
===================================
Drive position = DriveGroup:0, Span:0, Row:3
Enclosure position = 0
Connected Port Number = 0(path0)
Sequence Number = 4
Commissioned Spare = No
Emergency Spare = No
Last Predictive Failure Event Sequence Number = 0
Successful diagnostics completion on = 12-11-2024 0:5:55SED Capable = No
SED Enabled = No
Secured = No
Locked = No
Needs EKM Attention = No
PI Eligible = No
Certified = No
Wide Port Capable = NoPort Information :
================-----------------------------------------
Port Status Linkspeed SAS address
-----------------------------------------0 Active 6.0Gb/s 0x4433221100000000
-----------------------------------------Inquiry Data =
5a 0c ff 3f 37 c8 10 00 00 00 00 00 3f 00 00 00
00 00 00 00 20 20 20 20 20 20 20 20 20 20 20 20
58 57 30 30 42 32 36 34 00 00 00 00 00 00 4e 54
31 30 20 20 20 20 54 53 30 34 30 30 4d 4e 30 30
42 30 32 2d 46 54 30 31 20 30 20 20 20 20 20 20
20 20 20 20 20 20 20 20 20 20 20 20 20 20 10 80
00 40 00 2f 00 40 00 02 00 02 07 00 ff 3f 10 00
3f 00 10 fc fb 00 10 5d ff ff ff 0f 00 00 07 00Drive /c0/e252/s1 :
=================--------------------------------------------------------------------------
EID:Slt DID State DG Size Intf Med SED PI SeSz Model Sp
--------------------------------------------------------------------------
252:1 5 Offln 0 3.637 TB SATA HDD N N 512B ST4000NM000B-2TF100 U
--------------------------------------------------------------------------EID-Enclosure Device ID|Slt-Slot No.|DID-Device ID|DG-DriveGroup
DHS-Dedicated Hot Spare|UGood-Unconfigured Good|GHS-Global Hotspare
UBad-Unconfigured Bad|Onln-Online|Offln-Offline|Intf-Interface
Med-Media Type|SED-Self Encryptive Drive|PI-Protection Info
SeSz-Sector Size|Sp-Spun|U-Up|D-Down|T-Transition|F-Foreign
UGUnsp-Unsupported|UGShld-UnConfigured shielded|HSPShld-Hotspare shielded
CFShld-Configured shielded|Cpybck-CopyBack|CBShld-Copyback ShieldedDrive /c0/e252/s1 - Detailed Information :
========================================Drive /c0/e252/s1 State :
=======================
Shield Counter = 1
Media Error Count = 0
Other Error Count = 7
Drive Temperature = 19C (66.20 F)
Predictive Failure Count = 0
S.M.A.R.T alert flagged by drive = NoDrive /c0/e252/s1 Device attributes :
===================================
SN = WX001S0P
Manufacturer Id = ATA
Model Number = ST4000NM000B-2TF100
NAND Vendor = NA
WWN = 5000c500ed11a0bb
Firmware Revision = TN01
Raw size = 3.638 TB [0x1d1c0beb0 Sectors]
Coerced size = 3.637 TB [0x1d1b00000 Sectors]
Non Coerced size = 3.637 TB [0x1d1b0beb0 Sectors]
Device Speed = 6.0Gb/s
Link Speed = 6.0Gb/s
NCQ setting = Enabled
Write cache = N/A
Logical Sector Size = 512B
Physical Sector Size = 512BDrive /c0/e252/s1 Policies/Settings :
===================================
Drive position = DriveGroup:0, Span:0, Row:2
Enclosure position = 0
Connected Port Number = 1(path0)
Sequence Number = 4
Commissioned Spare = No
Emergency Spare = No
Last Predictive Failure Event Sequence Number = 0
Successful diagnostics completion on = 12-11-2024 0:5:55SED Capable = No
SED Enabled = No
Secured = No
Locked = No
Needs EKM Attention = No
PI Eligible = No
Certified = No
Wide Port Capable = NoPort Information :
================-----------------------------------------
Port Status Linkspeed SAS address
-----------------------------------------0 Active 6.0Gb/s 0x4433221101000000
-----------------------------------------Inquiry Data =
5a 0c ff 3f 37 c8 10 00 00 00 00 00 3f 00 00 00
00 00 00 00 20 20 20 20 20 20 20 20 20 20 20 20
58 57 30 30 53 31 50 30 00 00 00 00 00 00 4e 54
31 30 20 20 20 20 54 53 30 34 30 30 4d 4e 30 30
42 30 32 2d 46 54 30 31 20 30 20 20 20 20 20 20
20 20 20 20 20 20 20 20 20 20 20 20 20 20 10 80
00 40 00 2f 00 40 00 02 00 02 07 00 ff 3f 10 00
3f 00 10 fc fb 00 10 5d ff ff ff 0f 00 00 07 00Drive /c0/e252/s2 :
=================--------------------------------------------------------------------------
EID:Slt DID State DG Size Intf Med SED PI SeSz Model Sp
--------------------------------------------------------------------------
252:2 4 Offln 0 3.637 TB SATA HDD N N 512B ST4000NM000B-2TF100 U
--------------------------------------------------------------------------EID-Enclosure Device ID|Slt-Slot No.|DID-Device ID|DG-DriveGroup
DHS-Dedicated Hot Spare|UGood-Unconfigured Good|GHS-Global Hotspare
UBad-Unconfigured Bad|Onln-Online|Offln-Offline|Intf-Interface
Med-Media Type|SED-Self Encryptive Drive|PI-Protection Info
SeSz-Sector Size|Sp-Spun|U-Up|D-Down|T-Transition|F-Foreign
UGUnsp-Unsupported|UGShld-UnConfigured shielded|HSPShld-Hotspare shielded
CFShld-Configured shielded|Cpybck-CopyBack|CBShld-Copyback ShieldedDrive /c0/e252/s2 - Detailed Information :
========================================Drive /c0/e252/s2 State :
=======================
Shield Counter = 1
Media Error Count = 0
Other Error Count = 6
Drive Temperature = 19C (66.20 F)
Predictive Failure Count = 0
S.M.A.R.T alert flagged by drive = NoDrive /c0/e252/s2 Device attributes :
===================================
SN = WX0068CJ
Manufacturer Id = ATA
Model Number = ST4000NM000B-2TF100
NAND Vendor = NA
WWN = 5000c500ed66d391
Firmware Revision = TN01
Raw size = 3.638 TB [0x1d1c0beb0 Sectors]
Coerced size = 3.637 TB [0x1d1b00000 Sectors]
Non Coerced size = 3.637 TB [0x1d1b0beb0 Sectors]
Device Speed = 6.0Gb/s
Link Speed = 6.0Gb/s
NCQ setting = Enabled
Write cache = N/A
Logical Sector Size = 512B
Physical Sector Size = 512BDrive /c0/e252/s2 Policies/Settings :
===================================
Drive position = DriveGroup:0, Span:0, Row:1
Enclosure position = 0
Connected Port Number = 2(path0)
Sequence Number = 4
Commissioned Spare = No
Emergency Spare = No
Last Predictive Failure Event Sequence Number = 0
Successful diagnostics completion on = 12-11-2024 0:5:55SED Capable = No
SED Enabled = No
Secured = No
Locked = No
Needs EKM Attention = No
PI Eligible = No
Certified = No
Wide Port Capable = NoPort Information :
================-----------------------------------------
Port Status Linkspeed SAS address
-----------------------------------------0 Active 6.0Gb/s 0x4433221102000000
-----------------------------------------Inquiry Data =
5a 0c ff 3f 37 c8 10 00 00 00 00 00 3f 00 00 00
00 00 00 00 20 20 20 20 20 20 20 20 20 20 20 20
58 57 30 30 38 36 4a 43 00 00 00 00 00 00 4e 54
31 30 20 20 20 20 54 53 30 34 30 30 4d 4e 30 30
42 30 32 2d 46 54 30 31 20 30 20 20 20 20 20 20
20 20 20 20 20 20 20 20 20 20 20 20 20 20 10 80
00 40 00 2f 00 40 00 02 00 02 07 00 ff 3f 10 00
3f 00 10 fc fb 00 10 5d ff ff ff 0f 00 00 07 00Drive /c0/e252/s3 :
=================--------------------------------------------------------------------------
EID:Slt DID State DG Size Intf Med SED PI SeSz Model Sp
--------------------------------------------------------------------------
252:3 3 UBad - 3.637 TB SATA HDD N N 512B ST4000NM000B-2TF100 U
--------------------------------------------------------------------------EID-Enclosure Device ID|Slt-Slot No.|DID-Device ID|DG-DriveGroup
DHS-Dedicated Hot Spare|UGood-Unconfigured Good|GHS-Global Hotspare
UBad-Unconfigured Bad|Onln-Online|Offln-Offline|Intf-Interface
Med-Media Type|SED-Self Encryptive Drive|PI-Protection Info
SeSz-Sector Size|Sp-Spun|U-Up|D-Down|T-Transition|F-Foreign
UGUnsp-Unsupported|UGShld-UnConfigured shielded|HSPShld-Hotspare shielded
CFShld-Configured shielded|Cpybck-CopyBack|CBShld-Copyback ShieldedDrive /c0/e252/s3 - Detailed Information :
========================================Drive /c0/e252/s3 State :
=======================
Shield Counter = 0
Media Error Count = 0
Other Error Count = 0
Drive Temperature = 17C (62.60 F)
Predictive Failure Count = 0
S.M.A.R.T alert flagged by drive = NoDrive /c0/e252/s3 Device attributes :
===================================
SN = WX003NG7
Manufacturer Id = ATA
Model Number = ST4000NM000B-2TF100
NAND Vendor = NA
WWN = 5000c500ed66e2f9
Firmware Revision = TN01
Raw size = 3.638 TB [0x1d1c0beb0 Sectors]
Coerced size = 3.637 TB [0x1d1b00000 Sectors]
Non Coerced size = 3.637 TB [0x1d1b0beb0 Sectors]
Device Speed = 6.0Gb/s
Link Speed = 6.0Gb/s
NCQ setting = Enabled
Write cache = N/A
Logical Sector Size = 512B
Physical Sector Size = 512BDrive /c0/e252/s3 Policies/Settings :
===================================
Enclosure position = 0
Connected Port Number = 3(path0)
Sequence Number = 7
Commissioned Spare = No
Emergency Spare = No
Last Predictive Failure Event Sequence Number = 0
Successful diagnostics completion on = N/A
SED Capable = No
SED Enabled = No
Secured = No
Locked = No
Needs EKM Attention = No
PI Eligible = No
Certified = No
Wide Port Capable = NoPort Information :
================-----------------------------------------
Port Status Linkspeed SAS address
-----------------------------------------0 Active 6.0Gb/s 0x4433221103000000
-----------------------------------------Inquiry Data =
5a 0c ff 3f 37 c8 10 00 00 00 00 00 3f 00 00 00
00 00 00 00 20 20 20 20 20 20 20 20 20 20 20 20
58 57 30 30 4e 33 37 47 00 00 00 00 00 00 4e 54
31 30 20 20 20 20 54 53 30 34 30 30 4d 4e 30 30
42 30 32 2d 46 54 30 31 20 30 20 20 20 20 20 20
20 20 20 20 20 20 20 20 20 20 20 20 20 20 10 80
00 40 00 2f 00 40 00 02 00 02 07 00 ff 3f 10 00
3f 00 10 fc fb 00 10 5d ff ff ff 0f 00 00 07 00Drive /c0/e252/s4 :
=================------------------------------------------------------------------------------
EID:Slt DID State DG Size Intf Med SED PI SeSz Model Sp
------------------------------------------------------------------------------
252:4 2 JBOD - 3.637 TB SATA SSD N N 512B Samsung SSD 870 QVO 4TB U
------------------------------------------------------------------------------EID-Enclosure Device ID|Slt-Slot No.|DID-Device ID|DG-DriveGroup
DHS-Dedicated Hot Spare|UGood-Unconfigured Good|GHS-Global Hotspare
UBad-Unconfigured Bad|Onln-Online|Offln-Offline|Intf-Interface
Med-Media Type|SED-Self Encryptive Drive|PI-Protection Info
SeSz-Sector Size|Sp-Spun|U-Up|D-Down|T-Transition|F-Foreign
UGUnsp-Unsupported|UGShld-UnConfigured shielded|HSPShld-Hotspare shielded
CFShld-Configured shielded|Cpybck-CopyBack|CBShld-Copyback ShieldedDrive /c0/e252/s4 - Detailed Information :
========================================Drive /c0/e252/s4 State :
=======================
Shield Counter = 0
Media Error Count = 0
Other Error Count = 0
Drive Temperature = 18C (64.40 F)
Predictive Failure Count = 0
S.M.A.R.T alert flagged by drive = NoDrive /c0/e252/s4 Device attributes :
===================================
SN = S5STNF0T901298D
Manufacturer Id = ATA
Model Number = Samsung SSD 870 QVO 4TB
NAND Vendor = NA
WWN = 5002538f4290b3c2
Firmware Revision = SVQ02B6Q
Raw size = 3.638 TB [0x1d1c0beb0 Sectors]
Coerced size = 3.637 TB [0x1d1b00000 Sectors]
Non Coerced size = 3.637 TB [0x1d1b0beb0 Sectors]
Device Speed = 6.0Gb/s
Link Speed = 6.0Gb/s
NCQ setting = Enabled
Write cache = N/A
Logical Sector Size = 512B
Physical Sector Size = 512BDrive /c0/e252/s4 Policies/Settings :
===================================
Enclosure position = 0
Connected Port Number = 4(path0)
Sequence Number = 2
Commissioned Spare = No
Emergency Spare = No
Last Predictive Failure Event Sequence Number = 0
Successful diagnostics completion on = N/A
SED Capable = No
SED Enabled = No
Secured = No
Locked = No
Needs EKM Attention = No
PI Eligible = No
Certified = No
Wide Port Capable = NoPort Information :
================-----------------------------------------
Port Status Linkspeed SAS address
-----------------------------------------0 Active 6.0Gb/s 0x4433221104000000
-----------------------------------------Inquiry Data =
40 00 ff 3f 37 c8 10 00 00 00 00 00 3f 00 00 00
00 00 00 00 35 53 54 53 46 4e 54 30 30 39 32 31
38 39 20 44 20 20 20 20 00 00 00 00 00 00 56 53
30 51 42 32 51 36 61 53 73 6d 6e 75 20 67 53 53
20 44 37 38 20 30 56 51 20 4f 54 34 20 42 20 20
20 20 20 20 20 20 20 20 20 20 20 20 20 20 01 80
01 40 00 2f 00 40 00 02 00 02 07 00 ff 3f 10 00
3f 00 10 fc fb 00 01 01 ff ff ff 0f 00 00 07 00
Drive Information :
=================------------------------------------------------------------------------------
EID:Slt DID State DG Size Intf Med SED PI SeSz Model Sp
------------------------------------------------------------------------------
252:0 6 Offln 0 3.637 TB SATA HDD N N 512B ST4000NM000B-2TF100 U
252:1 5 Offln 0 3.637 TB SATA HDD N N 512B ST4000NM000B-2TF100 U
252:2 4 Offln 0 3.637 TB SATA HDD N N 512B ST4000NM000B-2TF100 U
252:3 3 UBad - 3.637 TB SATA HDD N N 512B ST4000NM000B-2TF100 U
252:4 2 JBOD - 3.637 TB SATA SSD N N 512B Samsung SSD 870 QVO 4TB U
------------------------------------------------------------------------------
根据输出信息,以下是关于 /dev/sdb 和其他驱动器的详细解释:
Drive Information 部分:
EID:Slt: 这表示 Enclosure Device ID(机架设备 ID)和 Slot Number(插槽编号)。
DID: 这是设备 ID,表示该磁盘的唯一标识符。
State: 这是磁盘的状态,包括:
Offln: 磁盘处于 离线 状态,不能被 RAID 控制器或系统访问。
UBad: 表示该磁盘是 未配置的坏磁盘,通常表示磁盘出现故障或损坏。
JBOD: 代表磁盘是 简单磁盘(Just a Bunch Of Disks),没有加入 RAID 阵列。
DG: Disk Group,磁盘所属的磁盘组。数字 0 表示这些磁盘都属于同一个磁盘组(即 RAID 阵列中的同一组磁盘)。
Size: 每个磁盘的容量,3.637 TB。
Intf: 接口类型,这里为 SATA,表示这些磁盘是通过 SATA 接口连接的。
Med: 存储介质类型。HDD 表示是机械硬盘(硬盘驱动器),SSD 表示是固态硬盘(固态驱动器)。
SED: 是否为自加密硬盘(Self Encrypting Drive)。N 表示不是自加密硬盘。
PI: 是否启用保护信息(Protection Information)。N 表示没有启用。
SeSz: 每个扇区的大小,通常为 512B。
Model: 磁盘的型号:
ST4000NM000B-2TF100:这是 3.637 TB 容量的 Seagate SATA 硬盘。
Samsung SSD 870 QVO 4TB:这是 4TB 容量的三星 SSD 固态硬盘。
Sp: 设备状态标志,U 表示设备是 启用(Up) 状态。
详细分析:
磁盘 252:0, 252:1, 252:2: 这些是 SATA HDD 硬盘,并且它们的状态是 Offln(离线)。这意味着它们未能正常连接或未被 RAID 控制器识别。
磁盘 252:3: 这个磁盘的状态是 UBad(未配置的坏磁盘)。这表示该磁盘存在严重故障,可能是硬件损坏,无法重新加入 RAID 阵列。
磁盘 252:4: 这是 SATA SSD 磁盘,状态是 JBOD(简单磁盘)。这表示该 SSD 尚未加入 RAID 阵列,它作为独立磁盘存在。
结论:
目前,三个 SATA HDD 磁盘处于离线状态,不能参与 RAID 阵列操作。
另一个 SATA HDD 磁盘的状态为坏磁盘,无法使用。
SATA SSD 磁盘尚未加入 RAID 阵列,作为单独的磁盘(JBOD)存在。
这些磁盘的离线或故障状态可能会导致 RAID 阵列无法正常工作。如果该阵列依赖于这些磁盘,它将处于降级或无法恢复的状态。您需要检查这些离线或坏磁盘的硬件连接、状态和是否需要替换。
相关文章:

raid 状态查看 storcli64
场景 当磁盘报错的时候使用该命令排查 fdisk -l /dev/sdb fdisk: cannot open /dev/sdb: Input/output error进一步使用 smartctl 排查 smartctl -a /dev/sdb 输出 smartctl 7.1 2019-12-30 r5022 [x86_64-linux-5.4.0-144-generic] (local build) Copyright (C) 2002-19, B…...

时间管理系统|Java|SSM|JSP|
【技术栈】 1⃣️:架构: B/S、MVC 2⃣️:系统环境:Windowsh/Mac 3⃣️:开发环境:IDEA、JDK1.8、Maven、Mysql5.7 4⃣️:技术栈:Java、Mysql、SSM、Mybatis-Plus、JSP、jquery,html 5⃣️数据库可…...

使用Docker启用MySQL8.0.11
目录 一、Docker减小镜像大小的方式 1、基础镜像选择 2、减少镜像层数 3、清理无用文件和缓存 4、优化文件复制(COPY和ADD指令) 二、Docker镜像多阶段构建 1、什么是dockers镜像多阶段构建 1.1 概念介绍 1.2 构建过程和优势 2、怎样在Dockerfil…...

Qt之修改窗口标题、图标以及自定义标题栏(九)
Qt开发 系列文章 - titles-icons-titlebars(九) 目录 前言 一、修改标题 二、添加图标 三、更换标题栏 1.效果演示 2.创建标题栏类 3.定义相关函数 4.使用标题栏类 总结 前言 在我们利用Qt设计软件时,经常需要修改窗口标题、更改软…...

每天40分玩转Django:Django测试
Django测试 一、今日学习内容概述 学习模块重要程度主要内容测试基础⭐⭐⭐⭐⭐TestCase、断言方法模型测试⭐⭐⭐⭐⭐模型方法、数据验证视图测试⭐⭐⭐⭐请求处理、响应验证表单测试⭐⭐⭐⭐表单验证、数据处理覆盖率测试⭐⭐⭐⭐coverage配置、报告生成 二、测试基础示例…...

JS子页面调用父页面函数,监听刷新事件
目录 1.子页面调用父页面的函数 2.监听刷新事件 1.子页面调用父页面的方法 我们先来说说什么是子页面,在我这里子页面就是域名一样,然后使用iframe引入的页面就是我所说的子页面,为什么需要用到这个功能,是为了实现跨页面交互与…...

Element@2.15.14-tree checkStrictly 状态实现父项联动子项,实现节点自定义编辑、新增、删除功能
背景:现在有一个新需求,需要借助树结构来实现词库的分类管理,树的节点是不同的分类,不同的分类可以有自己的词库,所以父子节点是互不影响的;同样为了选择的方便性,提出了新需求,选择…...

详细介绍如何使用rapidjson读取json文件
本文主要详细介绍如何使用rapidjson库来实现.json文件的读取,分为相关基础介绍、结合简单示例进行基础介绍、结合复杂示例进行详细的函数实现介绍等三部分。 一、相关基础 1、Json文件中的{} 和 [] 在 JSON 文件中,{} 和 [] 分别表示不同的数据结构&…...

【Qt】显示类控件:QLabel、QLCDNumber、QProgressBar、QCalendarWidget
目录 QLabel QFrame 例子: textFormat pixmap、scaledContents alignment wordWrap、indent、margin buddy QLCDNumber 例子: QTimer QProgressBar 例子: QCalendarWidget 例子: QLabel 标签控件,用来显示…...

设计模式-访问者设计模式
介绍 访问者模式(Visitor),表示一个作用于某对象结构中的各元素的操作,它使你可以在不改变个元素的类的前提下定义作用于这些元素的新操作。 问题:在一个机构里面有两种员工,1.Teacher 2.Engineer 员…...

Spring框架IOC
目录 一、Spring框架的介绍 1.1 Spring框架的概述 1.2 Spring框架的优点 二、Spring的核心 IOC技术 2.1 什么是IOC 2.2 IOC的程序入门 2.3 IOC技术总结 2.4 Spring框架的Bean管理的配置文件方式 一、Spring框架的介绍 1.1 Spring框架的概述 Spring是一个开放源代码的…...

有哪些免费的 ERP 软件可供选择?哪些 ERP 软件使用体验较好?
想找个 “免费” 的 ERP 软件? 咱得知道,ERP 那可是涉及财务、人力、供应链、采购、销售等好多方面的重要企业软件。功能这么全,能免费才怪呢!真要是有免费的,早就火遍大江南北,说不定把市场都垄断了&…...

思科CCNA认证都学什么考什么?
关注 工 仲 好:IT运维大本营CCNA考试要学的东西很多,你不要看它只是一个初级认证,但是它的专业内容知识是不少的,你想要学好也是需要下一番苦功的。 那么考CCNA需要学哪些东西呢?下面我们就来了解一下吧。 01、考CCN…...

模型部署学习笔记——模型部署关键知识点总结
模型部署学习笔记——模型部署关键知识点总结 模型部署学习笔记——模型部署关键知识点总结1. CUDA中Grid和Block的定义是什么?Shared Memory的定义?Bank Conflict的定义?Stream和Event的定义?2. TensorRT的工作流程?3…...

22智能 狄克斯特拉算法复习
狄克斯特拉算法 图 根据边有无方向分为: 有向图、无向图 根据边有无权重变量分为: 有权图、无权图 根据顶点是否连通分为: 连通图和非连通图入度:表示有多少条边指向该顶点出度:表示有多少条边从该顶点指出算法步骤&a…...

首个!艾灵参编的工业边缘计算国家标准正式发布
近日,艾灵参与编制的《面向工业应用的边缘计算 应用指南》(以下简称《标准》)国家标准正式发布,将于2025年5月1日起实施。这一里程碑式的成果,不仅标志着我国在工业边缘计算技术标准化领域取得了重大突破,成…...

curl也支持断点续传
curl断点续传 访问外网资源,特别是Github上比较大的资源,例如,笔者遇到的calico发布包,经常会遇到在浏览器上下载半途中断。 那么支持断点续传的下载工具,就是应对这种情况的好帮手! 简单的断点续传工具…...

交换机链路聚合(手动负载分担模式)(eNSP)
目录 交换机SW_C配置: 交换机-PC划分vlan: 交换机-交换机端口聚合: 交换机SW_D配置: 交换机-PC划分vlan: 交换机-交换机端口聚合: 验证: 链路聚合的端口清除: 交换机端口聚合的存在意义主要有以下几点: 增加带宽 提高冗余性和可靠性 实现负载均衡 降低成本 …...

jmeter 接口性能测试 学习笔记
目录 说明工具准备工具配置jmeter 界面汉化配置汉化步骤汉化结果图 案例1:测试接口接口准备线程组添加线程组配置线程组值线程数(Number of Threads)Ramp-Up 时间(Ramp-Up Period)循环次数(Loop Count&…...

`HashMap`、`Hashtable` 和 `HashSet`的区别
HashMap、Hashtable 和 HashSet 都是 Java 中常用的集合类,它们的功能和实现有所不同,尽管它们都使用哈希表(hash table)作为底层数据结构。以下是它们之间的主要区别: 1. HashMap 和 Hashtable 的区别 特性HashMapH…...

Arduino中解析JSON数据
JSON JSON(JavaScript Object Notation,即JavaScript对象表示法)是一种广泛采用的开放标准文件格式与数据交换格式。它兼具人类可读性和机器易解析性,使得数据的编写、阅读、生成及解析都变得十分便捷。JSON的设计不依赖于特定编…...

linux----文件访问(c语言)
linux文件访问相关函数 打开文件函数 - open 函数原型:int open(const char *pathname, int flags, mode_t mode);参数说明: pathname:这是要打开的文件的路径名,可以是绝对路径或者相对路径。例如,"/home/user/…...

源码分析之Openlayers中MousePosition鼠标位置控件
概述 本文主要介绍 Openlayers 中的MousePosition鼠标位置控件,该控件会创建一个元素在页面的右上方用来实时显示鼠标光标的位置坐标。该控件在实际应用很有效,可以实时获取鼠标位置,但是一般控件元素都会自定义。 源码分析 MousePosition…...

以ATTCK为例构建网络安全知识图
ATT&CK(Adversarial Tactics, Techniques, and Common Knowledge )是一个攻击行为知识库和模型,主要应用于评估攻防能力覆盖、APT情报分析、威胁狩猎及攻击模拟等领域。本文简单介绍ATT&CK相关的背景概念,并探讨通过ATT&a…...

myexcel的使用
参考: (1)api文档:https://www.bookstack.cn/read/MyExcel-2.x/624d8ce73162300b.md (2)源代码: https://github.com/liaochong/myexcel/issues 我: (1)m…...

Unity 上好用的插件
PlayerMaker BehaviorDesigner Cinemachine Timeline Hybrid Addressable AssetBundle Blower Simple Zoom 大地图上缩放和平移使用ScrollRect的好效果实现...

Vivado - 远程调试 + 远程综合实现 + vmWare网络配置 + NFS 文件共享 + 使用 VIO 核
目录 1. 简介 2. VIO 配置 2.1 VIO IP 2.2 VIO 对比 ILA 3. VIO 示例 3.1 Led 3.1.1 工程配置 3.1.2 效果展示 3.2 Key 3.2.1 工程配置 3.2.1 效果展示 3.3 门控触发 3.3.1 工程配置 3.3.2 效果展示 4. 远程调试 4.1 配置目标主机 4.2 配置本机 4.3 vmWare 网…...

双臂机器人
目录 一、双臂机器人简介 二、双臂机器人系统的组成 三、双臂机器人面临的主要挑战 3.1 协调与协同控制问题 3.2 力控制与柔顺性问题 3.3 路径规划与轨迹优化问题 3.4 感知与环境交互 3.5 人机协作问题 3.6 能源与效率问题 3.7 稳定性与可靠性问题 四、双臂机器人…...

【Lua热更新】上篇
Lua 热更新 - 上篇 下篇链接:【Lua热更新】下篇 文章目录 Lua 热更新 - 上篇一、AssetBundle1.理论2. AB包资源加载 二、Lua 语法1. 简单数据类型2.字符串操作3.运算符4.条件分支语句5.循环语句6.函数7. table数组8.迭代器遍历9.复杂数据类型 - 表9.1字典9.2类9.3…...

Ubuntu批量修改文件名
文章目录 批量重命名文件:Ubuntu下使用find命令结合sed和mv参考 批量重命名文件:Ubuntu下使用find命令结合sed和mv 在日常开发和文件管理中,有时我们需要批量重命名一批文件,比如将文件名中的某个特定字符串替换为另一个字符串。…...