- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Disc problems
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-22-2004 09:30 AM
06-22-2004 09:30 AM
About a month ago, we lost a drive for our database. The drive-light was on solid and the OS couldn't find it. Big problem but oh-well, drives fail. A test of the drive confirmed is was bad. BTW, we were going to mirror all the database drives in the next week - DOH!!!
Last Friday, the mirrored drive for the database went down. Wow, big coincidence! The OS had lost it. We unplugged it and plugged it back in and the OS found it and recovered the file-system and all. Testing found no problems on the drive.
Just today, the OS drive went down. Solid light on the drive. The message on the console was:
SYSTEM DIAGNOSTIC WARNING:
The diagnostic logging facility has started receiving excessive errors from the I/O subsytem. I/O error entries will be lost until the cause of the excessive I/O logging is corrected. ...
LVM: vg[0]: pvnum=0 (dev_t=0x1f005000) is POWERFAILED
Since I thought the drive may be toast anyhow, I unplugged it and plugged it back in. In about 3 seconds, the system was back and working.
My question is: could I have 3 bad drives (we replaced the first one - it DID die) or is the problem in the SCSI bus? How can I nail this down?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-22-2004 09:44 AM
06-22-2004 09:44 AM
Re: Disc problems
I attempted to mirror my data to another set of disks, and all LVOLs but one were successful. I replaced the drive and restored the data I couldn't mirror.
If these drives are original drives then they are a few years old. I would guess that you are just having a string of bad luck and your drives are starting to go.
I would go ahead and replace the other 2 drives that have shown problems. That is probably easier than trying to start testing the SCSI cards internal to the system.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-22-2004 09:52 AM
06-22-2004 09:52 AM
Re: Disc problems
If the problem at any one times seems to "stay" on one disk then I would truly suspect the failing disk over any other possible component. If the problems seem to "move around" then I suspect things like a bad terminator (yes, they can fail) or a bad controller but yours is really classic failing disk(s).
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-22-2004 10:37 AM
06-22-2004 10:37 AM
Re: Disc problems
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-22-2004 10:43 AM
06-22-2004 10:43 AM
SolutionI would also check the "environment". Not too far ago, we had found "aluminum powder" due to a simple maintenance in the data center causing one of the superdomes to constantly keep crashing.
To check the stale extents, use lvdisplay command if your disks are under LVM control.
for LV in $(/usr/sbin/vgdisplay -v |grep "LV Name"|awk '{print $3}')
do
/usr/sbin/lvdisplay -v $LV |grep -q stale
if [ $? = 0 ]
then
echo $LV is stale
else
echo $LV is ok
fi
done
-Sri
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-23-2004 04:39 PM
06-23-2004 04:39 PM
Re: Disc problems
Before replacing the drives, consider updating the disk firmwares. I am sure the firmware on the disks are very old. Some of the disk firmwares fix such hanging problems.
You can also provide the model string of the disk so that I can tell you the latest firmware. diskinfo -v will indicate the firmware rev. and model string.
Of course, you would require an HP CE to perform this disk firmware upgrade.
Cheers,
Mohan