Fedora Linux Support Community & Resources Center
  #1  
Old 2nd February 2011, 04:05 AM
djjeffington Offline
Registered User
 
Join Date: May 2010
Location: Arlington VA
Posts: 5
macosfirefox
NFS problems

Hi All,

I'd like to share files between two Fedora 14 systems, but I'm having difficulty with making a share accessible via NFS. Here's what I've tried so far:

NFS Server

cat /etc/exports shows
/data * (rw,sync)

Verified that /etc/hosts.deny is empty

Verified that nfs and rpcbind services are on in chkconfig

restarted nfs and rpcbind services

verified connectivity to client

NFS client

verified connectivity to server

Tried following mount commands:

[root@djjeff /]# mount -t nfs -o rw 192.168.1.115:/data /mnt/home
mount: wrong fs type, bad option, bad superblock on 192.168.1.115:/data,
missing codepage or helper program, or other error
(for several filesystems (e.g. nfs, cifs) you might
need a /sbin/mount.<type> helper program)
In some cases useful info is found in syslog - try
dmesg | tail or so

[root@djjeff /]# mount //192.168.1.115/data /mnt/home
Password:
Unable to find suitable address.
Used both the user and root password with this second mount command.

I feel like I'm missing something simple with this setup, but I'm stumped. Any ideas would be greatly appreciated. Thanks!

Jeff
Reply With Quote
  #2  
Old 2nd February 2011, 08:57 AM
glennzo's Avatar
glennzo Online
Un-Retired Administrator
 
Join Date: Mar 2004
Location: Salem, Mass USA
Posts: 13,934
linuxchrome
Re: NFS problems

I believe that it should be mount -t nfs4 .....

Or maybe not. Works with just plain old nfs here. Do you need to run exportfs after making changes but before attempting to mount the share?
__________________
Glenn
The Bassinator © ®


Laptop: Toshiba Satellite / Intel Core 2 Duo 1.73 GHz / 2GB / 160GB / Intel Mobile 945GM/GMS/GME/943/940GML Integrated Graphics
Desktop: BioStar MCP6PB M2+ / AMD Phenom 9750 Quad Core / 4GB / 1TB SATA / 500GB SATA / EVGA GeForce 8400 GS 1GB
Reply With Quote
  #3  
Old 2nd February 2011, 09:02 PM
gthill's Avatar
gthill Offline
Registered User
 
Join Date: May 2005
Location: g-land, east java
Age: 49
Posts: 387
macossafari
Re: NFS problems

mount 192.168.1.115:/data /mnt/home

Note that you had incorrect syntax in your mount command.

If it still does not work, on the client
showmount -e 192.168.1.115
Will show you what mounts are available on the server
Reply With Quote
  #4  
Old 2nd February 2011, 09:25 PM
SiliconSlick's Avatar
SiliconSlick Offline
Registered User
 
Join Date: Aug 2009
Location: College Station, TX
Posts: 501
linuxfedorafirefox
Re: NFS problems

1) maybe a firewall issue... try disabling temporarily to see if that helps
2) be sure to reboot or run 'exportfs -rv' as glennzo suggested
3) check /var/log/messages on the server for possible error messags
and
4) just FYI for future reference: There is a _BIG_ difference between:
Code:
/data hostX(rw,sync)
and
Code:
/data hostX (rw,sync)
The former limits access to hostX with rw,sync options. However, the latter provides default options to hostX and rw,sync to EVERYONE ELSE ON THE NET. Note that that is not the cause of your connection issue here since your are restricting access to '*' (everyone) anyway, but be aware, that if the default mount mode is async (which it is), then what you have is granting async (not sync) connectivity. That one little space can make a big difference (as I have can attest to). If you really want it to be sync you need to get rid of the space between "*" and "(rw,sync)".

SS
Reply With Quote
  #5  
Old 2nd February 2011, 09:28 PM
jpollard Offline
Registered User
 
Join Date: Aug 2009
Location: Waldorf, Maryland
Posts: 6,108
linuxfedorafirefox
Re: NFS problems

You can also test the server from both client and server with

rpcinfo -p <server>

It is not necessary to put the server name/IP number if you are on the server.

The results should be close to:
Code:
$ rpcinfo -p
   program vers proto   port  service
    100000    4   tcp    111  portmapper
    100000    3   tcp    111  portmapper
    100000    2   tcp    111  portmapper
    100000    4   udp    111  portmapper
    100000    3   udp    111  portmapper
    100000    2   udp    111  portmapper
    100024    1   udp  47771  status
    100024    1   tcp  35372  status
    100011    1   udp    875  rquotad
    100011    2   udp    875  rquotad
    100011    1   tcp    875  rquotad
    100011    2   tcp    875  rquotad
    100021    1   udp  54156  nlockmgr
    100021    3   udp  54156  nlockmgr
    100021    4   udp  54156  nlockmgr
    100021    1   tcp  59673  nlockmgr
    100021    3   tcp  59673  nlockmgr
    100021    4   tcp  59673  nlockmgr
    100003    2   tcp   2049  nfs
    100003    3   tcp   2049  nfs
    100003    4   tcp   2049  nfs
    100227    2   tcp   2049  nfs_acl
    100227    3   tcp   2049  nfs_acl
    100003    2   udp   2049  nfs
    100003    3   udp   2049  nfs
    100003    4   udp   2049  nfs
    100227    2   udp   2049  nfs_acl
    100227    3   udp   2049  nfs_acl
    100005    1   udp  32987  mountd
    100005    1   tcp  44763  mountd
    100005    2   udp  32987  mountd
    100005    2   tcp  44763  mountd
    100005    3   udp  32987  mountd
    100005    3   tcp  44763  mountd
Reply With Quote
  #6  
Old 4th February 2011, 05:42 AM
djjeffington Offline
Registered User
 
Join Date: May 2010
Location: Arlington VA
Posts: 5
macosfirefox
Re: NFS problems

Hey Guys,

Thanks for all of the advice, but I still haven't had any luck so far. I rebooted the server, then disabled the Firewall and SELinux on both the client and server. I also disabled the firewall on my router. No luck. I can see the nfs shares when I run showmount -e 192.168.1.115 from the client, and portmapper and nfs appear to be running when I use the command rpcinfo -p 192.168.1.115.

I tried the mount command as suggested by gthill and had the following result:

[root@djjeff log]# mount 192.168.1.115:/data /mnt/home -v
mount: no type was given - I'll assume nfs because of the colon
mount.nfs: timeout set for Thu Feb 3 02:12:38 2011
mount.nfs: trying text-based options 'vers=4,addr=192.168.1.115,clientaddr=10.211.55.5'
mount.nfs: mount(2): Operation not permitted
mount.nfs: rpc.statd is not running but is required for remote locking.
mount.nfs: Either use '-o nolock' to keep locks local, or start statd.
mount.nfs: an incorrect mount option was specified

I didn't see anything useful in /var/log/messages on the server, and I see the following on the client:

Feb 3 02:11:44 djjeff rpc.statd[2242]: Version 1.2.2 starting
Feb 3 02:11:44 djjeff rpc.statd[2242]: Flags: TI-RPC
Feb 3 02:11:44 djjeff rpc.statd[2242]: failed to create RPC listeners, exiting

Any more ideas?

I'm using the same username and password combo on both systems, is that possibly the source of my problems?

Thanks

Jeff
Reply With Quote
  #7  
Old 4th February 2011, 12:10 PM
gthill's Avatar
gthill Offline
Registered User
 
Join Date: May 2005
Location: g-land, east java
Age: 49
Posts: 387
windows_xp_2003firefox
Re: NFS problems

This looks like the first problem to source

mount.nfs: trying text-based options 'vers=4,addr=192.168.1.115,clientaddr=10.211.55.5'

googling "mount.nfs: trying text-based options" and looking for issues that are similar to yours might give you some leads.

Also, are the client server on different subnets, you may have a routing issue.
Reply With Quote
  #8  
Old 4th February 2011, 01:51 PM
jpollard Offline
Registered User
 
Join Date: Aug 2009
Location: Waldorf, Maryland
Posts: 6,108
linuxfedorafirefox
Re: NFS problems

Have you done "rpcinfo -p <server>" from the client?
Reply With Quote
  #9  
Old 26th October 2012, 07:45 PM
Xavior Offline
Registered User
 
Join Date: Aug 2006
Location: USA
Posts: 323
linuxfirefox
Re: NFS problems

Mine says:
$ mount /sharedir
mount.nfs: rpc.statd is not running but is required for remote locking.
mount.nfs: Either use '-o nolock' to keep locks local, or start statd.
mount.nfs: an incorrect mount option was specified

What is this, it shows rpc.statd running...

~Needs Help

---------- Post added at 11:45 AM ---------- Previous post was at 11:42 AM ----------

This was working fine, until I upgraded from F14 to F17....

# systemctl status nfs-lock.service
nfs-lock.service - NFS file locking service.
Loaded: loaded (/usr/lib/systemd/system/nfs-lock.service; enabled)
Active: active (running) since Fri, 26 Oct 2012 11:03:36 -0700; 39min ago
Process: 924 ExecStart=/sbin/rpc.statd $STATDARG (code=exited, status=0/SUCCESS)
Process: 916 ExecStartPre=/usr/lib/nfs-utils/scripts/nfs-lock.preconfig (code=exited, status=0/SUCCESS)
Main PID: 926 (rpc.statd)
CGroup: name=systemd:/system/nfs-lock.service
└ 926 /sbin/rpc.statd

Oct 26 11:03:35 MyPC rpc.statd[926]: Version 1.2.6 starting

Any ideas?
Reply With Quote
  #10  
Old 26th October 2012, 07:49 PM
SiliconSlick's Avatar
SiliconSlick Offline
Registered User
 
Join Date: Aug 2009
Location: College Station, TX
Posts: 501
linuxfirefox
Re: NFS problems

1) I think forum decorum generally recommends you start a new thread when reporting new problems and not "hijacking" one that is over a year old.

2) That said... you might want to make sure statd/lockd are running on the NFS server (as opposed to the client). Just one thought...

SS (reaching for low-hanging fruit)
Reply With Quote
  #11  
Old 26th October 2012, 07:52 PM
jpollard Offline
Registered User
 
Join Date: Aug 2009
Location: Waldorf, Maryland
Posts: 6,108
linuxfirefox
Re: NFS problems

Different problem.

Actually, looks like two problems.

1. According to the status it exited... The log file should show WHY it exited, but might not (the problem of systemd loosing error messages during startup)

2. If you are using NetworkManager, the network may not be ready for use. Have you enabled NetworkManager-wait-online.service ?
Reply With Quote
  #12  
Old 26th October 2012, 11:51 PM
Xavior Offline
Registered User
 
Join Date: Aug 2006
Location: USA
Posts: 323
linuxfirefox
Re: NFS problems

Sorry about that, I forgot in my passion to find an answer, will start new post !
Thanks !
Reply With Quote
Reply

Tags
nfs, problems

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
ldap, boot problems, login problems slidgey Servers & Networking 4 16th August 2007 10:42 PM
Stupid nOOb with boot up problems, internet problems...the works. phearthepenguin Servers & Networking 30 23rd August 2006 05:33 PM
Firefox problems and problems with Laptop sound card. j_villa1983 Hardware & Laptops 3 22nd August 2006 05:54 AM
How to debug suspend problems? Buggy kernel option parsing? SATA problems? chrismon Using Fedora 0 11th August 2006 04:31 PM
Postfix, outgoing mail problems, ssl problems Otsego Using Fedora 4 24th June 2006 11:35 AM


Current GMT-time: 09:41 (Saturday, 25-05-2013)

TopSubscribe to XML RSS for all Threads in all ForumsFedoraForumDotOrg Archive
logo

All trademarks, and forum posts in this site are property of their respective owner(s).
FedoraForum.org is privately owned and is not directly sponsored by the Fedora Project or Red Hat, Inc.

Privacy Policy | Term of Use | Posting Guidelines | Archive | Contact Us | Founding Members

Powered by vBulletin® Copyright ©2000 - 2012, vBulletin Solutions, Inc.

FedoraForum is Powered by RedHat