linux - Can't write to FIFO file mouted via NFS -


I am trying to find the FIFO file on the NFS mount and what could be the problem with this block?

My / etc / export:

  / tmp / test / 10.0.0.0/24 (rw, nova_roct_squash, async)  

LS / TMP / test is on NFS server and customer is same

  prw - w - w - 1 root root 0 2009-06-24 17:28 

Itemprop = "text">

FIO means the inter-process communication mechanism. While trying to export FIFO through NFS, you are asking the kernel about local interaction communication as a local network communication system.

There are many issues related to it, the most obvious is that in order to implement FIFA inside the kernel, a buffer is expected to copy the data in the user space. Such a buffer is not available directly in the NFS. Thus, the kernel does not support export of FIO on NFS.

You may want to use sockets for network communication instead.


Comments