vote up 0 vote down star
1

I know this isn't programming related, but the IT version of SO isn't out yet. I figured some of the crazy smart folks here could help me out...

We recently upgrade all of out development hardware and also migrated from RHEL4 to RHEL5. On the new machines the "ls" command randomly stalls for a couple seconds. The duration of the stall seems consistent and potentially in line with some sort of timeout. I initially thought this might be due to a network problems. I have one CIFS mount and we use NIS for auth. After removed the CIFS mount and I figure the problem may be related to NIS. DMESG and other logs offer no clues.

UPDATE: 'ls' is just an example, happens with any program that touches the file system.
UPDATE: Doesn't matter if the file system is local or remote

Any thoughts?

flag

Does it ever happen on local file systems, or only network mounted drives? – Paul Tomblin Feb 12 at 14:07
Any time I run ls (or really anything that touches the FS). Local/remote, doesn't matter – basszero Feb 12 at 14:10
You are aware of the rules but choose to ignore them? Can we extrapolate the way you administrate your systems from that? Then I wouldn’t wonder why things randomly break. – Bombe Feb 12 at 14:10
I'm not the sysadmin at the shop, just trying to help him out a bit. There are plenty of questions that ignore the rules here, I tried to be polite about it. Sorry. – basszero Feb 12 at 14:12
Actually this can be programming related. Lots of programs access the file system and I assume they would experience the same delay. – bruceatk Feb 12 at 14:13
show 1 more comment

closed as not programming related by Paul Tomblin, Bombe, Aron Rotteveel, R. Bemrose Feb 12 at 14:14

2 Answers

vote up 0 vote down

ls maybe needs the auth-info of the user.

is there any trouble connecting to the NIS-Server?

DNS-Problems ?

maybe ls cannot reach the primary NIS-server and switch to a secondary (while you wait)

link|flag
vote up -1 vote down

I have two suggestions that might help you to find where the problem could be occurring.

My first suggestion would be to try BusyBox out. You can find the source here:

http://www.busybox.net/

Though RHEL most likely has an RPM for it. You can softlink the ls command to it(i.e. ln -s) and see if the ls command that it provides does the same thing. If not it may be a minor issue with your version of ls.

The other thing you could try is get the source for coreutils(ls is part of the coreutils package):

http://www.gnu.org/software/coreutils/

Compile them with debugging symbols, and if the newly compiled version of ls has the same strange stall, you could attach with a debugger to see what it is doing.

These suggestions are probably overkill and more work than its worth but who knows, maybe they'll help.

link|flag

Not the answer you're looking for? Browse other questions tagged or ask your own question.