- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- Re: NFS problem
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
02-15-2006 04:05 AM
02-15-2006 04:05 AM
Fileserver01 - Server origin (the one which has the filesystem to be mounted by another server)
Ita1 - Server which can mount successfully the Fileserver01 NFS filesystem.
Ita2 - Server that cannot mount the Fileserver01 NFS filesystem.
Error message:
[root@ita3 log]# mount fileserver01:/bk1 /oback/bk1
mount: RPC: Unable to receive; errno = Connection refused
Configuration data in Ita3:
[root@ita3 log]# rpcinfo -p fileserver01
program vers proto port
100000 2 tcp 111 portmapper
100000 2 udp 111 portmapper
100024 1 udp 32768 status
100024 1 tcp 32768 status
391002 2 tcp 32769 sgi_fam
100011 1 udp 655 rquotad
100011 2 udp 655 rquotad
100011 1 tcp 658 rquotad
100011 2 tcp 658 rquotad
100003 2 udp 2049 nfs
100003 3 udp 2049 nfs
100003 2 tcp 2049 nfs
100003 3 tcp 2049 nfs
100021 1 udp 32770 nlockmgr
100021 3 udp 32770 nlockmgr
100021 4 udp 32770 nlockmgr
100021 1 tcp 32770 nlockmgr
100021 3 tcp 32770 nlockmgr
100021 4 tcp 32770 nlockmgr
100005 1 udp 673 mountd
100005 1 tcp 676 mountd
100005 2 udp 673 mountd
100005 2 tcp 676 mountd
100005 3 udp 673 mountd
100005 3 tcp 676 mountd
[root@ita3 log]# service portmap status
portmap (pid 10403) is running...
[root@ita3 log]# service nfs status
rpc.mountd (pid 10434) is running...
nfsd (pid 10430 10429 10428 10427 10426 10425 10424 10423) is running...
rpc.rquotad (pid 10418) is running...
[root@ita3 log]# service nfslock status
rpc.statd (pid 10455) is running...
Configuration data in Fileserver01:
[root@fileserver01 log]# cat /etc/hosts
...
209.160.184.219 fileserver01.lc.org fileserver01
209.160.184.210 ita1
209.160.184.211 ita2
209.160.184.212 ita3
[root@fileserver01 log]# cat /etc/exports
/bk1 ita1(rw,sync) ita2(rw,sync) ita3(rw,sync)
Any idea about the problem?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-15-2006 04:16 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-15-2006 04:46 AM
02-15-2006 04:46 AM
Re: NFS problem
you have limited access to portmap you
won't get to the NFS mount service.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-15-2006 04:54 AM
02-15-2006 04:54 AM
Re: NFS problem
Ensure that there is not firewall blocking your access.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-15-2006 06:31 AM
02-15-2006 06:31 AM
Re: NFS problem
All servers are in the same LAN Switch (no firewall).
[root@ita1 root]# showmount -e fileserver01
rpc mount export: RPC: Unable to receive; errno = Connection refused
As you can see, right now the problem is extended to Ita1 (there is no more successful NFS in server Ita1).
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-15-2006 06:58 PM
02-15-2006 06:58 PM
Re: NFS problem
showmount -e
only.
--
Muthu
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-16-2006 01:31 AM
02-16-2006 01:31 AM
Re: NFS problem
THANK YOU