# chkconfig rpcbind on
# chkconfig --list nfs
nfs 0:关闭 1:关闭 2:启用 3:启用 4:启用 5:启用 6:关闭
# chkconfig --list rpcbind
rpcbind 0:关闭 1:关闭 2:启用 3:启用 4:启用 5:启用 6:关闭
# tail -2 /etc/rc.local
/etc/init.d/rpcbind start
/etc/init.d/nfs start
4)NFS服务端配置文件配置
a、修改/etc/exports 文件
#vi /etc/exports
添加如下内容:
/chcklog 172.19.15.*(insecure,rw,sync,no_root_squash)
共享的目前文件 共享的客户端ip 读写 数据同步写入 以当前登录的用户访问
b、创建共享/chcklog目录
#mkdir /chcklog
#chmod 777 /chcklog //设置权限
#chown -R root:root /chcklog
#ls -ld /chcklog //查看权限
#/etc/init.d/nfs reload
#showmount -e 172.19.15.131 //本地测试,验证配置是否成功
2、客户端配置
1)、安装NFS和RPM包
2)、启动NFS服务
3)、配置客户端
#ping 172.19.15.131
#telnet 172.19.15.131 111
#showmount -e 172.19.15.131
#mount -t nfs 172.19.15.131:/chcklog /share //share文件必须已经创建
#umount /share 取挂载
#df -h //查看状态
原文:https://blog.51cto.com/14074978/2359259