Centos7.x安装NFS文件共享服务,也适用于其他系统
yum -y install nfs-utils rpcbind
vi /etc/exports
/nfs 172.27.0.0/24(rw,no_root_squash,no_all_squash,sync)
此配置允许172.27.0.0/24
段的IP以root权限读写/nfs
目录
service rpcbind start
service nfs start
chkconfig --level 2345 rpcbind on
chkconfig --level 2345 nfs on
yum -y install nfs-utils rpcbind
# 创建目录
mkdir /share
showmount -e 服务端ip
mount -t nfs 服务端ip:/nfs /share
# 测试
cd /share && touch a
vi /etc/fstab
服务端ip:/nfs /share nfs defaults 0 0