is it possible to export more than one nfs share for a single client?
in my /etc/export i have:
/share/dir1 client1_hostname*(rw,fsid=0,sync,no_root_squash)
/share/dir2 client1_hostname*(rw,fsid=0,sync,no_root_squash)
on the client side when i mount the directries
mount -t nfs server_ip:/share/dir1 /client/dir1
mount -t nfs server_ip:/share/dir2 /client/dir2
the mount is successfuly
I have an NFSv3 export from a Linux fileserver which used to mount fine. The fileserver had to go down for hardware maintenance. After bringing the server back up, the Linux client can no longer mount the nfs export.
No configuration has changed on the server or the client.
My nfs daemon is not starting up anymore. I see the following entries in the syslog:
Sep 26 18:21:10 VOXWEBPRODDHNCGN001 mountd[3401]: Kernel does not have pseudo root support.
Sep 26 18:21:10 VOXWEBPRODDHNCGN001 mountd[3401]: NFS v4 mounts will be disabled unless fsid=0
Sep 26 18:21:10 VOXWEBPRODDHNCGN001 mountd[3401]: is specfied in /etc/exports file.
What can be the problem?
what I am trying to do is to mount NFS server in read only mode.
I downloaded an NFS client (Nekodrive) for windows and was able to see the content without any credentials.
Now when i try to use
sudo mount viviane.scitech.qut.edu.au:/pub/nfs /mnt/viviane
It gives out an error message which is acces denied by the server. even though I used -r option it did not change anything.
If you have anything in /etc/rc.conf related to rpcbind or nfs-common or nfs-server you need to put !
Hello. I have been using ubuntu off and on for nearly a year. Today I decided to ditch samba and try NFS for the first time. After a rough hour I finally got it working but since it does not as for a username & password like samba I was wondering if there was any tips to making sure it is as secure as possible without using SSH.
I copied somebody's NFS server/client setup verbatim and am having trouble making sense of what's going on with it. This is the /etc/exports:
/export *(rw,fsid=0,crossmnt,insecure,async,no_subtree_check,sec=krb5p:krb5i:krb5)
/export/home *(rw,insecure,async,no_subtree_check,sec=krb5p:krb5i:krb5)
Client machines use autofs to mount user home directories on demand.
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 this directory (can't access the server_dir)
Though I have given read-write (rw) permissions to the client by updating
/etc/exports file in s
Testing a socket.io application in the PROD environment for the first time, we found that while the xhr-polling transport (Ajax long polling) works, the websocket transport does not.
Looking at the data transmitted using Fiddler, I can see that the
UPGRADE happens and
the first message from the server (5 bytes gross) arrive at the client.
The client then sends a couple of messages to the server