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

NFS 基础配置

时间:2017-06-02 14:03:33      阅读:102      评论:0      收藏:0      [点我收藏+]

标签:oca   客户端   home   ref   get   localhost   rpcbind   exports   bsp   

一、NFS 服务端配置

yum install -y nfs-utils rpcbind                     # 安装 NFS 软件包,nfs-utils 是 NFS 服务的主程序,rpcbind 是 RPC 服务的主程序
/etc/init.d/rpcbind start # 启动 RPC 服务
/etc/init.d/nfs start # 启动 NFS 服务
echo "/etc/init.d/rpcbind start" >> /etc/rc.local # 设置 RPC 服务开机启动
echo "/etc/init.d/nfs start" >> /etc/rc.local # 设置 NFS 服务开机启动
[root@localhost ~]# vim /etc/exports                 # NFS 配置文件
/data 192.168.5.0/24(rw)                             # /data 是要共享的目录,10.0.0.0/24 是允许的客户端,(rw) 是权限,表示允许读和写
/home 192.168.5.0/24(ro) # 注意,如果有多个权限用逗号隔开,且不能有空格
[root@localhost ~]# exportfs -rv # 重新加载 NFS 服务,使配置生效

 

二、NFS 客户端配置

yum install -y rpcbind nfs-utils                       
/etc/init.d/rpcbind start                             # 只需启动 RPC 服务
setenforce 0                                          # 关闭 SELinux
iptables -F                                           # 关闭防火墙
showmount -e 192.168.5.131 # 查看 NFS 服务端的共享目录 mount -t nfs 192.168.5.131:/data /mnt # 挂载 NFS 共享目录,-t nfs 是挂载的格式类型,表示把远程主机 192.168.5.131 的 /data 目录挂载到本地的 /mnt 目录 echo "/etc/init.d/rpcbind start" >> /etc/rc.local # 设置开机启动并挂载 echo "/bin/mount -t nfs 192.168.5.131:/data /mnt" >> /etc/rc.local
df -h # 查看挂载信息

 

 

 

 

    

NFS 基础配置

标签:oca   客户端   home   ref   get   localhost   rpcbind   exports   bsp   

原文地址:http://www.cnblogs.com/pzk7788/p/6932944.html

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