- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- how to increse inode numbers in a existing file sy...
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-08-2011 12:10 AM
03-08-2011 12:10 AM
how to increse inode numbers in a existing file system
os version is--hp-ux 11iv2
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-08-2011 12:50 AM
03-08-2011 12:50 AM
Re: how to increse inode numbers in a existing file system
Please provide this command output:
#fstyp /dev/vgname/lvolname
Rgds.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-08-2011 12:52 AM
03-08-2011 12:52 AM
Re: how to increse inode numbers in a existing file system
Omit previos post!
Please provide this command output:
#fstyp -v /dev/vgname/lvolname
Rgds
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-08-2011 12:56 AM
03-08-2011 12:56 AM
Re: how to increse inode numbers in a existing file system
If this was vxfs, you shouldn't run out.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-08-2011 01:17 AM
03-08-2011 01:17 AM
Re: how to increse inode numbers in a existing file system
Is this a HFS filesystem?
Please run this command and paste the output to this thread, to verify the filesystem type and version:
fstyp -v $(grep /data/oracle /etc/fstab | awk '{print $1};')
On a HFS filesystem, the number of inodes is related to the filesystem size. This relation is determined at filesystem creation time and cannot be changed later without backing up all data and completely recreating the filesystem. The normal ratio is one inode for every 6144 bytes of disk space.
So, to get more inodes, you must extend the filesystem: as the filesystem is extended, new inodes are created to keep the ratio of inodes per unit of disk space the same as before.
Unfortunately, a HFS filesystem cannot be extended on-line: you must stop Oracle and temporarily unmount the filesystem to extend it using the extendfs command. To extend a filesystem, you must first extend the LV it's placed on; the LV extension can happen while the filesystem is still mounted and Oracle is running.
Example procedure: (assuming the filesystem is located on /dev/vgoracle/lvdata)
lvextend -L
umount /data/oracle
extendfs -F hfs /dev/vgoracle/rlvdata
mount /data/oracle
MK
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-08-2011 01:51 AM
03-08-2011 01:51 AM
Re: how to increse inode numbers in a existing file system
Adding on, on a v3 operating system having vxfs filesystem ofcourse if you execute the following command...
mkfs -F vxfs -m /dev/vgname/lvolname, you will see the number of inodes is unlimited {ninodes=unlimited}. The answer as to why it is so is explained in Matti's post.
Regards
Ismail Azad
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-08-2011 03:41 AM
03-08-2011 03:41 AM
Re: how to increse inode numbers in a existing file system
Provided you created it with the default ninode=unlimited. :-)