- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Can not import vg
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
02-05-2003 01:56 AM
02-05-2003 01:56 AM
Can not import vg
I hav reinstalled a L class from scratch. The system is connected
via fc with two EMC Raid arrays.
I have exported the vg before
I started the setup of the machine and now I'm not able to
import the vg.
The following commands are used:
mkdir /dev/vg01
cd /dev/vg01
mknod .....
vgimport -m mapfile -f out.file /dev/vg01
The command is executed WITHOUT any error messages, but their is NO logical volume.
Any idea ?
Thanks, Peer
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-05-2003 02:01 AM
02-05-2003 02:01 AM
Re: Can not import vg
#vgchange -a y /dev/vg01
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-05-2003 02:04 AM
02-05-2003 02:04 AM
Re: Can not import vg
You may have to activate it using 'vgchange -a y /dev/vg01'.
You might also have to fsck the lvols before you can mount them.
Command = fsck -o -y full /dev/vg01/rlvol1
Share and Enjoy! Ian
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-05-2003 02:19 AM
02-05-2003 02:19 AM
Re: Can not import vg
Try
# strings /etc/lvmtab
to check if the vg exist, and then
# vgchange -a y vg01
Fr??d??ric
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-05-2003 02:19 AM
02-05-2003 02:19 AM
Re: Can not import vg
please check if the volume group is already added to the system:
# vgdisplay vg01
if not, try to activate the volume group:
# vgchange -a y vg01
check the mapfile an show if all lvols are in:
# more mapfile
check if the "group" device of the volume group is correct and the minor no is unique:
# ll /dev/*/group
check the out.file file and be sure that the disk devices are ok
# ioscan -fnCdisk
# more out.file
Hope that helps.
Regards ...
Armin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-05-2003 04:48 AM
02-05-2003 04:48 AM
Re: Can not import vg
thanks to all. I was my mistake.
I looked for /dev/vg01/lvol1, but thoses files are created
after vgchange -a y vg01 ....
Everything fine and running ;)
Bye, Peer