- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: how to response the request to add more space?
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
05-19-2004 08:59 AM
05-19-2004 08:59 AM
Now, this time, the file systems they suspect with have the space of 2Gb, and 900mb(/tmp), I believe should be big enough, however, they still ask me to increase the /tmp.
Other than the error message, they don't have any thing else to be sure it is space problem.
I don't think it is right way to approach the problem. From SA point of view, what is approproate response or approach to looking into the issue?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-19-2004 09:07 AM
05-19-2004 09:07 AM
Solutionthere should be log entry telling which file system was full and when that occured. you should be able to match the log entry to when their error occured.
and having the error message is only part of the information needed by you. The most important part is "what were you doing" that caused the error message. And, can you reproduce their error by doing the same thing.
that is a start to correcting the issue.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-19-2004 09:08 AM
05-19-2004 09:08 AM
Re: how to response the request to add more space?
You can check the syslog log file and see if it has any entries complaining about running out of disk space. If you don't see any complaints there, it might suggest that they have another problem, such as file/directory permissions, or having too many open files. I would also try to steer them towards using /var/tmp for temp files instead of /tmp.
JP
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-19-2004 09:24 AM
05-19-2004 09:24 AM
Re: how to response the request to add more space?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-19-2004 09:24 AM
05-19-2004 09:24 AM
Re: how to response the request to add more space?
I know it could be file/dir permissions, and too many files opened, which I've already told them, but they still insist on requeting of adding more space.
I checked syslog.log, and don't see any message like fs full, or anthing possibly caused the problem.
what I should ask them to check out, specifically, and should I as SA do what they asked under this cicumstances?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-19-2004 09:26 AM
05-19-2004 09:26 AM
Re: how to response the request to add more space?
- John
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-19-2004 09:32 AM
05-19-2004 09:32 AM
Re: how to response the request to add more space?
As a good sys admin, you are wise to resist efforts to solve problems by throwing disk space at it, jacking up kernel parameters, etc. It may seem a little harsh, but you will serve them better by resisting efforts to solve problems until you know what the specific problem is.
Hang in there!
JP
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-19-2004 09:36 AM
05-19-2004 09:36 AM
Re: how to response the request to add more space?
To add to the point JP just made, I would say it is wise to resist efforts to solve problems merely by implementing the solution proposed by the customer without knowing for yourself what the cause of the problem is.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-19-2004 09:38 AM
05-19-2004 09:38 AM
Re: how to response the request to add more space?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-19-2004 01:40 PM
05-19-2004 01:40 PM
Re: how to response the request to add more space?
You can use 'compress' or 'gzip'. If you have problems with disk space on the drive where your large files are stored, you should find a filesystem with available free space and create an archive directory to move the files to and then compress them there.
You can set up a crontab entry to save off and compress the files based on their age and then move the file to the archive directory. The two commands you would set up in the crontab woud be something like:
find
mv
If you'd rather delete them, just use the find command and perform a rm of the file(s) found.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-19-2004 01:45 PM
05-19-2004 01:45 PM
Re: how to response the request to add more space?
Regds,
Kaps