- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: HP-UX 11.00 compatibility with VXFS version 4
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-10-2006 05:55 AM
03-10-2006 05:55 AM
The troublesome VXFSv4 RAID is 1.4TB. A VXFSv3 0.7 TB RAID, with more than 11M inodes used, behaves normally [except for df's use of free inodes rather than total inodes in the divisor when computing %used].
Is this a failure of the OS to deal properly with VXFSv4? Is there an applicable patch?
The system runs a legacy application; migration to HP-UX 11.11 is not in the cards.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-10-2006 06:11 AM
03-10-2006 06:11 AM
Re: HP-UX 11.00 compatibility with VXFS version 4
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-10-2006 06:19 AM
03-10-2006 06:19 AM
Re: HP-UX 11.00 compatibility with VXFS version 4
The problem is that the OS refuses to create any more files, declaring that it is out of inodes, even though the the RAID is only 80% full (1.4TB allocated, 1.1TB used).
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-10-2006 06:30 AM
03-10-2006 06:30 AM
Re: HP-UX 11.00 compatibility with VXFS version 4
One non-obvious "gotcha" is that the largefiles option is required for large numbers of inodes eventhough no large files are actually on the filesystem. The internal structures which house the inode list must be allowed to grow beyond the 2GB limit. That was a "feature" I fought foe a good while before I stumbled onto enabling largefiles eventhough I didn't actually have any largefiles on the filesystem. It would also be nice to know is your filesystem was created with dynamic inode allocation or static inode allocation via the inode=xxxxx argument. I would run mkfs -F vxfs -m on both platforms and see if there is a difference. Note that -m will not create a new filesystem but rather will display the options used when an existing filesystem was created. Man mkfs_vxfs for details.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-10-2006 06:42 AM
03-10-2006 06:42 AM
Re: HP-UX 11.00 compatibility with VXFS version 4
Could you post any errors related to inodes in the syslog.log file. Is there any filesystem on which this error is occuring because in that case you can run the following command to find out the attributes with which that particular filesystem was created:
# mkfs -F vxfs -m
Reason I say so is because this filesystem may have been created w/o largefiles support and in order to dynamically grow beyond the 8M inode limit, you need to enable largefiles on the filesystem.
cheers!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-10-2006 07:16 AM
03-10-2006 07:16 AM
Re: HP-UX 11.00 compatibility with VXFS version 4
mkfs -F vxfs -o ninode=unlimited,bsize=8192,version=4,inosize=256,logsize=256,nolargefiles /dev/vg03/lvol1 1464991744
Did you mean that remounting it with the 'largefiles' option specified at mount time would clear up the problem? Or did the specification of 'nolargefiles' when the FS was created preclude that possibility?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-10-2006 07:22 AM
03-10-2006 07:22 AM
Re: HP-UX 11.00 compatibility with VXFS version 4
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-10-2006 07:44 AM
03-10-2006 07:44 AM
Solution# fsadm -Fvxfs -olargefiles
Also take a look at TKB doc UFSKBRC00010611...
http://www1.itrc.hp.com/service/cki/docDisplay.do?docLocale=en_US&docId=200000080062166
cheers!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-10-2006 08:47 AM
03-10-2006 08:47 AM
Re: HP-UX 11.00 compatibility with VXFS version 4
The VXfS in question ran out of inodes shortly after 8M, even when there was still 290GB of disk space available. Unmounting the VXfS, using fsadm to enable largefiles, changing /etc/fstab to specify largefiles, and remounting the VXfS apparently solved the problem. The reason this works: HP-UX uses a file on the file system itself to store the inode information, presumably at 256B per inode; thus for the number of inodes to exceed 8M, this file must exceed 2G. The OS was perfectly happy to allocate more inodes, but the FS wouldn't allow the file storing them to grow.
Whether this will truly solve the problem has not been tested; if it fails, then I will re-open the thread.