赞
踩
先关闭防火墙,关闭selinux
# yum install -y nfs-utils
# yum install -y rpcbind
a. 创建共享目录(按实际情况修改)
# mkdir /share
b. 修改共享目录权限
# chmod 777 -R /share
c. 编辑exports文件
# vim /etc/exports
添加 内容
/share *(rw,no_root_squash,no_all_squash,sync)
#exportfs -r //修改生效
d. 永久启动服务
#systemctl enable rpcbind
#systemctl start rpcbind
#systemctl enable nfs
#systemctl start nfs
e. 查看验证
#showmount -e localhost
内容如下:
a. 查看
# showmount -e 服务端ip
显示内容如下
b. 客户端创建目录,及挂载
# mkdir /share
# mount -t nfs 服务端ip:/share /share
c. 自动挂载
#vim /etc/fstab
#在该文件中挂载,使系统每次启动时都能自动挂载
服务端ip:/share /share nfs defaults 0 0
#mount -a 使文件/etc/fstab 生效
d. 客户端查看
#df -Th
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。