- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- How to change VxFS filessystem mount options Onlin...
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-13-2005 04:26 AM
01-13-2005 04:26 AM
How to change VxFS filessystem mount options Online?
nodatainlog, mincache=direct,convosync=direct
After changes were made how to check and confirm the new mount options.
Then later how to revert back above option online again to original state.
We have Online JFS 3.3 on HP-UX 11i.
The filesystem is only used for Oacle9i datafiles.
I am testing Oracle datafile performance.
Thanks,
Gulam.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-13-2005 04:50 AM
01-13-2005 04:50 AM
Re: How to change VxFS filessystem mount options Online?
You need JFS 3.3 ver4 to do this.
Check the version with:
fstyp -v /dev/vg_name/lv_name | grep version
Then IF it's version 4 then the command is:
mount -F vxfs -o remount,nodatainlog, mincache=direct,convosync=direct /mnt_point
The remount option is the key.
HTH,
Jeff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-13-2005 04:51 AM
01-13-2005 04:51 AM
Re: How to change VxFS filessystem mount options Online?
I'd shut the database to avoid possible data corruption. Maybe I'm just cautious. Once the database is shut down, you can change the mount options the old fashioned way, by using umount and mount.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-13-2005 04:56 AM
01-13-2005 04:56 AM
Re: How to change VxFS filessystem mount options Online?
Any disk I/O in the queue at the time of the command will use the "old" options & any requests queued after use the "new" options.
BUT you have to have JFS 3.3 version 4 - or higher - to use -o remount.
IF the version is less than 4 then vxupgrade must be used and *this* is the one where caution should be used & the DB sould probably be down. Also it must be noted that you can't go from ver2 straight to ver4. Must go to ver3 & *then* go to ver4.
My $0.02,
Jeff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-13-2005 04:56 AM
01-13-2005 04:56 AM
Re: How to change VxFS filessystem mount options Online?
Assuming that you have a generous amount of memory in this box, you are not going to see much benefit (if any) from these mount options under 11.11. Previous versions (especially 10.20 and 11.0 to a lesser extent) benefitted from bypassing the buffer cache but my tests have shown under 11.11, Oracle performs best with fully cooked files.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-13-2005 05:05 AM
01-13-2005 05:05 AM
Re: How to change VxFS filessystem mount options Online?
And a final note to Gulam - Make *sure* the DBAs have a properly sized SGA to handle the DB buffering because that's going to be the *only* buffer that I/O will get at that point.
Rgds,
Jeff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-13-2005 05:05 AM
01-13-2005 05:05 AM
Re: How to change VxFS filessystem mount options Online?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-13-2005 05:13 AM
01-13-2005 05:13 AM
Re: How to change VxFS filessystem mount options Online?
One last thing,how to revert it back online?
Thanks,
gulam.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-13-2005 05:18 AM
01-13-2005 05:18 AM
Re: How to change VxFS filessystem mount options Online?
mount -v
and not the options as they are now.
Then when going back just do
mount -F vxfs -o remount,???log,mincache=???,convosync=??? /mnt_point
replacing the ??? with the current settings.
Simple as that.
HTH,
Jeff