1.简介
在上一篇博文中讲述了samba的实战应用,samba使得window和linux共享文件成为可能。NFS则实现了linux与linux之间的文件共享。
2.系统环境
系统版本:centos6.7
服务器IP: 10.220.5.166/24
客户端IP: 10.220.5.188/24
3.关闭安全服务
[[email protected] ~]# service iptables stop [[email protected] ~]# setenforce 0
4.下载NFS
当nfs启动的时候,nfs会将该次启动所用的端口在rpc中进行注册,当客户端需要联系nfs的时候,需首先去访问rpc来获得nfs的端口号,然后才能去访问nfs。因此我们也需要下载rpcbind.
[[email protected] ~]# yum install nfs-utils rpcbind -y
5.配置NFS文件
[[email protected] ~]# vim /etc/exports/ken 10.220.5.0/24(rw,all_squash)
6.创建共享目录
[[email protected] ~]# mkdir /ken
7.更改共享目录属主
需要把新创建的目录属主和属组更改为运行nfs程序的用户,这样客户端才有权限进行读写操作、
[[email protected] ~]# chown nfsnobody:nfsnobody /ken
8.重启服务
[[email protected] ~]# service rpcbind restart [[email protected] ~]# service nfs restart
8. 客户端配置
客户端需要下载nfs,才能够使用命令showmount.
[[email protected] ~]# yum install nfs-utils -y
9.挂载共享目录
客户端进行共享目录挂载
[[email protected] ~]# mkdir /kenken [[email protected] ~]# showmount -e 10.220.5.166 Export list for 10.220.5.166: /ken 10.220.5.0/24 [[email protected] ~]# mount -t nfs 10.220.5.166:/ken /kenken
10.写入操作测试
[[email protected] /]# echo "this is ken" > /kenken/ken.txt [[email protected] /]# cd /kenken [[email protected] kenken]# ls 4028581620.jpg ken ken.txt [[email protected] kenken]# cat ken.txt this is ken
写入测试成功。
因为热爱 所以炽热
--技术流ken
原文地址:https://www.cnblogs.com/kenken2018/p/9716683.html
时间: 2024-11-05 15:52:36