- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Disk allocation for HPUX 11.00
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
09-13-2002 03:21 AM
09-13-2002 03:21 AM
Disk allocation for HPUX 11.00
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-13-2002 03:36 AM
09-13-2002 03:36 AM
Re: Disk allocation for HPUX 11.00
Attached is our layout for the root volume group. We have a very similar layout: N4000, 8Gb, 2x18Gb disks, and externals for the DB, which is Informix in our case but should be similar to your situation.
I should explain that our /var is vastly oversized because we store huge quantities of print output.
HTH,
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-13-2002 03:40 AM
09-13-2002 03:40 AM
Re: Disk allocation for HPUX 11.00
I have never liked the idea to divide the OS installation in several small logical volumes (/ /stand /var /opt etc.)as default when installing HP-UX. I usually create one small hfs volume for /stand (as this is necessary) and one large (4GB) for / (rest of the OS). Then I create logical volumes for data applications etc. as needed.
I think it is much more important to have som kind of security (mirror, raid) for the Oracle database then for the OS. Restoring the OS disk can be done in a few minutes if using a Ignite server and very fast if using a Ignite tape. But restoring a large Oracle database can be a very hard work.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-13-2002 03:51 AM
09-13-2002 03:51 AM
Re: Disk allocation for HPUX 11.00
we have N4000 with 5 external disks, i am using for Virtual partitions( 11i)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-13-2002 04:47 AM
09-13-2002 04:47 AM
Re: Disk allocation for HPUX 11.00
In a large / filesystem, a single rogue email with multi-gigabyte crash dump will fill / and down you go. A user can't print and rather than see what's wrong, will print again (and again and again...) filling /var/spool. An application goes berserk and creates massive files in /tmp or /var/tmp. A user is learning Unix for Dummies and tries the prealloc command filling /home. The system panics due to a missing patch and fills /var/adm/crash with crash dumps...(and so on)
Each scenario is catastrophic to a single / filesystem, yet survivable with separate mount points. /home is self-evident...users will be abusers so keep them out of the HP-UX mountpoints. /tmp should be carefully managed although SysV.4 standards recommend /var/tmp rather than /tmp for all temporary user and application files (about a 10 year old standard). /var should be broken up as dictated by actual usage:
/var
/var/mail (and put limits in sendmail.cf)
/var/adm
/var/adm/crash
/var/adm/sw
/var/spool
Now, a user that prints without thinking may fill /var/spool but at least the applications still run and other users can access the system. Or a panic loop will fill up /var/adm/crash but the system run just fine.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-13-2002 05:18 AM
09-13-2002 05:18 AM
Re: Disk allocation for HPUX 11.00
I never have user data (if there is ordinary users on this system) on the root file system, all ordinary users is on a NFS-mounted filesystem. And if I install applications I create a separate filesystem for this (and for application data if needed).
I know there IS a risk the root file system becomes full (for example with logfiles) but this has never happens to me.
But, when using the default filesystem layout I have often had problems with one of this small filesystems become full (for example when installing patches or OS extensions) but there is plenty of space on other filesystems.