- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Minor error on disk with mirror by software
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
10-12-2008 04:25 PM
10-12-2008 04:25 PM
I have a system hp9000 running hpux 11.00.
The machine is in cluster with other hp9000 same os version.
These machine are sharing an old ds2300 disk enclosure.
The problem is that the machine is slow for a specific process, all other process are running ok.
I have been looking for error messages, logs etc.
In the attachment there is more information about that.
If the problem is the disk drive how I replace the failed disk without lossing data or stopping the operation.
Regards
W.S
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-12-2008 08:50 PM
10-12-2008 08:50 PM
Re: Minor error on disk with mirror by software
Looking the attached file "you are suspecting Harddisk problem"
step1 :- dd if=/dev/dsk/c7t3d0 of=/dev/null bs=256k &
dd if=/dev/dsk/c8t3d0 of=/dev/null bs=256k &
(the both above commands output should have the same value of "records in & records out " if the value not tally bingo..! suspecting the faulty disk)
replace faulty disk " down-time may need if your 'logical volume are not mirrored" if mirrored
replace the faulty disk
vgreduce /dev/vg11 /dev/dsk/cxtxdx --> faulty disk
ioscan -fnC disk --> check for the new HW disk claimed
pvcreate -f /dev/dsk/cxtxdx
vgextend vg11 /dev/dsk/cxtxdx
vgchange -a y /dev/vg11
lvextend -m 1 /dev/vg00/lvol1 /dev/dsk/cxtxdx
lvextend -m 1 /dev/vg00/lvol2 /dev/dsk/cxtxdx
or
wish to perform without lossing data or stopping the operation.(personal recommandation to move the package to another node)
your need add one more disk
pvcreate -f /dev/dsk/cxtxdx
vgextend vg11 /dev/dsk/cxtxdx
vgchange -a y /dev/vg11
man pvmove --> look man paged for more info
pvmove -n /dev/vg11/lvol1 /dev/dsk/c7t3d0 /dev/dsk/cxtxdx --> new disk
pvmove -n /dev/vg11/lvol2 /dev/dsk/c7t3d0 /dev/dsk/cxtxdx --> new disk
by performing the above steps all resding under faulty disks are been moved to newly replaced disk"lvols" under vg11
hope this helps
rgds,
Johnson
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-12-2008 09:33 PM
10-12-2008 09:33 PM
Re: Minor error on disk with mirror by software
so r u going to replace all disk
post iostat when the particular program is not running and another output when the particular program is running.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-13-2008 01:42 AM
10-13-2008 01:42 AM
SolutionFrom the log, the disk in question is c7t3d0. Check the integrity of the disk by dd command. If any media errors you can replace the disk without lossing the data since you have mirror copy.
Looking at the VG11 details, there are two LV's and both are mirrored.Two ways you can replace the disk. Offline steps you should follow are,
First you should reduce the mirror from the disk c7t3do.
#lvreduce -m 0 /dev/vg11/lvol1 /dev/dsk/c7t3d0
#lvreduce -m 0 /dev/vg11/lvol2 /dev/dsk/c7t3d0
Then remove the disk from vg11
#vgreduce vg11 /dev/dsk/c7t3d0
Replace the disk and extend the vg
#pvcreate /dev/rdsk/c7t3d0
#vgextend vg11 /dev/dsk/c7t3d0
Extend the mirrors
#lvreduce -m 1 /dev/vg11/lvol1 /dev/dsk/c7t3d0
#lvreduce -m 1 /dev/vg11/lvol2 /dev/dsk/c7t3d0
#vgsync
You can also replace the disk online if disk enclosure supports. In that case no need to reduce the mirror and all. Follow the below steps.
#pvchange -a n /dev/dsk/c7t3d0 (Need OLR patches)
replace the disk
#vgcfgrestore -n vg11 /dev/dsk/c7t3d0
#pvchange -a y /dev/dsk/c7t3d0
#vgchange -a y vg11
#vgsync
Hope this helps.
Ganesh.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-14-2008 05:26 PM
10-14-2008 05:26 PM
Re: Minor error on disk with mirror by software
I will send output when is not running that particular process and other when it is.
W.S