Operating System - HP-UX
1832300 Members
2341 Online
110041 Solutions
New Discussion

about the err messages in my syslog.log

 
SOLVED
Go to solution
leyearn
Regular Advisor

about the err messages in my syslog.log

Dec 31 12:03:22 NMC1_JL vmunix: SCSI: Read error -- dev: b 31 0xa000, errno: 12,
Dec 31 12:03:22 NMC1_JL vmunix: blkno: 179472, sectno: 358944, offset: .

what's rong with my system
my system is hp9000 D370
os is 10.20
6 REPLIES 6
Elmar P. Kolkman
Honored Contributor
Solution

Re: about the err messages in my syslog.log

These errors might mean you have a disk that is breaking down, or a flaky SCSI cable, or if you use an external disk cabinet, a problem in that cabinet, like a flaky power supply.

What you should do is check the syslog.log file for more messages like these ('grep "SCSI: Read" /var/adm/syslog/syslog.log') and if there are many, start checking your backups and looking for a new disk if the values between dev: and errno: are the same (they can be translated to the device: block device with major number 31 and minor number 0xa000, to translate that to the human readable form, go to /dev/dsk and do:
ls -l | grep '31.*a000')
Every problem has at least one solution. Only some solutions are harder to find.
Sunil Sharma_1
Honored Contributor

Re: about the err messages in my syslog.log

Hi,

Error is coming from SCSI Subsystem.
go to /dev/dsk directory and find out device which has major number 31 and minor number 0xa000

problem is related to this disk.

Regards
Sunil
*** Dream as if you'll live forever. Live as if you'll die today ***
leyearn
Regular Advisor

Re: about the err messages in my syslog.log

now i ll under the /dev/dsk directory
the following messages :
#[/dev/dsk]ll
total 0
brw-r----- 1 bin sys 31 0x00a000 Jun 10 1996 c0t10d0
brw-r----- 1 bin sys 31 0x001000 Sep 6 2000 c0t1d0
brw-r----- 1 bin sys 31 0x005000 Dec 17 13:51 c0t5d0
brw-r----- 1 bin sys 31 0x008000 Jun 10 1996 c0t8d0
brw-r----- 1 bin sys 31 0x009000 Jun 11 1996 c0t9d0
brw-r----- 1 bin sys 31 0x012000 Jun 10 1996 c1t2d0
brw-r----- 1 bin sys 31 0x030000 Jun 10 1996 c3t0d0
brw-r----- 1 bin sys 31 0x03a000 Jun 10 1996 c3t10d0
brw-r----- 1 bin sys 31 0x03b000 Jun 10 1996 c3t11d0
brw-r----- 1 bin sys 31 0x035000 Jun 10 1996 c3t5d0
brw-r----- 1 bin sys 31 0x038000 Jun 10 1996 c3t8d0
brw-r----- 1 bin sys 31 0x039000 Jun 10 1996 c3t9d0

but there are two entries including "0xa000"

the
0x00a000 Jun 10 1996 c0t10d0

and

0x03a000 Jun 10 1996 c3t10d0

which disk can have err?
Sunil Sharma_1
Honored Contributor

Re: about the err messages in my syslog.log

Hi,

I think it is c0t10d0

Sunil
*** Dream as if you'll live forever. Live as if you'll die today ***
Sunil Sharma_1
Honored Contributor

Re: about the err messages in my syslog.log

Hi,

Could you attach your syslog.log file.

Sunil
*** Dream as if you'll live forever. Live as if you'll die today ***
Elmar P. Kolkman
Honored Contributor

Re: about the err messages in my syslog.log

Please only attach it if it's not too large, otherwise attach the last days in the file...

Have you checked if the error is occurring just once or if it is a frequent error?
Every problem has at least one solution. Only some solutions are harder to find.