Operating System - HP-UX
1751972 Members
4874 Online
108784 Solutions
New Discussion юеВ

Re: How to find the disk that crashed on the disk trays??

 
SOLVED
Go to solution
rvent
Frequent Advisor

How to find the disk that crashed on the disk trays??

Hello,

I have a bad drive and i need to replace it, however, i have 2 HP Disk System 2120 and i cant tell which drive is the one i need to remove.

I certainly dont wanna remove the good one and make all hell break loose...

Any ideas on how i can identify the disk??

Thanks!
4 REPLIES 4
Torsten.
Acclaimed Contributor

Re: How to find the disk that crashed on the disk trays??

You can get the h/w path from ioscan, so you know the slot where the HBA is installed.

Now you can follow the cable ...



But I prefer to turn the activity LED on for the *good* disk (using "dd"), so you know you need to pull the other disk ...

Hope this helps!
Regards
Torsten.

__________________________________________________
There are only 10 types of people in the world -
those who understand binary, and those who don't.

__________________________________________________
No support by private messages. Please ask the forum!

If you feel this was helpful please click the KUDOS! thumb below!   
rvent
Frequent Advisor

Re: How to find the disk that crashed on the disk trays??

Well folowing the cables is a bit confusing since we have 2 trays that connect to 2 HP3410 so it can get confusing doing that.

How would i use dd to turn on the light on the disk??

Thanks
Torsten.
Acclaimed Contributor
Solution

Re: How to find the disk that crashed on the disk trays??

I assume you mirror between the both enclosures.

From vgdisplay get the device file of the *good* disk, then do

# dd if=/dev/rdsk/c1t1d0 of=/dev/null

where c1t1d0 is the GOOD disk.


You will see the activity LED steady on.

I assume you already know the slot of your bad disk - so now you know the bad disk.

Hope this helps!
Regards
Torsten.

__________________________________________________
There are only 10 types of people in the world -
those who understand binary, and those who don't.

__________________________________________________
No support by private messages. Please ask the forum!

If you feel this was helpful please click the KUDOS! thumb below!   
rvent
Frequent Advisor

Re: How to find the disk that crashed on the disk trays??

Thanks for the help!!!