This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
fuss:nfs [2020/07/07 14:43] – created office | fuss:nfs [2025/04/18 18:38] (current) – [Locking Issues with SQLite Databases] office | ||
---|---|---|---|
Line 2: | Line 2: | ||
If NFS clients mount the wrong export, edit the exports file and add '' | If NFS clients mount the wrong export, edit the exports file and add '' | ||
+ | |||
+ | ====== Locking Issues with SQLite Databases ====== | ||
+ | |||
+ | As part of [[https:// | ||
+ | |||
+ | < | ||
+ | [nfsd] | ||
+ | # debug=0 | ||
+ | # threads=8 | ||
+ | # host= | ||
+ | # port=0 | ||
+ | # grace-time=90 | ||
+ | # lease-time=90 | ||
+ | # udp=n | ||
+ | # tcp=y | ||
+ | vers3=n | ||
+ | vers4=y | ||
+ | vers4.0=n | ||
+ | vers4.1=n | ||
+ | vers4.2=y | ||
+ | # rdma=n | ||
+ | # rdma-port=20049 | ||
+ | |||
+ | </ | ||
+ | |||
+ | On machines that mounted the NFS exports, the '' | ||
+ | <code bash> | ||
+ | nfsstat -m | ||
+ | </ | ||
+ | can be used to list all NFS mounted shares and check the version that was used to mount the share. | ||
+ | |||
+ | It is also possible to just amend the mount table ''/ | ||
+ | |||
+ | One of the side-advantages of using NFSv4 is that NFSv4 is able to perform copying operations from clients without needing to perform a roundtrip, or, in other words, the client just instructs the server which file should be copied and to which destination and the server performs the file-copy operation itself, which is way faster than having to pull all the data to the client and then push all the data back to the server to the destination file in case rountrip copies were not available. What is also cool about this, is that server-copies are actually implemented as a series of system calls, starting from the lowest levels such that anything that builds on top should just transparently inherit the feature. | ||
+ |
For the contact, copyright, license, warranty and privacy terms for the usage of this website please see the contact, license, privacy, copyright.