- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: add disk with info onto a new server (quorom n...
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-22-2004 05:34 AM
10-22-2004 05:34 AM
add disk with info onto a new server (quorom not present)
I'm trying to get the info off of a disk that is exact as 85 other servers/disks by putting it in a local server here where I am. In the past these are the steps I've used and they've worked:
1) vgexport /dev/vg01
2) vgscan
3) mkdir /dev/vg01
4) mknod /dev/vg01/group c 64 0x01000
5) vgimport /dev/vg01 /dev/dsk/c0t5d0
Get this error (this time):
vgimport: Warning: Volume Group belongs to different CPU ID.
Can not determine if Volume Group is in use on another system. Continuing.
vgimport: Warning: Volume Group contains "2" PVs, "1" specified. Continuing.
vgimport: Quorum not present, or some physical volume(s) are missing.
Warning: A backup of this volume group may not exist on this machine.
Please remember to take a backup using the vgcfgbackup command after activating
the volume group.
6) vgchange -a y /dev/vg01
7) vgdisplay -v /dev/vg01
8) mkdir /home
9) mount /dev/vg01 /home
Can anyone help?? Basically I just need to get the info off of the "new disk" then remove it, and put the "old disk" back in the server.
I sure do appreciate it.
Chet
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-22-2004 05:39 AM
10-22-2004 05:39 AM
Re: add disk with info onto a new server (quorom not present)
mknod /dev/vg01/group c 64 0x010000
The answer is in the error:
Warning: Volume Group contains "2" PVs, "1" specified. Continuing
Sounds like you need 2 disks from the original volume group...
What if, on the original server, you did this:
vgexport -s -v -p -m /tmp/vg01.map /dev/vg01
Then copy the map file to the local server...
then vgimport it:
vgimport -s -v -m /tmp/vg01.map /dev/vg01
Rgds...Geoff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-22-2004 05:42 AM
10-22-2004 05:42 AM
Re: add disk with info onto a new server (quorom not present)
2) vgscan
3) mkdir /dev/vg01
4) mknod /dev/vg01/group c 64 0x01000
5) vgimport /dev/vg01 /dev/dsk/c0t5d0
Add following after 1 to check few more things.
pvdisplay /dev/dsk/c0t5d0 -- should resturn error.
strings /etc/lvmtab | grep c0t5d0
strings /etc/lvmconf/*.conf | grep c0t5d0
Is this disk from SAN/NAS storage?? Is it being used on some other server??
Is this under HA??
Anil
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-22-2004 05:43 AM
10-22-2004 05:43 AM
Re: add disk with info onto a new server (quorom not present)
check the disks which are belonging to your VG.
vgexport -m mapfile -v /dev/vgxx
take the mapfile to other server
and
mkdir /dev/vgxx
mknod /dev/vgxx/group 64 0x0n0000
vgimport -m mapfile (which have took from other server) -v vg_name pv_path
This shall go through..
Thanks
Prashant
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-22-2004 06:54 AM
10-22-2004 06:54 AM
Re: add disk with info onto a new server (quorom not present)
I suppose I should tell you more about our environment:
These servers are OLD HP9000/e25, with 10.20 on them with 2 internal drives one 1 gb drive (with vg00, OS only) then there's a 2gb drive (with VG01, other filesystems that are required for our environment are stored here).
To answer questions asked: Geoff - that was a typo on my part I've been typing (when it counts) 0x010000, RAC - this is not a SAN/NAS environment.
Here's the output from : pvdisplay /dev/dsk/c0t5d0
pvdisplay: Warning: couldn't query physical volume "/dev/dsk/c0t5d0":
The specified path does not correspond to physical volume attached to
this volume group
pvdisplay: Couldn't query the list of physical volumes.
pvdisplay: Couldn't retrieve the names of the physical volumes
belonging to volume group "/dev/vg01".
pvdisplay: Cannot display physical volume "/dev/dsk/c0t5d0".
# strings /etc/lvmtab | grep c0t5d0
/dev/dsk/c0t5d0
# strings /etc/lvmconf/*.conf |grep c0t5d0
/dev/rdsk/c0t5d0
/dev/rdsk/c0t5d0
Thanks,
Chet
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-22-2004 07:19 AM
10-22-2004 07:19 AM
Re: add disk with info onto a new server (quorom not present)
pvdisplay /dev/rdsk/c0t5d0
Rgds...Geoff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-22-2004 07:23 AM
10-22-2004 07:23 AM
Re: add disk with info onto a new server (quorom not present)
Here's the output I got from that:
pvdisplay: Physical volume "/dev/rdsk/c0t5d0" is not a block special file.
Usage: pvdisplay
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-22-2004 07:27 AM
10-22-2004 07:27 AM
Re: add disk with info onto a new server (quorom not present)
Modify the step 6 as follows and try mounting
the lvol
6) vgchange -a y -q n /dev/vg01
7) vgdisplay -v /dev/vg01
8) mkdir /home
9) mount /dev/vg01/lvolx /home
Anil
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-22-2004 07:32 AM
10-22-2004 07:32 AM
Re: add disk with info onto a new server (quorom not present)
Rgds...Geoff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-22-2004 07:52 AM
10-22-2004 07:52 AM
Re: add disk with info onto a new server (quorom not present)
Here's what I did...#1-4 on my process worked, 5 got the same error changed #6-9 to coincide with your instructions and 6-8 worked, #9 recieved the following error:
# mount /dev/vg01/lvol1 /home
/dev/vg01/lvol1: unrecognized file system
I can however mount /dev/vg01 to /home but, it's just a bunch of unusable block and raw files. (ex: lvol1, rlvol1, lvol2, rlvol2, etc...)
Thanks.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-22-2004 07:56 AM
10-22-2004 07:56 AM
Re: add disk with info onto a new server (quorom not present)
fstyp -v /dev/vg01/lvol1
Anil
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-22-2004 08:13 AM
10-22-2004 08:13 AM
Re: add disk with info onto a new server (quorom not present)
unknown_fstyp (no matches)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-22-2004 08:18 AM
10-22-2004 08:18 AM
Re: add disk with info onto a new server (quorom not present)
You may try fsck /dev/vg01/rlvol1 -y full
Anil
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-22-2004 08:22 AM
10-22-2004 08:22 AM
Re: add disk with info onto a new server (quorom not present)
# fsck /dev/vg01/rlvol1 -y full
fsck: /etc/default/fs is used for determining the file system type
fsck: /etc/default/fs is used for determining the file system type
fsck: /etc/default/fs is used for determining the file system type
cannot open device /dev/vg01/rlvol1
vxfs fsck: /dev/vg00/rlvol3 is currently mounted
vxfs fsck: /dev/vg00/rlvol6 is currently mounted
vxfs fsck: /dev/vg00/rlvol7 is currently mounted
vxfs fsck: /dev/vg00/rlvol8 is currently mounted
vxfs fsck: /dev/vg00/rlvol9 is currently mounted
vxfs fsck: cannot convert /dev/vg01/apps to c character device
vxfs fsck: cannot convert /dev/vg01/home to c character device
vxfs fsck: cannot stat full
I'm not sure why this isn't working...it's worked in the past. UGGGHHHHH!!!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-22-2004 08:28 AM
10-22-2004 08:28 AM
Re: add disk with info onto a new server (quorom not present)
Anil
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-22-2004 08:32 AM
10-22-2004 08:32 AM
Re: add disk with info onto a new server (quorom not present)
I think now would be a good time to mount the backup tape from the old server...and restore the data you are looking for...
Rgds...Geoff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-22-2004 08:43 AM
10-22-2004 08:43 AM
Re: add disk with info onto a new server (quorom not present)
Chet
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-22-2004 08:55 AM
10-22-2004 08:55 AM
Re: add disk with info onto a new server (quorom not present)
How many lvols it creates?? (ll /dev/vg01/lvol*). If any of these sits just on one disk. You may luck mounting it.
Try mounting all of then one by one. See if any of these gets mounted.
Anil