- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Adding disks to vg00
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
03-16-2004 10:16 PM
03-16-2004 10:16 PM
I have to extend /var/tmp online! there are no free extents available in the current volume group! I have two free 18Gb disks in the same cabinet, can I add these into vg00 and then extend /var/tmp "/var/tmp is a filesystem in its own right"
Please could someone advise the best way forward for this!
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-16-2004 10:18 PM
03-16-2004 10:18 PM
Re: Adding disks to vg00
-Karthik S S
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-16-2004 10:22 PM
03-16-2004 10:22 PM
Re: Adding disks to vg00
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-16-2004 10:35 PM
03-16-2004 10:35 PM
Re: Adding disks to vg00
You can add both disks to vg00 and if online jfs is installed you can vgextend the lvols online ( You probebly need to do a lvchange -C n ( disable contigues allocation for the lvol) . Default /var/tmp is not a filesystm of its own. Use the bdf command to check, or do a mount or cat /etc/mnttab. If not you can add a new lvol in vg00, mount it /var/tmp2, mv /var/tmp /var/tmp2, umount /var/tmp2 and mount it on /var/tmp.
HTH,
Gideon
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-16-2004 10:36 PM
03-16-2004 10:36 PM
Re: Adding disks to vg00
LV Name /dev/vg00/lvol8
VG Name /dev/vg00
LV Permission read/write
LV Status available/syncd
Mirror copies 1
Consistency Recovery MWC
Schedule parallel
LV Size (Mbytes) 1112
Current LE 278
Allocated PE 556
Stripes 0
Stripe Size (Kbytes) 0
Bad block on
Allocation strict
IO Timeout (Seconds) default
vg00 is currently mirrored and I will also have to mirror the 2 new disks.
This all means that /var/tmp will be split over 4 disks!
Please advise on best practise to achieve this, and whether the Strict allocation will cause an issue!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-16-2004 11:14 PM
03-16-2004 11:14 PM
Re: Adding disks to vg00
To avoid /var/tmp to be on 4 disks you can create a 2 physical volume groups. When you configure it ( create tekst file in /etc/ named lvmpvg )check man lvmpvg, mind if possibile the controllers. So the mirror disks are on the second controller. \
Current disks e.g:
c1t0d6
c2t0d6
new
c1t0d5
c2t0d5
#lvmpvg:
VGNAME vg00
PVGNAME pvg01
c1tod6
c1t0d5
PVGNAME pvg02
c2t0d6
c3t0d5
To see if it works do a vgdisplay -v. The output must contain the pvgs
The Strict realocation policy ( default) can be overruled with the lvchange command. I thought is was lvchange -C y /dev/vg00/lvol8 but check it in the man pages, since i can not check it.
HTH,
Gideon
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-17-2004 12:58 AM
03-17-2004 12:58 AM
SolutionOnce the two new disks are added to vg00 you can use pvmove to rearrange which disks the volumes reside on. Going for physical volume groups could be a good idea.
Yhe mirroring is done on volume (lvol) level.
Regards,
Trond