cetnos7下部分命令已变,例如ifconfig变更为ip addr
使用yum安装nfs
yum -y install nfs-unitls rpcbind
修改配置文档/etc/exports
初开始文档里没有任何内容,可以自行添加:
/opt/test/ 192.168.1.0/24(rw,no_root_squash,no_all_squash,sync)
使配置生效
exportfs -r
查看是否安装了nfs
rpm -qa | grep nfs rpcbind
启动nfs
service rpcbind start或者使用/bin/systemctl start rpcbind.service
service nfs start或者使用/bin/systemctl start nfs.service
chkconfig rpcbind on或者使用systemctl enable rpcbind.service
chkconfig nfs on或者使用systemctl enable nfs.service
查看挂载
showmount -e
客户端挂载
mount -t nfs 192.168.1.*:/opt/test /mnt
原文地址:http://7449553.blog.51cto.com/7439553/1712142