- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Cannot vgchange -a y
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
05-14-2002 07:50 PM
05-14-2002 07:50 PM
I got this error message while I try to do vgchange -a y for a vg :
DWPRD:/home/smolns # vgchange -a y vg01
vgchange: Warning: Couldn't attach to the volume group physical volume "/dev/dsk
/c6t8d0":
Cross-device link
vgchange: Warning: couldn't query physical volume "/dev/dsk/c6t8d0":
The specified path does not correspond to physical volume attached to
this volume group
vgchange: Warning: couldn't query all of the physical volumes.
vgchange: Couldn't activate volume group "vg01":
Quorum not present, or some physical volume(s) are missing.
I did ioscan and the device is still can be detected.
Any suggestions ?
Thanks
Lai
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-14-2002 07:57 PM
05-14-2002 07:57 PM
Re: Cannot vgchange -a y
# vgchange -a y -q n /dev/vg01
.. ses if it's ok. When it comes up verify if the disk is ok ..
# /etc/diskinfo /dev/rdsk/c6t8d0
.. does that respond with anything ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-14-2002 07:57 PM
05-14-2002 07:57 PM
Re: Cannot vgchange -a y
Looks like the server is not able to read the contents of the disk. There are two possibilities.
1. Disk is loosely connected:
The best way is to shutdown the server. Pull the disk out and plug it in, provided it is a pluggable device. OR check the SCSI cables of the disk.
Then reboot. It will be fine.
2. Disk has gone bad
After the reboot is over do
# dd if=/dev/rdsk/c6t8d0 of=/dev/null bs=4k
-Sukant
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-14-2002 08:01 PM
05-14-2002 08:01 PM
Re: Cannot vgchange -a y
Sounds like you've tried to import a volume group? In any case you can't activate a volume group unless it has at 50% of the physical volumes available.
There are two suggestions that come readily to mind.
# diskinfo /dev/rdsk/c6t8d0
# dd if=/dev/dsk/c6t8d0 of=/dev/null
If either give errors, it could your disk is no good.
HTH
~Michael~
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-14-2002 08:03 PM
05-14-2002 08:03 PM
Re: Cannot vgchange -a y
Have a look at document 2200144037 from the TKB. I have attached it for your convenience.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-14-2002 08:03 PM
05-14-2002 08:03 PM
Re: Cannot vgchange -a y
# strings /etc/lvmtab
==> Do you see c6t8d0 belonging to 2 different VGs? If the anser is yes do this to rebuild the lvmtab file ..
# cd /etc
# mv lvmtab lvmtab.org
# vgscan -v
# strings lvmtab
==> check again
Now try ..
# vgchange -a y vg01
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-14-2002 08:34 PM
05-14-2002 08:34 PM
Re: Cannot vgchange -a y
DWPRD:/home/smolns # vgchange -a y -q n /dev/vg01
vgchange: Warning: Couldn't attach to the volume group physical volume "/dev/dsk
/c6t8d0":
Cross-device link
vgchange: Warning: couldn't query physical volume "/dev/dsk/c6t8d0":
The specified path does not correspond to physical volume attached to
this volume group
vgchange: Warning: couldn't query all of the physical volumes.
vgchange: Couldn't activate volume group "/dev/vg01":
Quorum not present, or some physical volume(s) are missing.
DWPRD:/home/smolns # diskinfo /dev/rdsk/c6t8d0
SCSI describe of /dev/rdsk/c6t8d0:
vendor: EMC
product id: SYMMETRIX
type: direct access
size: 8838720 Kbytes
thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-14-2002 09:11 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-14-2002 09:18 PM
05-14-2002 09:18 PM
Re: Cannot vgchange -a y
http://bizforums.itrc.hp.com/cm/QuestionAnswer/1,,0xb0a503bbece8d5118ff40090279cd0f9,00.html
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-14-2002 09:40 PM
05-14-2002 09:40 PM
Re: Cannot vgchange -a y
Thank you sir !
Lai