NFS实现目录共享

Posted 终点即起点

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了NFS实现目录共享相关的知识,希望对你有一定的参考价值。

NFS实现目录共享

1、安装nfs服务端 (192.168.1.10)

# 安装Nfs服务
yum install nfs-utils rpcbind –y
# 一般默认安装 
# 创建一个共享目录
mkdir /data/nfsroot  -p 

# 指定哪些IP或IP段可以挂载分享目录
echo "/data/nfsroot 
192.168.1.0/24(rw,async,all_squash)">>/etc/exports 

# 指定共享目录权限
chown -R nfsnobody:nfsnobody /data/nfsroot 

# 启动rpcbind
/etc/init.d/rpcbind restart

# 启动nfs
/etc/init.d/nfs restart

2、安装nfs客户端 (192.168.1.11)

# 安装Nfs服务
yum install nfs-utils rpcbind –y
# 一般默认安装 
# 启动rpcbind
/etc/init.d/rpcbind restart

# 启动nfs
/etc/init.d/nfs restart
# 查看哪个目录可以挂载
showmount -e 192.168.1.10

# 创建挂载点
mkdir /data/file/nfsroot –p
# 挂载到指定挂载点
mount -t nfs -onoexec,nosuid,nodev,noatime 192.168.1.10:/data/nfsroot /data/files/nfsroot

# 设置开机自动挂载
echo"/usr/bin/mount -t nfs -onoexec,nosuid,nodev,noatime 10.10.56.1:/data/nfsroot /data/files/nfsroot” >> /etc/rc.local

 

以上是关于NFS实现目录共享的主要内容,如果未能解决你的问题,请参考以下文章

iTOP-6818开发板设置NFS共享目录的实现

利用 samba 共享和 nfs 共享目录的实现;

搭建NFS服务 实现Linux与Linux之间的文件共享

02-NFS存储服务

NFS和SAMBA的共享的实现

NFS实现linux系统间文件共享