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

NFS安装

时间:2017-09-03 21:01:28      阅读:123      评论:0      收藏:0      [点我收藏+]

标签:ash   映射   service   lin   服务   路径   sync   async   text   

安装应用
yum install -y nfs-utils rpcbind
 
服务器端:
1.启动服务器
service nfs start
service rpcbind start
 
2. 编辑文件:/etc/exports,增加共享的文件路径以及共享方式
/home/filesrv 10.1.8.*(rw,sync)
这里有如下选项:
rw/ro:前者可读写,只读
sync/async:前者内存和硬盘同时刷,后者先刷内存后刷硬盘;
no_root_squash/root_squash:从安全性角度来说,选择后者,因为后者将会把client的root映射(压缩:squash)为匿名用户,这样就不都会对共享的文件有什么危害性操作。
3. 配置生效:exportfs -r
4. 检查:showmount -e
5. 设置权限:chmod +777 /home/filesrv
6. 端口设置:rpcinfo -p
 
客户端:
1. 检查共享情况
showmount -e 10.1.8.25
2. 挂载共享
mount -t nfs 10.1.8.25:/home/filesrv /home/fileapp

NFS安装

标签:ash   映射   service   lin   服务   路径   sync   async   text   

原文地址:http://www.cnblogs.com/xiashiwendao/p/7470802.html

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