Questions tagged [nfsclient]

76 questions
0
votes
1 answer

apply NFS server user to the client

I want that my client NFS have RW privileges to my shared mounted FS without have to create any user on my client machine that match with the ID user on the NFS server machine. On my NFS server I export the NFS as below: /mnt/ugp-repmed …
Felipe
  • 7,013
  • 8
  • 44
  • 102
0
votes
3 answers

python libnfs NfsClient create file

I am new to python libnfs (NfsClient). I am trying to create a new file of a certain size on the server. Can someone please tell me how to? If I try to open in write mode I get Invalid file error (file does not exist). I looked at there is a _create…
CodeWithPride
  • 123
  • 3
  • 14
0
votes
1 answer

NFSClient issue on FreeBSD: "rpc.umntall: not found"

We have a FreeBSD 8 server that hasn't been restarted since it got booted. It has been restarted now and we're trying to reconnect the NFS mount to it. $ sudo /etc/rc.d/nfsclient start NFS access cache time=60 rpc.umntall: not found The obvious…
Jono
  • 3,393
  • 6
  • 33
  • 48
0
votes
1 answer

Does NFS download files to the client or does the client access them remotely on the NFS server?

I've been studying NFS and what I don't understand is this: after the client receives the filehandle from the server (all the way at the end of the whole NFS/mountd/NFSd etc. communication process) is the file data then written somewhere on the…
Dimpermanence
  • 47
  • 1
  • 9
0
votes
2 answers

Using NFSPROC3_READDIRPLUS in C#

I am using the source code of this C# Client for NFS: https://github.com/DeCoRawr/NFSClient Everything is working fine, but there is on function I can't seem to call successfully. There are two functions which list folder items: READDIR and…
Roman
  • 91
  • 10
0
votes
1 answer

Files written to the NFS storage is corrupted sometimes

We have a production system where we are generating 1000s of XML files each having the max size of 150MB everyday to NFS storage mounted to our applications servers. Both NFS and application servers are running on Solaris 10 operating system. We are…
Mayuran
  • 669
  • 2
  • 8
  • 39
0
votes
1 answer

NFS Configuration: 2 slaves and 1 master

how are you? I'm setting up a NFS server to handle file sync between 2 slaves, but I can't find a configuration file that handles this kind of structure. My desired outcome is: 1 master (nfs server) (this is the only machine with write access). 2…
lucaschain
  • 33
  • 6
0
votes
1 answer

Copy file from FTP site to NFS share in Windows

We have setup a NFS share(//191.232.xx.xxx/export/share) in windows and mapped to Z:. Now we need copy a file from FTP server to Z:. When we try following it works Z:\> (share NFS) ftp server.com ftp>get text.file Above copies the file to…
user1595858
  • 3,700
  • 15
  • 66
  • 109
0
votes
1 answer

How to get size of NFS Export point at client side?

Can anyone please tell me how to get the size of the NFS Export point at the client side if the export point is available? Is there any command / Java API available for the same?
user3062513
  • 410
  • 1
  • 10
  • 19
0
votes
1 answer

Nfs client on Window7

I have setup Nfs server on fedora19 and started all the service like rpcbind,nfs-lock,nfs-server,nfs-idmap when i type in terminal"sudo vi /usr/sbin/exportfs" i get o/p [root@balkrishna balkrishna]# sudo vi /usr/sbin/exportfs …
CY5
  • 449
  • 2
  • 5
  • 11
0
votes
1 answer

Shebang line in script on NFS mount on Linux client doesn't seem to work

Here is our test script... #!/bin/bash echo "Hello World" It is on an NFS share that is mounted on a Linux client. If we call the script like this: ./testscript.sh then we get this: sh: ./testscript.sh: Permission denied If we call it like…
byumark
  • 298
  • 1
  • 6
0
votes
1 answer

NFS client side locking for a file currently being written to in the remote NFS server

I have mounted a NFS mount in my local machine (So, I suppose my machine is the NFS client) and a file is being written in the NFS mount by the remote machine hosting the NFS mount (NFS server). Now, how will I be able to detect using JAVA that the…
SSaikia_JtheRocker
  • 5,053
  • 1
  • 22
  • 41
0
votes
1 answer

Client for NFS using increasing amount of CPU

We have an issue with Microsoft’s client for NFS sometimes using a large amount of CPU (50-100%) when accessing a NFS share on a linux box. The server seems to get in a state where accessing the NFS starts to use an increasing amount of CPU to do…
lesma
  • 19
  • 5
0
votes
1 answer

NFS server and client installation in ubuntu

I have installed NFS server and Client on separate machines. The problem is when i mount the shared directory on client side using command mount server_addr:server_dir client_dir But it gives an error saying that don't have permission to share…
Bhushan Baviskar
  • 53
  • 1
  • 2
  • 8
-1
votes
1 answer

How to open downgrade a file in python using an NFS mount

I am running some experiments against NFS and would like to open-downgrade a file in my NFS mount but I do not which python command should I use for that.
user1071840
  • 3,522
  • 9
  • 48
  • 74