- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: /opt 100% full.
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
тАО07-17-2007 12:17 AM
тАО07-17-2007 12:17 AM
/opt 100% full.
I am working on HP-ux 11i.I face the the problem of opt 100% full frequently on some servers.So can you help me out, what are the area that we could concern to make the saficient space on /opt.Thanks in advance.
- yogesh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-17-2007 12:24 AM
тАО07-17-2007 12:24 AM
Re: /opt 100% full.
# du -sk /opt/* | sort -rn
start looking through the directories for anything that can be removed/moved. Hopefully you have OnlineJFS. If so, once you get some free space you can lvextend the lvol and use fsadm to extend the file system.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-17-2007 12:54 AM
тАО07-17-2007 12:54 AM
Re: /opt 100% full.
I would also do a
find /opt -name "*log*" -exec ll {} \;
as a lot of things tend to log in /opt instead of /var.
HTH
Andrew Y
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-17-2007 01:03 AM
тАО07-17-2007 01:03 AM
Re: /opt 100% full.
A small change:
find /opt -name "*log*" -exec ls -l {} \;
Regards
Andrew Y
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-17-2007 01:11 AM
тАО07-17-2007 01:11 AM
Re: /opt 100% full.
Jov
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-17-2007 01:36 AM
тАО07-17-2007 01:36 AM
Re: /opt 100% full.
also check your apache logs.
they are by default found in : /opt/apache/logs/
hopethis helps!
kind regards
yogeeraj
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-17-2007 03:17 AM
тАО07-17-2007 03:17 AM
Re: /opt 100% full.
You may try some of these
1. #find /opt -xdev -size +10000 -exec ls -l {} \;
2. #find /opt -name "*tar"
3. Check for the openview/omniback/OV related files.
regards
Mani
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-17-2007 12:45 PM
тАО07-17-2007 12:45 PM
Re: /opt 100% full.
Application installed in /opt mount point,
Some application create, log files, core, tar
Files, So that /opt automatically increasing.
1 Inform to application team, copy to
another mount point, which more file generated
2 create cron script for removing core , log files
3 Unwanted files Remove Manual
Eg: Remove more than 30 days log files
find /opt -mtime +30 -type f -name "*.log" -exec rm {} \+
Remove more than 30 days core files
find /opt -mtime +30 -type f -name core -exec ll {} \+
Regards,
Noble Sebastian
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-17-2007 07:43 PM
тАО07-17-2007 07:43 PM
Re: /opt 100% full.
Mark Syder (like the drink but spelt different)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-04-2007 04:28 PM
тАО08-04-2007 04:28 PM
Re: /opt 100% full.
Thnx everybody!!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-05-2007 07:17 AM
тАО08-05-2007 07:17 AM
Re: /opt 100% full.
I can suggest one UNIX script that will find all biggest files in your filesystem. It will work in hpux, Solaris and Linux.
ftp this script to /usr/sbin
Usage :-
biggest.sh /opt
Regards
Prasanth
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-05-2007 07:21 AM
тАО08-05-2007 07:21 AM
Re: /opt 100% full.
I can not see the file attached , i can not open the file !!!!!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-05-2007 07:34 AM
тАО08-05-2007 07:34 AM
Re: /opt 100% full.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-05-2007 08:19 AM
тАО08-05-2007 08:19 AM
Re: /opt 100% full.
THANKS A LOT !!!