码迷,mamicode.com
首页 > 其他好文 > 详细

NFS安装与配置

时间:2017-12-20 13:57:16      阅读:183      评论:0      收藏:0      [点我收藏+]

标签:linux   nfs   

服务器端

yum install -y nfs-utils rpcbind    (安装nfs以及rpcbind[通信协议])

vim /etc/exports    (编辑配置文件,如下)

    /mnt 192.168.111.128(rw,sync)    #分享那个文件夹,到哪个IP地址,以及读写权限和传输协议

    /mnt 192.168.111.128(rw,sync,all_squash,anonuid=501,anongid=501)    #将用户权限限制为501用户,/etc/passwd下必须有这个用户

     /mnt 192.168.111.128(rw,sync,no_root_squash)    #不限制root,不安全!

/etc/init.d/rpcbind start    (开启rpcbind服务)

/etc/init.d/nfs start    (开启nfs服务)

exportfs -arv    (重启nfs服务)

客户端

yum install -y nfs-utils    (安装nfs服务)

showmount -e 192.168.111.129    (查看指定IP有哪些共享的文件夹)

mount -t nfs 192.168.111.129:/mnt /opt    (把客户端的文件夹挂载到本地的opt文件夹下)

mount -t nfs -onolook,nfsvers=3 192.168.111.129:/mnt /opt    (nfs不锁定,且版本指定为3)

df -h    (查看挂载情况)

cd /opt    (移动到opt文件夹下,可对共享文件夹内容进行操作)


NFS安装与配置

标签:linux   nfs   

原文地址:http://blog.51cto.com/culiangmianbao/2052345

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!