- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- ls -l hangs in /net
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
11-08-2006 03:20 AM
11-08-2006 03:20 AM
ls -l hangs in /net
I have a problem, when I do ls -l, its hangs.
The same when I do fuser /net or cd /net.
I have nfs filesystems mounts in it.
What can I do?
Thanks!,
Carmen.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-08-2006 03:41 AM
11-08-2006 03:41 AM
Re: ls -l hangs in /net
Then you best reconnect properly.
umount /net
And you may try to stop and start
the nfs deamons.
Depending on whether this is the client
or server or both you can
/sbin/init.d/nfs.client stop
/sbin/init.d/nfs.server stop
/sbin/init.d/nfs.client start
/sbin/init.d/nfs.server start
mount /net
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-08-2006 03:43 AM
11-08-2006 03:43 AM
Re: ls -l hangs in /net
What does bdf show? Does it hang too?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-08-2006 01:34 PM
11-08-2006 01:34 PM
Re: ls -l hangs in /net
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-09-2006 02:29 AM
11-09-2006 02:29 AM
Re: ls -l hangs in /net
You must also check for proper name resolution. If this host cannot resolve the NFS server's hostname, you will also see this problem.
Regards,
Mark
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-09-2006 03:08 AM
11-09-2006 03:08 AM
Re: ls -l hangs in /net
Try to unmount the file system which is having issue and restart the nfs dameons.
also please ensure that the nfs server which is sharing that filesystem is alive.
Thanks,
Siva
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-10-2006 12:22 AM
11-10-2006 12:22 AM
Re: ls -l hangs in /net
I have had this happen before. I came in and noticed all my file system backups fail because of a lost nfs mount was causing network timeout error in netbackup. One reason I don't like mounting nfs on a server.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-17-2007 08:01 PM
01-17-2007 08:01 PM
Re: ls -l hangs in /net
http://forums1.itrc.hp.com/service/forums/helptips.do?#28
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-17-2007 10:18 PM
01-17-2007 10:18 PM
Re: ls -l hangs in /net
Step1:
#rpcinfo -u
#rpcinof -u
#rpcinfo -u
#rpcinfo -u
or
Step2:Restart nfs server daemons.
or
Finally reboot the nfs server.
Regds
B.Ganesh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-18-2007 11:52 AM
01-18-2007 11:52 AM
Re: ls -l hangs in /net
advices for nfs server side were already given, I just would add one for the client side.
It might prove better to use autofs to mount nfs stuff instead of having entries directly in /etc/fstab. It might cause some headache during boot when nfs server is not available as system will wait until nfs server becomes available.
Steps:
1. Setup /etc/rc.config.d/nfsconf:
AUTOFS=1
AUTO_MASTER="/etc/auto_master" AUTOMOUNT_OPTIONS=""
AUTOMOUNTD_OPTIONS=""
2. Check also for following in nfsconf:
NFS_CLIENT=1
NFS_SERVER=1
NUM_NFSD=4
NUM_NFSIOD=4
3. Setup /etc/auto_master:
/- /etc/auto.direct
4. Setup /etc/auto.direct:
5. Restart automounter:
/sbin/init.d/nfs.client stop
/sbin/init.d/nfs.client start