NFS Server Setup on CentOS 6
- August 15, 2019
Install the needed software for nfs operations: yum install nfs-utils nfs-utils-lib Setup the directories that need to be shared: vim /etc/exports Here is an example of a setting in the exports file: [directory that is being shared] [IP address of client or network (ex. 10.0.0.0/24)](rw,anonuid=[uid],anongid=[gid],async) Force the update from the exports file: exportfs -r See […]