- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- file system is growing
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
Discussions
Discussions
Discussions
Forums
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
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-12-2008 01:30 PM
тАО09-12-2008 01:30 PM
In one of our HP-UX 11i server, one file system is growing like anything. When i checked the directories i really couldn't find any huge files. Please let me know how to find the hidden or suspicious files.
Thanks in advance.
vthiru
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-12-2008 02:32 PM
тАО09-12-2008 02:32 PM
Re: file system is growing
Specifying *which* filesystem would lead to a better answer, but as a first approximation I suggest doing:
# du -xk /path | sort -knr1,1 | more
...which presents the largest utilzation to the lowest. This helps identify where you might want to look first.
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-12-2008 03:04 PM
тАО09-12-2008 03:04 PM
Re: file system is growing
It is one of the TWS file system and the growing directory is stdlist.
I am using the below command to check and remove the files manually:
du -axk | sort -nr | more
Regards,
Thiru
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-12-2008 03:53 PM
тАО09-12-2008 03:53 PM
SolutionThe stdlist directory under the TWS directory can grow to be quite large. The stdlist directory holds logs and output from ALL jobs run on that particular server. If you run lots of jobs, it can grow quite quickly.
Under the stdlist directory you will find directories separated out by day. The format is YYYY.MM.DD, I believe.
So, if you cd into the stdlist directory you can then do a 'du -ks *' and see the size of each days directory.
This directory is allows you to see the job logs if you set an alternate plan of a past date in the TWS GUI.
If you have never cleaned this directory out, then you will have logs from every day since you started using TWS.
I try to make it a habit to clean out the stdlist directories on all of my TWS clients and server periodically. This thread reminds me that it is probably time to do that agin.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-12-2008 03:55 PM
тАО09-12-2008 03:55 PM
Re: file system is growing
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-13-2008 04:11 AM
тАО09-13-2008 04:11 AM
Re: file system is growing
I completely agree with you. But whats happening is if I use "du -ks" command it is not showing up all the files under it. And also, in normal the directories are at around 25MB size only. But suddenly it started growing to around 600MB from 10th. There is some issue with the TWS job hosted in that server. I will work with the job owner and will figure it out.
Thanks again.
Thiru.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-13-2008 04:13 AM
тАО09-13-2008 04:13 AM
Re: file system is growing
Thiru.