- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- find / command hang
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
04-24-2008 09:48 AM
04-24-2008 09:48 AM
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-24-2008 10:02 AM
04-24-2008 10:02 AM
Re: find / command hang
# find /usr /opt -type f -name ...
If you believe that what you want is in the root filesystem and *don't* want to visit mountpoints, do:
# find / -xdev -type f -name ...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-24-2008 10:06 AM
04-24-2008 10:06 AM
Re: find / command hang
> [...] I open another session [...]
Session? How? From what?
How much network hardware is between you and
the new server? (And how much of it works
properly?)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-24-2008 10:14 AM
04-24-2008 10:14 AM
Re: find / command hang
I am one switch away from this server. Another session means ssh. A couple days ago, I actually connected the network cable directly from the server (gigabit lan0) to my laptop (also gigabit) and the find command still hanged.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-24-2008 10:48 AM
04-24-2008 10:48 AM
Re: find / command hang
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-24-2008 12:09 PM
04-24-2008 12:09 PM
Re: find / command hang
What is your file buffer cache set to ? The default ?
kctune|grep filecache_max
A good number is around 500-600MB not 50% of physical RAM.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-25-2008 08:35 AM
04-25-2008 08:35 AM
Re: find / command hang
That seems to solve the problem. I am quite happy but not celebrating cause I need to make sure the problem actually go away. I'll assign point when I close this thread.
Thanks,
Jason
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-25-2008 10:28 AM
04-25-2008 10:28 AM
SolutionThat darn default buffer cache setting has been at 50% of RAM and causing problems since HPUX 10.20 was released.
Maybe some day. I would have thunk that when the HPUX gods changed the name of the kernel parameter that they would have gotten rid of that "stupid" ( yes I said it ) default of 50%.
Think of it this way. Let me queue up 1GB, 2GB 10GB of data in RAM then force the flush to disk a couple seconds later.
Unless you are using the server for some static file intensive processing. Keep it low (based on situation). Buffer caches were to be a benefit not a hinderance. ( I also experienced this in Windows and MAC world, IE, Safari, Firefox ) with increasing physical RAM sizes buffering and managing itself has become self defeating.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-30-2008 03:59 PM
04-30-2008 03:59 PM
Re: find / command hang
Reducing the filecache_max to a lower number solves the problem
Thanks everyone
Jason