一、环境介绍:
服务器:centos 192.168.1.225
客户端:centos 192.168.1.226
二、安装:
NFS的安装配置:
centos 5 :
yum-yinstallnfs-utilsportmap
centos 6(在CentOS 6.3当中,portmap服务由rpcbind负责):
yum-yinstallnfs-utilsrpcbind
三、服务器端配置:
1、创建共享目录:
[root@centos2/]#mkdir/usr/local/test
2、NFS文件配置:
[root@centos2/]#vi/etc/exports #增加一行: /usr/local/test/192.168.1.226(rw,no_root_squash,no_all_squash,sync)
:x保存退出;
使配置生效:
[root@centos2/]#exportfs-r
注:配置文件说明:
/usr/local/test/ 为共享的目录,使用绝对路径。
192.168.1.226(rw,sync) 为客户端的地址及权限,地址可以是一个网段,一个IP地址或者是一个域名,域名支持通配符,如:*.youxia.com,地址与权限中间没有空格,权限说明:
rw:read-write,可读写;
ro:read-only,只读;
sync:文件同时写入硬盘和内存;
async:文件暂存于内存,而不是直接写入内存;
no_root_squash:NFS客户端连接服务端时如果使用的是root的话,那么对服务端分享的目录来说,也拥有root权限。显然开启这项是不安全的。
root_squash:NFS客户端连接服务端时如果使用的是root的话,那么对服务端分享的目录来说,拥有匿名用户权限,通常他将使用nobody或nfsnobody身份;
all_squash:不论NFS客户端连接服务端时使用什么用户,对服务端分享的目录来说都是拥有匿名用户权限;
anonuid:匿名用户的UID值,通常是nobody或nfsnobody,可以在此处自行设定;
anongid:匿名用户的GID值。
3、启动:
centos6:
[root@centos2 /]# service rpcbind start
Startingrpcbind:[OK] [root@centos2/]#servicenfsstart StartingNFSservices:[OK] StartingNFSquotas:[OK] StartingNFSmountd:[OK] StoppingRPCidmapd:[OK] StartingRPCidmapd:[OK] StartingNFSdaemon:[OK] [root@centos2/]#
centos 5
[root@centos2/]#serviceportmapstart [root@centos2/]#servicenfsstart [root@centos2/]#
四、客户端挂载:
1、创建需要挂载的目录:
[root@localhost~]#mkdir/usr/local/test [root@localhost~]#
2、测试挂载:
[root@localhost~]#showmount-e192.168.1.225 Exportlistfor192.168.1.225: /usr/local/test192.168.1.226 [root@localhost~]#
如果显示:rpc mount export: RPC: Unable to receive; errno = No route to host,则需要在服务端关闭防火墙(稍候会详细说)。
3、挂载:
[root@localhost ~]# mount -t nfs 192.168.1.225:/usr/local/test /usr/local/test
[root@localhost~]#mount /dev/mapper/VolGroup-lv_rooton/typeext4(rw) procon/proctypeproc(rw) sysfson/systypesysfs(rw) devptson/dev/ptstypedevpts(rw,gid=5,mode=620) tmpfson/dev/shmtypetmpfs(rw) /dev/sda1on/boottypeext4(rw) noneon/proc/sys/fs/binfmt_misctypebinfmt_misc(rw) sunrpcon/var/lib/nfs/rpc_pipefstyperpc_pipefs(rw) nfsdon/proc/fs/nfsdtypenfsd(rw) 192.168.1.225:/usr/local/teston/usr/local/testtypenfs(rw,vers=4,addr=192.168.1.225,clientaddr=192.168.1.226) [root@localhost~]#
如果信息如上显示则挂载成功!
4、测试:
[root@centos2/]#cd/usr/local/test/ [root@centos2test]#echo"hellonfstest">>test [root@centos2test]#ll total4 -rw-r--r--1rootroot15Apr913:24test [root@centos2test]#
服务端检查:
[root@centos2/]#cd/usr/local/test/ [root@centos2test]#ll total4 -rw-r--r--1rootroot15Apr913:24test [root@centos2test]#
挂载成功!
原文链接:https://www.f2er.com/centos/381150.html