博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
NFS配置文件
阅读量:5887 次
发布时间:2019-06-19

本文共 1517 字,大约阅读时间需要 5 分钟。

vim /etc/exports 

/mnt/directory01/ 10.0.0.1(rw,fsid=0,insecure,no_subtree_check,sync,no_root_squash)

/mnt/directory02/ 10.0.0.2(rw,fsid=0,insecure,no_subtree_check,sync,no_root_squash)

/mnt/directory03/ 10.0.0.3(rw,fsid=0,insecure,no_subtree_check,sync,no_root_squash)

/mnt/directory04/ 10.0.0.4(rw,fsid=0,insecure,no_subtree_check,sync,no_root_squash)

/mnt/directory05/ 10.0.0.5(rw,fsid=0,insecure,no_subtree_check,sync,no_root_squash)

/mnt/directory06/ 10.0.0.6(rw,fsid=0,insecure,no_subtree_check,sync,no_root_squash)

/mnt/directory07/ 10.0.0.7(rw,fsid=0,insecure,no_subtree_check,sync,no_root_squash)

/mnt/directory08/ 10.0.0.8(rw,fsid=0,insecure,no_subtree_check,sync,no_root_squash)

/mnt/directory09/ 10.0.0.9(rw,fsid=0,insecure,no_subtree_check,sync,no_root_squash)

/mnt/directory10/ 10.0.0.10(rw,fsid=0,insecure,no_subtree_check,sync,no_root_squash)

/mnt/directory11/ 10.0.0.11(rw,fsid=1,insecure,no_subtree_check,sync,no_root_squash)

/mnt/directory12/ 10.0.0.12(rw,fsid=0,insecure,no_subtree_check,sync,no_root_squash)

/mnt/directory13/ 10.0.0.13(rw,fsid=0,insecure,no_subtree_check,sync,no_root_squash)

/mnt/directory14/ 10.0.0.14(rw,fsid=0,insecure,no_subtree_check,sync,no_root_squash)

/mnt/directory15/ 10.0.0.15(rw,fsid=0,insecure,no_subtree_check,sync,no_root_squash)

编辑完该文件后,使用该命令使之生效

# exportfs -rv

然后客户端直接使用mount命令挂载该NFS,或编辑/etc/fstab文件来挂载。

#NFS Mount

10.0.0.250:/mnt/directory1  /mnt/nfs   nfs      rw,sync,hard,intr  0     0

本文转自ting2junshui51CTO博客,原文链接:http://blog.51cto.com/ting2junshui/1729649 ,如需转载请自行联系原作者
你可能感兴趣的文章
PLSQL Developer软件使用大全
查看>>
swift三方库
查看>>
杭州之行
查看>>
oracle ORA-00917: missing comma 是因为少逗号
查看>>
策略模式简介
查看>>
UIViewController中loadView的用法(应当注意的几点)
查看>>
POJ NOI0105-42 画矩形
查看>>
Java 数组在内存中的结构
查看>>
《关爱码农成长计划》第一期报告
查看>>
entity framework 6 通用数据类
查看>>
读取FTP上的excel文件,并写入数据库
查看>>
vs2008快捷键极其技巧 转载
查看>>
window 7上安装Visual Studio 2017失败的解决方法
查看>>
JavaScript 正整数正则表达式
查看>>
单元测试之Stub和Mock
查看>>
bash:command not found
查看>>
Systemd 基础(转)
查看>>
MySQL Replicationation基础
查看>>
武汉科技大学ACM :1009: 华科版C语言程序设计教程(第二版)例题4.18
查看>>
linux系统用户以及用户组管理
查看>>