Questions tagged [nfs]

NFS is an acronym for Network File System, a network file system developed by Sun Microsystems most often associated with the Unix family of operating systems.

NFS is an acronym for Network File System, a network file system developed by Sun Microsystems most often associated with the Unix family of operating systems.

NFS is derived from the distributed file system mechanism. It is generally implemented in computing environments where the centralized management of data and resources is critical. Network file system works on all IP-based networks. It uses TCP and UDP for data access and delivery, depending on the version in use.

Network file system is implemented in a client/server computing model, where an NFS sever manages the authentication, authorization and management of clients, as well as all the data shared within a specific file system. Once authorized, clients can view and access the data through their local systems much like they'd access it from an internal disk drive

1399 questions
0
votes
0 answers

Linux NFS - set default user for new files on nfs share

I use CentOs as nfs server nad 2 Centos machines as clients. I have some problems with permisions/ownership for new files/directories created from clients on nfs share. My exports file: /media/nfsshare *(rw,sync,no_root_squash) And my…
user1209216
  • 7,404
  • 12
  • 60
  • 123
0
votes
1 answer

Permission Denied with mounting NFS with Webmin (Mac OSX + Ubuntu Setup)

The Goal I have the following setup - Home Server running Ubuntu 13.10 Laptop running Mac OSX 10.9 (Mavericks) I'm trying to export the Home Server directory ~/Documents as an NFS mount that can be accessed from my mac laptop Ubuntu Setup I used…
user2490003
  • 10,706
  • 17
  • 79
  • 155
0
votes
1 answer

change shutdown sequence to avoid nfs umount failure

I am running strain of raspbian (debian-based) on my Raspberry Pi, and during reboots, the device seems to hang on shutdown while trying to unmount an NFS directory... .... [ok] Stopping Network connection manager: wcid. ..... [[timestamp]] nfs:…
etsauer
  • 347
  • 2
  • 6
  • 12
0
votes
1 answer

How do you map a NFS drive location to a subdirectory on windows 7?

How do you map a NFS drive location to a subdirectory on windows 7? I have a NFS linux location: $ mount /nfs on nfs1.wgresorts.com:/nfsdata/export2/dev…
ggb667
  • 1,881
  • 2
  • 20
  • 44
0
votes
1 answer

Incrond Monitor NFS mounts?

I am having issues with incrond IN_CREATE option. I am able to successfully monitor the directory created in a specific folder which are locally created. But incrond is not able to monitor NFS mounted directories. I have added an cifs NFS mount…
serverliving.com
  • 437
  • 1
  • 6
  • 16
0
votes
1 answer

Resolving Symbolic Links While Avoiding Timeout

I am currently resolving a list of symbolic links in C (POSIX environment). Some of which point to an NFS. Some of the NFS have been taken offline temporarily. Is there a way to avoid or minimize timeouts when resolving an offline NFS?
Steven
  • 11
  • 4
0
votes
1 answer

NFSv4 which "domain" to put in idmapd.conf?

I'm using NFSv4 but suddenly when the NFS Server got rebooted, all the files on the Clients are having nobody ownerships after the Server is booted and started its whatever services. Then i found some solutions to set the Domain=_____ in the…
夏期劇場
  • 17,821
  • 44
  • 135
  • 217
0
votes
1 answer

ls and chmod not working on a nfs mounted file

I mounted a directory using nfs. I am able to cd into the mounted directory and able to list the one file in the directory. But when I try a ls -li on the file, it keeps failing with ls: rst_dst/testnew1: Permission denied. I tried to chmod the file…
siri
  • 123
  • 1
  • 13
0
votes
1 answer

Treat hard mounted NFS volume as soft

I am writing a C program for Linux that reads and writes to files on an NFS server. The share is mounted hard; attempts to access it will block indefinitely until they work. Having my program block indefinitely is bad; it is still capable of doing…
Alan De Smet
  • 1,699
  • 1
  • 16
  • 20
0
votes
1 answer

How does Openstack cinder on controller node make NFS share of volumes available to compute node?

NFS mount on compute node under the covers using brick? Leveraging NFS support in libvirt? Just don't understand the magic.
0
votes
2 answers

"sync" command over NFS

I'm working on a backup system over NFS, and I want to ensure as much as I can that the files are really written to the disk. Currently, when doing backups on my local hard disk, I copy everything into a temporary folder, do a sync() to flush the…
Rastersoft
  • 1
  • 1
  • 3
0
votes
1 answer

NFS uid mapping - reboot

I (as everybody )))) try to mount NFS folder on client while keeping UIDs on CentOS 6.5. So I have user test with uid 10000 on server (useradd -u 10000 -g 9999 test), that has files belonging to him. I export folder with no_all_squash option. After…
Vova l
  • 213
  • 6
  • 15
0
votes
2 answers

Check if NFS Directory Mounted without Large Hangs on Failure

I'm writing a shell script to check whether or not certain nfs mounts can be seen by nodes in a cluster. The script works by doing an ls /nfs/"machine" |wc -l and if it's greater than 0 it will pass the test. My main concern with this solution is…
stuts
  • 45
  • 2
  • 5
0
votes
2 answers

flock and NFS -- what happens upon unexpected shutdown?

I am using flock within an HPC application on a file system shared among many machines via NFS. Locking works fine as long as all machines behave as expected (Quote from http://en.wikipedia.org/wiki/File_locking: "Kernel 2.6.12 and above implement…
Dr. Jan-Philip Gehrcke
  • 33,287
  • 14
  • 85
  • 130
0
votes
1 answer

NFS server and client for web servers on Amazon EC2, high load average

I have this architecture on Amazon EC2, one NFS server and one NFS client, on the client I am serving PHP and Django websites (nginx, uwsgi, php-fpm) and they work perfectly. I am experiencing an issue when I spin up another NFS client instance base…
James Lin
  • 25,028
  • 36
  • 133
  • 233