- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: extending raw volumes.
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
01-08-2008 03:43 AM
01-08-2008 03:43 AM
extending raw volumes.
Thanks
Joe
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-08-2008 03:46 AM
01-08-2008 03:46 AM
Re: extending raw volumes.
Assuming that they are raw logical volumes, take a look at lvextend.
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-08-2008 04:22 AM
01-08-2008 04:22 AM
Re: extending raw volumes.
The following procedure outlines how to resize an LVM filesystem.
The procedure should first be tested in test before being performed against a production environment. Make sure that the database tablespace is offline or the database is shutdown before doing this activity.
1. Backup all data on the filesystem
Repartitioning a disk/device is a destructive process that may result in complete loss of volume data.
Backup the contents of the volume to be resized before proceeding.
2. Globally unmount the filesystem to be resized (This is only when you do not have online JFS, if you have online JFS just perform the lvextend without unmounting it).
3. Perform a filesystem check using fsk
before extending
fsck -F vxfs -o full
4. Resize the underlying device/partition using lvextend
lvextend -L
Thanks,
Srikanth
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-08-2008 04:47 AM
01-08-2008 04:47 AM
Re: extending raw volumes.
The following procedure outlines how to resize an LVM filesystem using LVM. If you are using ASM for Oracle, then RAW volumes cannot be extended using below procedure, you need to create a new RAW volumes. The attached document will guide you through it.
The procedure should first be tested in test before being performed against a production environment. Make sure that the database tablespace is offline or the database is shutdown before doing this activity.
1. Backup all data on the filesystem
Repartitioning a disk/device is a destructive process that may result in complete loss of volume data.
Backup the contents of the volume to be resized before proceeding.
2. Globally unmount the filesystem to be resized (This is only when you do not have online JFS, if you have online JFS just perform the lvextend without unmounting it).
3. Perform a filesystem check using fsk
before extending
fsck -F vxfs -o full
4. Resize the underlying device/partition using lvextend
lvextend -L
5. Resize the filesystem with following condition.
If you are using Online JFS, then you use 'fsadm' to extend the filesystem. If no onlineJFS present use 'extendfs'.
Thanks,
Srikanth
Thanks,
Srikanth
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-08-2008 05:59 AM
01-08-2008 05:59 AM
Re: extending raw volumes.
The procedure is very simple if you have enough space in the volume group, wher the logical volume[s] created.
lvextend -L new_size_in_MB /dev/vg00/lvlolname
Don't forget to backup the DB before.
HTH
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-08-2008 06:17 AM
01-08-2008 06:17 AM
Re: extending raw volumes.
Yes.It can be extended by using the lvextend command.
#lvextend -L
Please note that since it is a raw lvol no need to do execute newfs command.
Regards!
Jijeesh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-08-2008 06:17 AM
01-08-2008 06:17 AM
Re: extending raw volumes.
The method is different for each, just need a clarification.