- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Problem with vg01
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
04-09-2002 05:05 AM
04-09-2002 05:05 AM
I wuold like to do clear for this thing:
I have 3 vg's (vg00, vg01 and vg02) but, when i type bdf i see only 2 vg's vg00 and vg02.
Why I can't see vg01 ?
Filesystem kbytes used avail %used Mounted on
/dev/vg00/lvol3 143360 49973 87572 36% /
/dev/vg00/lvol1 127573 72176 42639 63% /stand
/dev/vg00/lvol8 1048576 161763 832478 16% /var
/dev/vg00/lvol7 1048576 442845 567911 44% /usr
/dev/vg00/lvol4 1048576 2260 980924 0% /tmp
/dev/vg00/lvol6 1048576 116952 873444 12% /opt
/dev/vg00/lvol5 2097152 1614 1964574 0% /home
/dev/vg02/lvolfab 2097152 1614 1964574 0% /home/fab
If I type vgdisplay -v /dev/vg01 I see this:
#vgdisplay -v /dev/vg01
--- Volume groups ---
VG Name /dev/vg01
VG Write Access read/write
VG Status available
Max LV 255
Cur LV 0
Open LV 0
Max PV 16
Cur PV 2
Act PV 2
Max PE per PV 2171
VGDA 4
PE Size (Mbytes) 4
Total PE 4340
Alloc PE 0
Free PE 4340
Total PVG 0
Total Spare PVs 0
Total Spare PVs in use 0
--- Physical volumes ---
PV Name /dev/dsk/c0t0d0
PV Status available
Total PE 2170
Free PE 2170
Autoswitch On
PV Name /dev/dsk/c0t1d0
PV Status available
Total PE 2170
Free PE 2170
Autoswitch On
Which is the problem?
Thanks in advance
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-09-2002 05:09 AM
04-09-2002 05:09 AM
SolutionThere are no filesystems associated with vg01 and hence nothing to mount, and therefore nothing for 'bdf' to report.
If you examine the output of your 'lvdisplay -v /dev/vg01' you will note the line "Cur LV 0". This shows the absence of any logical volumes upon which filesystems can be created.
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-09-2002 05:09 AM
04-09-2002 05:09 AM
Re: Problem with vg01
HAve you mounted all vg???
have you active vg???
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-09-2002 05:10 AM
04-09-2002 05:10 AM
Re: Problem with vg01
Cheers
George
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-09-2002 05:10 AM
04-09-2002 05:10 AM
Re: Problem with vg01
Look at:
# strings /etc/lvmtab (is vg01 in there ?)
# more /etc/fstab (is vg01 in there ?)
if both answered yes then do:
# mount -a
# bdf
Now it should be there.
If not in lvmtab then you have to run
# vgscan -v -a
Regards,
Clemens
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-09-2002 05:12 AM
04-09-2002 05:12 AM
Re: Problem with vg01
Both guys are correct.
Overlooked the current LV line.
Sorry for the wrong answer.
Clemens
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-09-2002 05:14 AM
04-09-2002 05:14 AM
Re: Problem with vg01
In vg01, you have 0 logical volumes (CUR LV=0).
Define some lvol1 and lvol2 on vg01 and mount these, like you did with vg02 and vg00.
In other words, bdf does not give you the full scope of what you have, only the active filesystems mounted.
Regards,
Ceesjan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-09-2002 05:15 AM
04-09-2002 05:15 AM
Re: Problem with vg01
Sorry for stupid question.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-09-2002 05:15 AM
04-09-2002 05:15 AM
Re: Problem with vg01
There doesnt seem to be any problem. the vgdisplay output of vg01 shows that there are no LV's in vg01. You can create LVs under vg01 and mount them as filesystems.
To reconfirm there are no lv's do:
ll /dev/vg01
strings /etc/lvmtab | grep vg01
HTh
raj
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-09-2002 05:46 AM
04-09-2002 05:46 AM
Re: Problem with vg01
looking from your vg01 information . You can see that the allocated PVs are 0 hence no file systems associated with that vg. In fact you are not using that vg at all. You just created it that's it.
-pap