- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: How to extend a filesystem on serviceguard clu...
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
12-10-2009 02:27 PM
12-10-2009 02:27 PM
How I extend a filesystem on the cluster?
I need down the pakage? or only I need umount the filesystem?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-10-2009 04:14 PM
12-10-2009 04:14 PM
Re: How to extend a filesystem on serviceguard cluster?
lvextend
fsadm -F vxfs -b XXXXM /
assuming you have onlinejfs and space in the volume group
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-10-2009 04:24 PM
12-10-2009 04:24 PM
Re: How to extend a filesystem on serviceguard cluster?
Well, the question is, is this file system shared by both nodes? Or is it local to each node like /opt in vg00?
For a shared file system between both nodes, once you extend the logical volume and then the file system on one node, then you're done. When the cluster package fails over the change will still be there.
See above response and lvextend, fsadm -b commands to complete.
For a local file system like /opt, then you have to perform the procedure on both.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-10-2009 06:10 PM
12-10-2009 06:10 PM
SolutionI need down the pakage? <<
if you have Online Jfs - Installed, You can extend your file system on the cluster by Online
lvextend -L
fsadm -f vxfs -b
or only I need umount the filesystem?<<<
if you d'not have Online - Jfs, you need to halt the package-
lvextend -L
extendfs -F vxfs /dev/vgxx/rlvolxx
to check Online Jfs Installed.
swlist -l product |grep -i jfs
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-10-2009 06:21 PM
12-10-2009 06:21 PM
Re: How to extend a filesystem on serviceguard cluster?
You can refer below link:
http://deepees.wordpress.com/2009/02/18/hp-ux-adding-a-disk-to-an-mc-serviceguard-cluster-volumegroup/
Start from step 6.
Regds..
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-24-2009 01:45 PM
12-24-2009 01:45 PM
Re: How to extend a filesystem on serviceguard cluster?
Is there any free PE on that Vg ?
Online jfs is there ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-25-2009 08:27 AM
12-25-2009 08:27 AM
Re: How to extend a filesystem on serviceguard cluster?
if spcae is avaible then ;
Lvextend -L
fsadm -b
if space is not there and addition of disk then
pvcreate
vgextend with new disk.
lvextend
fsadm
export
and importing the mapfile on alternate node.
Hope you aware of commands.