Setting Up a NFS Server on Top of tmpfs /dev/shm
Posted on In Linux, Networktmpfs has blazing speed. Why not set up a high speed NFS server on top of tmpfs?
A little trick is required for setting NFS server on top of /dev/shm. If we add a normal entry in /etc/export and them run
# exportfs -a
exportfs will give us a warning like this: exportfs: Warning: /dev/shm requires fsid= for NFS export
When we try to mount this NFS server, we may get a error message from mount: mount.nfs: access denied by server while mounting nfsserver:/dev/shm
How to solve this problem? Just add the option fsid=1 to the /dev/shm entry in /etc/exports:
/dev/shm 10.0.0.1/24(rw,fsid=1,sync)
and remember to execute `# exportfs -a` again.
Then nfsserver:/dev/shm can be mounted in 10.0.0.1/24.
THANKS !
Strange, as nfs is asking twice to put an fsid option, just as it would see 2 fs’s (we were trying to mount an nfs share on top of tmpfs’ed /tmp).
Thank you!!!
I works!