반응형
Notice
Recent Posts
Recent Comments
Link
«   2024/12   »
1 2 3 4 5 6 7
8 9 10 11 12 13 14
15 16 17 18 19 20 21
22 23 24 25 26 27 28
29 30 31
Archives
Today
Total
관리 메뉴

/var/log/messages

dmesg가 출력할 수 있는 메세지 종류-I/O error 본문

SUSE

dmesg가 출력할 수 있는 메세지 종류-I/O error

로만로만 2024. 4. 2. 09:39
반응형

I/O 오류는 입력/출력 작업 중에 문제가 발생했음을 나타냅니다.

 

예시:
[127491.711407] blk_update_request: I/O error, dev sde, sector 3907026080

[127491.719699] sd 0:0:4:0: [sde] FAILED Result: hostbyte=DID_OK driverbyte=DRIVER_SENSE

[127491.719717] sd 0:0:4:0: [sde] Sense Key : Aborted Command [current]

[127491.719726] sd 0:0:4:0: [sde] Add. Sense: Logical block guard check failed

[127491.719734] sd 0:0:4:0: [sde] CDB: Read(32)

[127491.719742] sd 0:0:4:0: [sde] CDB[00]: 7f 00 00 00 00 00 00 18 00 09 20 00 00 00 00 00

[127491.719750] sd 0:0:4:0: [sde] CDB[10]: e8 e0 7c a0 e8 e0 7c a0 00 00 00 00 00 00 00 08

[127491.719757] blk_update_request: I/O error, dev sde, sector 3907026080

[127491.719764] Buffer I/O error on dev sde, logical block 488378260, async page read

[127497.440222] sd 0:0:5:0: [sdf] FAILED Result: hostbyte=DID_OK driverbyte=DRIVER_SENSE

[127497.440240] sd 0:0:5:0: [sdf] Sense Key : Aborted Command [current]

[127497.440249] sd 0:0:5:0: [sdf] Add. Sense: Logical block guard check failed

[127497.440258] sd 0:0:5:0: [sdf] CDB: Read(32)

[127497.440266] sd 0:0:5:0: [sdf] CDB[00]: 7f 00 00 00 00 00 00 18 00 09 20 00 00 00 00 00

[127497.440273] sd 0:0:5:0: [sdf] CDB[10]: 00 01 a0 00 00 01 a0 00 00 00 00 00 00 00 00 08

[127497.440280] blk_update_request: I/O error, dev sdf, sector 106496

[127497.901432] sd 0:0:5:0: [sdf] FAILED Result: hostbyte=DID_OK driverbyte=DRIVER_SENSE

[127497.901449] sd 0:0:5:0: [sdf] Sense Key : Aborted Command [current]

[127497.901458] sd 0:0:5:0: [sdf] Add. Sense: Logical block guard check failed

[127497.901467] sd 0:0:5:0: [sdf] CDB: Read(32)

[127497.901475] sd 0:0:5:0: [sdf] CDB[00]: 7f 00 00 00 00 00 00 18 00 09 20 00 00 00 00 00

[127497.901482] sd 0:0:5:0: [sdf] CDB[10]: e8 e0 7c a0 e8 e0 7c a0 00 00 00 00 00 00 00 08

[127497.901489] blk_update_request: I/O error, dev sdf, sector 3907026080

[127497.911003] sd 0:0:5:0: [sdf] FAILED Result: hostbyte=DID_OK driverbyte=DRIVER_SENSE

[127497.911019] sd 0:0:5:0: [sdf] Sense Key : Aborted Command [current]

[127497.911029] sd 0:0:5:0: [sdf] Add. Sense: Logical block guard check failed

[127497.911037] sd 0:0:5:0: [sdf] CDB: Read(32)

[127497.911045] sd 0:0:5:0: [sdf] CDB[00]: 7f 00 00 00 00 00 00 18 00 09 20 00 00 00 00 00

[127497.911052] sd 0:0:5:0: [sdf] CDB[10]: e8 e0 7c a0 e8 e0 7c a0 00 00 00 00 00 00 00 08

[127497.911059] blk_update_request: I/O error, dev sdf, sector 3907026080

[127497.911067] Buffer I/O error on dev sdf, logical block 488378260, async page read

 

해당 로그 메세지는 스토리지 장치(sde sdf)와의 통신 중 발생한 I/O(Input/Output) 오류를 나타냅니다. 특히, "Logical block guard check failed" 메시지는 데이터 무결성 검사 실패를 의미합니다. 이는 스토리지 장치가 데이터를 올바르게 읽거나 쓰지 못했음을 나타내며, 여러 원인으로 인해 발생할 수 있습니다.

 

시도 해볼 수 있는 조치는 스토리지의 물리적 상태, 파일시스템 체크 명령어로 검사하기, smartctl로 상태 확인, 펌웨어 업데이트 혹은 스토리지 교체 등이 있겠습니다.