
我最近購買了 5 個二手 SAS HDD,每個使用了大約 35 天。與購買新 HDD 相比,這很划算,但有點混淆,因為我最初以為它們是 SATA。經過一番調查,我購買了一個 RAID 控制器(將其用作 HBA),PERC H710。然而,安裝完所有內容後,我注意到這些 SAS HDD 在空閒時會產生奇怪的咔嗒聲。我發現五張包裝完好的磁碟不太可能都出現同樣的問題,特別是考慮到賣家的良好聲譽。我記錄了噪音以供參考:
離伺服器較近: https://www.youtube.com/shorts/DFqMGDFCObU
在另一個房間(牆的另一邊): https://www.youtube.com/shorts/4jHKJnIhp2Q PS:從影片中聽到聲音可能會很困難,尤其是在某些 SATA HDD 正在運行的情況下。伺服器正在生產中,因此正在對其他 SATA HDD 進行讀取/寫入操作。
以下是有關其中之一的一些資訊:
=== START OF INFORMATION SECTION ===
Vendor: SEAGATE
Product: ST33000650SS
Revision: RS16
Compliance: SPC-4
User Capacity: 3,000,592,982,016 bytes [3.00 TB]
Logical block size: 512 bytes
Rotation Rate: 7200 rpm
Form Factor: 3.5 inches
Logical Unit id: 0x5000c50055ad05e3
Serial number: Z295A8NC
Device type: disk
Transport protocol: SAS (SPL-3)
Local Time is: Wed Feb 21 17:40:10 2024 EST
SMART support is: Available - device has SMART capability.
SMART support is: Enabled
Temperature Warning: Disabled or Not Supported
=== START OF READ SMART DATA SECTION ===
SMART Health Status: OK
Current Drive Temperature: 48 C
Drive Trip Temperature: 68 C
Accumulated power on time, hours:minutes 63899:38
Manufactured in week 43 of year 2012
Specified cycle count over device lifetime: 10000
Accumulated start-stop cycles: 70
Specified load-unload count over device lifetime: 300000
Accumulated load-unload cycles: 12281
Elements in grown defect list: 0
以前有人遇到過類似的 SAS HDD 問題嗎?這是 SAS 的正常行為嗎?任何建議將不勝感激!
答案1
運行以下命令並等待其完成後,我們得到“已糾正的總讀取錯誤=1809673244”,並且驅動程式停止發出這些噪音。
smartctl -tlong /dev/sdX
完成後的輸出如下:
root@abc:~# smartctl -a /dev/sda
smartctl 7.2 2020-12-30 r5155 [x86_64-linux-5.10.0-27-amd64] (local build)
Copyright (C) 2002-20, Bruce Allen, Christian Franke, www.smartmontools.org
=== START OF INFORMATION SECTION ===
Vendor: SEAGATE
Product: ST33000650SS
Revision: RS16
Compliance: SPC-4
User Capacity: 3,000,592,982,016 bytes [3.00 TB]
Logical block size: 512 bytes
Rotation Rate: 7200 rpm
Form Factor: 3.5 inches
Logical Unit id: 0x5000c50055ad05e3
Serial number: Z295A8NC
Device type: disk
Transport protocol: SAS (SPL-3)
Local Time is: Thu Feb 22 09:40:48 2024 EST
SMART support is: Available - device has SMART capability.
SMART support is: Enabled
Temperature Warning: Disabled or Not Supported
=== START OF READ SMART DATA SECTION ===
SMART Health Status: OK
Current Drive Temperature: 43 C
Drive Trip Temperature: 68 C
Accumulated power on time, hours:minutes 63915:46
Manufactured in week 43 of year 2012
Specified cycle count over device lifetime: 10000
Accumulated start-stop cycles: 70
Specified load-unload count over device lifetime: 300000
Accumulated load-unload cycles: 12283
Elements in grown defect list: 0
Vendor (Seagate Cache) information
Blocks sent to initiator = 3623441469
Blocks received from initiator = 3686219937
Blocks read from cache and sent to initiator = 272821687
Number of read and write commands whose size <= segment size = 36308955
Number of read and write commands whose size > segment size = 15
Vendor (Seagate/Hitachi) factory information
number of hours powered up = 63915.77
number of minutes until next internal SMART test = 55
Error counter log:
Errors Corrected by Total Correction Gigabytes Total
ECC rereads/ errors algorithm processed uncorrected
fast | delayed rewrites corrected invocations [10^9 bytes] errors
read: 1809673244 0 0 1809673244 0 30248.740 0
write: 0 0 0 0 0 8554.361 0
verify: 2794696942 0 0 2794696942 0 1042801.370 0
Non-medium error count: 59813
SMART Self-test log
Num Test Status segment LifeTime LBA_first_err [SK ASC ASQ]
Description number (hours)
# 1 Background long Completed 32 63907 - [- - -]
# 2 Background short Completed 32 63890 - [- - -]
# 3 Background short Completed 32 23 - [- - -]
# 4 Background long Completed 32 22 - [- - -]
Long (extended) Self-test duration: 27600 seconds [460.0 minutes]
root@abc:~#
我希望這可以幫助遇到相同問題的人!