rhel 6.5 NFS 服务器搭建

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了rhel 6.5 NFS 服务器搭建相关的知识,希望对你有一定的参考价值。

1、服务器端和客户端安装NFS

yum install -y nfs\*


2、服务器启动NFS

service rpcbind start
service ntp start
chkconfig rpcbind on
chkconfig nfs on

3、编辑expors文件

vim /etc/exports
/software               10.13.106.0/24(ro,sync)


4、客户端挂载NFS

mkdir /software
mount 10.13.106.11:/software /software/


以上是关于rhel 6.5 NFS 服务器搭建的主要内容,如果未能解决你的问题,请参考以下文章

CentOS 6.5下搭建NFS文件服务器

RHEL6.4 NFS文件共享服务搭建

rhel7-NFS服务搭建

两台台CentOS release 6.5 (Final)*64服务器搭建nfs——笔记

NFS-server———centos 6.5

Linux搭建NFS服务(基础)