博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
NFS安装及挂载
阅读量:5873 次
发布时间:2019-06-19

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

hot3.png

NFS服务端IP:192.168.40.10

NFS客户端IP:192.168.40.11

1. NFS安装

yum install -y rpcbind nfs-utils### CentOS 6 服务启动方式service rpcbind startservice nfs start### CentOS 7 启动方式systemctl start rpcbindsystemctl start nfs### CentOS 6 设置开机自启动chkconfig rpcbind onchkconfig nfs on### CentOS 7 设置开机自启动systemctl enable rpcbindsystemctl enable nfs

2. 服务端配置

以root用户在192.168.40.10上操作,假设共享路径为/nfs/share, 共享给192.168.40.11的test用户使用

mkdir -p /nfs/sharechown -R test:test /nfs/sharevi /etc/exports   ### 增加如下内容,多个IP之间用空格隔开/nfs/share 192.168.40.11(rw,sync,no_root_squash)service nfs restart

注:共享目录的用户ID和组ID必须客户端和服务端一致,否者会存在操作权限的问题。

3. 客户端配置

mkdir -p /sharemount 192.168.40.10:/nfs/share /sharechown test:test /share

设置开机自动挂载

vi /etc/rc.localmount 192.168.40.10:/nfs/share /share

转载于:https://my.oschina.net/wujizhitan/blog/1842908

你可能感兴趣的文章
LNMP之编译安装PHP出现的问题
查看>>
hdu5373
查看>>
4.单链表的创建和建立
查看>>
testng生成报告 testng-xslt 美化测试报告
查看>>
Android 好看的搜索界面,大赞Animation
查看>>
查询反模式 - GroupBy、HAVING的理解
查看>>
[转]动态加载javascript
查看>>
【协议】5、gossip 协议
查看>>
基于配置文件的redis的主从复制
查看>>
hasura graphql 角色访问控制
查看>>
springmvc中controller内方法跳转forward?redirect?
查看>>
C#委托,事件理解入门 (译稿)转载
查看>>
容器的end()方法
查看>>
[转] Agile Software Development 敏捷软件开发
查看>>
HDU 1007 Quoit Design (最小点对,模板题)
查看>>
Windows Phone 7 自定义事件
查看>>
Objective-c 网址中带中文解决方法
查看>>
向函数传递数组的问题
查看>>
上班族的坐姿
查看>>
ubuntu 12.04 下面安装vmware workstation 8.0.4
查看>>