欢迎来到尧图网

客户服务 关于我们

您的位置:首页 > 新闻 > 会展 > nfs服务器

nfs服务器

2024/11/29 21:29:34 来源:https://blog.csdn.net/wxhxmj/article/details/143969536  浏览:    关键词:nfs服务器

1、nfs配置

安装

  • [root@localhost ~]#  yum install rpcbind
  • [root@localhost ~]# yum install nfs-utils

服务端(192.168.217.129)

  • [root@localhost ~]# mkdir /data
  • [root@localhost ~]# vi /etc/exports
  • [root@localhost ~]# cat /etc/exports
     /data 192.168.217.130(rw)
  • [root@localhost ~]# chmod o+w /data/
  • [root@localhost ~]#  systemctl disable firewalld --now
  • [root@localhost ~]# getenforce
    Enforcing
  • [root@localhost ~]# setenforce 0
  • [root@localhost ~]# systemctl restart nfs-server
  • [root@localhost ~]# showmount -e 192.168.217.129
    Export list for 192.168.217.129:
    /data 192.168.217.130

客户端(192.168.217.130)

  • [root@localhost ~]# showmount -e 192.168.217.129
    Export list for 192.168.217.129:
    /data 192.168.217.130
  • [root@localhost ~]# mkdir -p /nfsclient/client-data/
  • [root@localhost ~]# mount 192.168.217.129:/data /nfsclient/client-data/
  • [root@localhost ~]# df -h

2、配置autofs自动挂载

客户端(192.168.217.130)

  • [root@localhost ~]# yum install autofs -y
  • [root@localhost ~]# vim /etc/auto.master
  • [root@localhost ~]# vim /etc/auto.wqq
  • [root@localhost ~]# grep wqq /etc/auto.master
    /nfsclient /etc/auto.wqq
  • [root@localhost ~]# cat /etc/auto.wqq
    wqq 192.168.217.129:/data
  • [root@localhost ~]#  systemctl restart autofs
  • [root@localhost ~]# cd /nfsclient/wqq
  • [root@localhost wqq]# 

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com