- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: implementing largefiles on shared FS
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-06-2005 11:08 PM
12-06-2005 11:08 PM
Can anyone tell me the recommended way of implementing largefiles on a filesystem that is shared over a cluster.
If I try to implement largefiles using SAM it gives me a warning that I must remove the FS from the cluster first
I was thinking about using the following process, if there is an easier way where I dont have to take down the cluster I would love to know
Much appreciated
Steve
Shutdown cluster
Vgchange –a n /dev/vg01 – this will take the /shared FS out of control of cluster
Manually mount /shared locally on one node.
Run fsadm to implement “largefiles”
Unmount /shared
Vgchange –a y /dev/vg01 – Put /shared FS (vg01 volume group) back into cluster control
Restart the cluster
Would it be possible to do the following:
Edit the fstab to contain largefiles and just restart the cluster ?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-06-2005 11:22 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-06-2005 11:38 PM
12-06-2005 11:38 PM
Re: implementing largefiles on shared FS
How do I check whether I am using Online JFS
Steve
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-07-2005 04:36 PM
12-07-2005 04:36 PM
Re: implementing largefiles on shared FS
#swlist |grep -i online
Will tell if you have it or not.
Also your vgchange steps are reversed.
For taking control of the VG after shutting down cluster you should use
#vgchange -a y /dev/vg01
Followed by the changes before starting the cluster you should do
#vgchange -a n /dev/vg01
Also making entried in /etc/fstab and restarting cluster will enable it provided the file system was initially created using largefiles option.
HTH,
Devender
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-07-2005 09:36 PM
12-07-2005 09:36 PM
Re: implementing largefiles on shared FS
Just another correction.
The entries made to /etc/fstab will not take effect when the file systems are mounted using a cluster conf file. Instead you need to make entries in the conf file itself in the section where you define mounting.
LV[0]="/dev/vx/dsk/dg01/dvebmgs00"; FS[0]="/usr/sap/PRD/DVEBMGS00"; FS_MOUNT_OPT[0]="-o suid,delaylog,convosync=direct"; FS_UMOUNT_OPT[0]=""; FS_FSCK_OPT[0]=""; FS
_TYPE[0]="vxfs"
But again for the option to be enabled here the file system should be prepared to allow this option.
HTH,
Devender