当前位置:   article > 正文

【银河麒麟V10】【服务器】nfs搭建_麒麟v10安装nfs

麒麟v10安装nfs

步骤1:安装

先关闭防火墙,关闭selinux

# yum install -y nfs-utils

# yum install -y rpcbind

步骤2:服务端配置

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

内容如下:

步骤3:客户端连接

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

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/繁依Fanyi0/article/detail/594274
推荐阅读
相关标签
  

闽ICP备14008679号