Questions tagged [nfs]

nfs (Network File System) created by Sun Microsystems. NFS allows a client system to access network files as if local.

nfs (Network File System) created by Sun Microsystems. NFS allows a client system to access network files as if local.

Versions

  1. NFSv1 - experimental ; rfc 1094 March 1989
  2. NFSv2 - also defined in rfc 1094
  3. NFSv3 - defined in rfc 1813 June 1995
  4. NFSv4 - defined in rfc 3010 Dec.2000 & revised in rfc 3530 Apr.2004
1059 questions
28
votes
2 answers

Preventing broken NFS connection from freezing the client system

We have an NFS 4 share, sharing a volume between a number of servers (NFS server, and clients all Debian 8). We have had some issues recently where network outages would freeze the client systems. Our NFS options were minimal, just rw (and so the…
UpTheCreek
  • 848
  • 3
  • 11
  • 17
18
votes
1 answer

Stop broken NFS mounts from locking a directory?

I have a somewhat interesting setup: A server with multiple remote NFS servers mounted in a folder, with that folder then being re-exported over Samba. Think of it as a share proxy, keeping all the shared folders in one place. My issue though is…
TheLQ
  • 1,406
18
votes
2 answers

User permissions in NFS mounted directory

I have oracle linux 6.7, a NFS server in Windows, and I am trying to mount a shared folder in Linux. The Windows NFS server has a shared mount : 192.168.1.10:/OracleBK In my oracle linux server, I created a folder , /orabackup and the oracle user…
saeed.sh
  • 291
18
votes
5 answers

reinit NFS client without restart

I have been working on my server, from which I export one directory using NFS. Of course over the week or so of server reboots, I multiple times forgot to umount the export filesystem in my workstation (which gets mounted from /etc/fstab on boot).…
Anthon
  • 79,293
12
votes
3 answers

NFS connection refused

I want to set up a filesharing server with NFS. But when I want to show the conetnts of export I get this: manuel@server ~ $ showmount clnt_create: RPC: Port mapper failure - Unable to receive: errno 111 (Connection refused) What is wrong with it?
9
votes
1 answer

Where are NFS defaults specified?

In regards to: Preventing broken NFS connection from freezing the client system. My system runs SLES 11.4 and I use NFS v3. In my /etc/fstab file on an NFS client system I have: mastersystem:/masterdata /data nfs defaults 0 0 Can someone tell me…
ron
  • 6,575
8
votes
1 answer

nfs mount failed: reason given by server: No such file or directory

The nfs server is running Arch Linux. The nfs client below ("pc1") is running Ubuntu 16.04. Both are using nfs4. root@PC1:~# cat /etc/fstab (relevant line shown below): server:/backup/system/pc1 /backup/system nfs4 auto,noatime 0 0 After the…
MountainX
  • 17,948
7
votes
1 answer

"Stale file handle" on certain directories occurring immediately after NFS mount; no file handles open

For some time I've been experiencing a strange issue with NFS where a seemingly random subset of directories (always the same ones) under / consistently show up with stale file handles immediately after NFS mount. I've been able to correct the…
i336_
  • 1,017
7
votes
1 answer

system lock up when storage go offline when using nfs mount options bg,hard,nointr

I had the following mount option defined on my system. In the event of any storage outage would these (bg,hard,nointr) causes to lock the console access? storage:/vol/myvol on /test type nfs…
Raza
  • 4,109
6
votes
4 answers

NFS Share with Custom Interface

I have 4 NIC in my server: eth0, eth1, eth2, eth3. It's a storage server with several disks. I have three Volume Groups: vg_share1, vg_share2, vg_share3. I want to share these Volume Groups with different NIC's like this: vg_share1 --(NFS Share)-->…
6
votes
3 answers

Mounting NFS: owners are nobody:nogroup

I mounted an NFS filesytem from the shell using the code: LINE='nfs.mit.edu:/export/evodesign/beatdb /beatdb nfs tcp,intr,rw 0 0' grep "$LINE" /etc/fstab >/dev/null || echo $LINE >> /etc/fstab mkdir /beatdb mount -a # Remount /etc/fstab Without…
5
votes
2 answers

What would cause NFS file move/delete operations to fail?

I have a medium-to-large server that all of my engineering users are on. This is a 32-core, 256GB system hosting 19 Xvnc sessions plus the plethora of tools, login sessions, and such that is implied by such a userbase. All users are configured via…
4
votes
1 answer

Smoke test for NFS?

Is there a simple test (like ping for determining if a network device is online) to determine if a NFS is enabled on a NAS? Assume root-access to the NAS via terminal command-line is available. On the NAS command line, I have tried: netstat -tulpn…
gatorback
  • 1,384
  • 23
  • 48
4
votes
1 answer

nfs remount problem

I find a strange problem when I remount nfs in RHEL7. I have shared 2 directories on nfs-server: # showmount -e Export list for localhost.localdomain: /file2 192.168.122.1 /file1 192.168.122.1 Then I mount them on my client: # sudo mount…
3
votes
1 answer

NFS does not store tails of files when program crashes

Program is running in parallel on multiple processors and is writing logs to a central host via NFS under RH7.3 or SUSE 11.3. If program crashes or hangs then tails of log files are lost and we lack information on the location and reason of the…
vladimir
  • 31
  • 1
1
2 3 4