At Old Dominion University, the LIONS (Large Integrated Online Networked Services) “General Purpose” UNIX/Linux resources supported by ITS have used OpenAFS to store user home directories for the past several years.
Starting in May 2024, the Old Dominion University ITS department will begin the process of migrating user home directories from the existing OpenAFS servers to NFSv4 storage on the University’s NetApp file servers. This process is slated to be complete by the end of June 2024.
Near the end of the process, both the LIONS web and ftp servers will be migrated to use the new location of your home directory.
NOTE: If you have any questions and/or concerns, please contact the ITS Help Desk either via the web at https://www.odu.edu/information-technology-services/helpdesk or by sending an email to mailto:itshelp@odu.edu.
NFS (or Network File System) is one of the standard internet protocols for file sharing and does not require a separate client like OpenAFS does. NFSv4 (i.e., Network File System version 4) is vastly different from its predecessors: it offers a stateful server, strong security, scalability/WAN features, and callbacks, among other things [1]. The latest version of NFS, version 4.2, includes many security features[2] such as
Make note of any symbolic links[3] in your home directory. Either
For example, here is an existing link pointing to a file in a test user’s home directory.
$ cd ~ $ ls -la test1 test2 -rw-rw-r-- 1 atestuser atestuser 0 Apr 25 10:16 test1 lrwxrwxrwx 1 atestuser atestuser 10 Apr 25 10:17 test2 -> /afs/lions.odu.edu/home/a/atestuser/test1
You can change it to a relative link like this:
$ cd ~ $ ln -sf test1 test2 $ ls -la test1 test2 -rw-rw-r-- 1 atestuser atestuser 0 Apr 25 10:16 test1 lrwxrwxrwx 1 atestuser atestuser 10 Apr 25 10:17 test2 -> test1
Or recreate the link after the migration:
$ cd ~ $ ln -sf test1 "${HOME}/test2" $ ls -la test1 test2 -rw-rw-r-- 1 atestuser atestuser 0 Apr 25 10:16 test1 lrwxrwxrwx 1 atestuser atestuser 10 Apr 25 10:17 test2 -> /nfs/lions.odu.edu/home/a/atestuser/test1
NOTE: This schedule is very fluid, so please be patient with us during the transition.
If you have any questions and/or concerns, please contact the ITS Help Desk either via the web at https://www.odu.edu/information-technology-services/helpdesk or by sending an email to mailto:itshelp@odu.edu.
[1] M. Chen, D. Hildebrand, G. Kuenning, S. Shankaranarayana, B. Singh, and E. Zadok, “Newer Is Sometimes Better: An Evaluation of NFSv4.1.” [Online]. Available: https://www.fsl.cs.sunysb.edu/docs/nfs4perf/nfs4perf-sigm15.pdf.
[2] steiner, “NFSv3 and NFSv4: What’s the difference?” [Online]. Available: https://community.netapp.com/t5/Tech-ONTAP-Blogs/NFSv3-and-NFSv4-What-s-the-difference/ba-p/441316.
[3] “Symbolic Link.” [Online]. Available: https://en.wikipedia.org/wiki/Symbolic_link\#Overview.