- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Filesystem Structure of HP-UX in a SAP Environment
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-03-2004 11:07 PM
03-03-2004 11:07 PM
I always thought that /tmp and /var should be in there own filesystems.
Thanks in advance.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-03-2004 11:11 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-03-2004 11:13 PM
03-03-2004 11:13 PM
Re: Filesystem Structure of HP-UX in a SAP Environment
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-03-2004 11:15 PM
03-03-2004 11:15 PM
Re: Filesystem Structure of HP-UX in a SAP Environment
No /tmp and /var have own filesystems on our systems. / is rather small about 250 MB /var about 1 gb and /tmp about 250 mb.
Regards,
Robert-Jan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-03-2004 11:20 PM
03-03-2004 11:20 PM
Re: Filesystem Structure of HP-UX in a SAP Environment
Whether it's a SAP server or not, I would never have /tmp and /var under the root file system. The root file system should be nearly static - it should vary extremely little in size from day to day - there should be virtually no activity in it. Making your /tmp and /var into separate file systems allows you to isolate their volatility from affecting /.
That's really the *only* way to do it.
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-03-2004 11:37 PM
03-03-2004 11:37 PM
Re: Filesystem Structure of HP-UX in a SAP Environment
I am configuring the /var as 1.4GB and /tmp as 1gb and a seperate filesystem on my SAP R/3 production Server.
And i will also advise you to do the same.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-04-2004 12:09 AM
03-04-2004 12:09 AM
Re: Filesystem Structure of HP-UX in a SAP Environment
Of course /var & /tmp should be their own filesystems, BUT /tmp should *not* need to be large. /var/tmp should be where applications & users place temp files & *only* there. /tmp should really only be used by the OS for it's temp file needs.
We set our /tmp to 256 MB & /var in the 1-3 GB range depending on needs. We also set /var/adm/sw to it's own FS so the SD utils won't fill /var & impact apps.
Rgds,
Jeff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-04-2004 12:16 AM
03-04-2004 12:16 AM
Re: Filesystem Structure of HP-UX in a SAP Environment
I like my /tmp to be usually fairly small around 200-300 Mb.. but my /var to be a little bigger, usually closer to 1 Gb..
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-04-2004 12:47 AM
03-04-2004 12:47 AM
Re: Filesystem Structure of HP-UX in a SAP Environment
We also seperate these into different file systems, /tmp 512Mb, /var 2Gb.
You really don't want one of these to fill up and to be in the way of the other.
HTH,
Robert
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-04-2004 01:16 AM
03-04-2004 01:16 AM
Re: Filesystem Structure of HP-UX in a SAP Environment
The V.4 filesystem standard is more than a decade old and defined /tmp as opsystem-only, thus the reason for having it smaller (about 100-300 megs). Unfortunately, there are a lot of old scripts (or maybe old script writers) that didn't get the word that /var/tmp is the 'new and improved' general-purpose temp area.
Anyways, /var should be quite large (think gigabytes) or better yet, subdivided into subsystem-related lvols. The reason you want /var subdivided is that a specific subsystem such as email or spooling can fill /var, thus taking down your computer. That's not good. Now not everyone runs email or spooling so you have to look at what is the most variable (/var, get it?) and give it a separate lvol. That way, if /var/mail is a separate volume, a denial of service attack in the form of massive email messages will not take down the rest of your system. Similarly, an untrained user that tries to print a big file (over and over) to a printer that is out of paper, will also fill /var.
So I would suggest making the following /var directories into separate lvols to prevent a small problem from affecting the entire system:
/var/tmp (anyone can dump things there)
/var/adm (virtually all logfiles)
/var/adm/sw (patch and install backups)
/var/adm/crash (kernel crash dumps)
/var/mail (email)
/var/spool (printer jobs)
/var/opt/ignite (Ignite/UX depots)
And this also implies that / is quite small, perhaps 150 to 300 megs. If it is very large (500 megs or more), you probably have rogue applications that created their own install and/or data directories without permission from the system administrator. These directories should be moved out of / because / is defined as a STATIC directory--never changes. And for the same reason as /var...it is too critical to have uncontrolled applications filling up /.
Bill Hassell, sysadmin