- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: vgdisplay produce error
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
07-01-2002 12:34 AM
07-01-2002 12:34 AM
When running vgdisplay -v /dev/vg01, i got erorrs:
vgdisplay: Warning: couldn't query physical volume "/dev/dsk/c0t11d0":
The specified path does not correspond to physical volume attached to
this volume group
vgdisplay: Warning: couldn't query all of the physical volumes.
LV Name /dev/vg01/data2
LV Status available/syncd
LV Size (Mbytes) 1400
Current LE 1400
Allocated PE 2800
Used PV 4
vgdisplay: Warning: couldn't query physical volume "/dev/dsk/c0t11d0":
The specified path does not correspond to physical volume attached to
this volume group
vgdisplay: Warning: couldn't query all of the physical volumes.
LV Name /dev/vg01/fs1
LV Status available/stale
LV Size (Mbytes) 10500
Current LE 10500
Allocated PE 21000
Used PV 13
How should I look this problem in details.
br,
Munawwar
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-01-2002 12:38 AM
07-01-2002 12:38 AM
SolutionSeems like c0t11d0 is faulty. Try to dd on it:
dd if=/dev/dsk/c0t11d0 of=/dev/null bs=64k
If it does not work, most likely you have a faulty harddisk.
You can also try the mstm tools on it.
I see you have mirroring, so it shouldn't be too much of a problem for resyncing data.
HTH,
Vince
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-01-2002 12:40 AM
07-01-2002 12:40 AM
Re: vgdisplay produce error
i think you have possibly a defect disk in your system, because of it's stale status in vgdisplay command. Check first the vgscan- command with -p option. You could also try the following command:
strings /etc/lvmtab
to find out, if there exists an entry for the disk. Please post the output of these commands here.
Allways stay on the bright side of life!
Peter
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-01-2002 12:40 AM
07-01-2002 12:40 AM
Re: vgdisplay produce error
try using dd if=/dev/dsk/c0t11d0 of=/dev/null bs=64k and see if you can read blocks from the disk or have the disk LED flashing.
Check the syslog for EMS messages and check the logtool for I/O errors under STM.
Usually though it is a failed disk which needs to be replaced. In your case you are mirroring so you can do it on-line without affecting operation if you have a hot-plug disk module.
Good luck
Stefan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-01-2002 12:48 AM
07-01-2002 12:48 AM
Re: vgdisplay produce error
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-01-2002 12:56 AM
07-01-2002 12:56 AM
Re: vgdisplay produce error
Looks like you lost a disk (fortunately you've got it mirrored). Verify this with "ioscan -fn". There should be a disk NO_HW. In order to replace the disk, take a look at the procedures described in http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0x617e50011d20d6118ff40090279cd0f9,00.html
Basically it will come down to (VERIFY !) this :
1. Replace the disk
2. Resync the data
# vgcfgrestore -n /dev/v01 /dev/rdsk/c0t11d0
# vgchange -a y /dev/vg01
# vgsync /dev/vg01
Hope this helps,
Tom