NFS共享存储服务

文章目录

  • 前言
  • 一、NFS服务实现所需条件
  • 二、NFS服务配置
    • 1.服务器使用NFS发布共享资源
    • 2.在客户机中访问NFS共享资源
  • 总结:

前言

NFS是一种基于TCP/IP传输的网络文件系统协议,通过使用NFS协议,客户机可以访问本地目录一样访问远程服务器中的共享资源

一、NFS服务实现所需条件

NFS服务的实现依赖于RPC机制,以完成远程本地的映射过程,所以需要安装nfs-utils、rpcbind 软件包来提供 NFS共享服务,前者用于 NFS 共享发布和访问,后者用于 RPC 支持

二、NFS服务配置

NFS的配置文件为/etc/exports(服务端进行配置)

格式为:共享目录位置 客户机地址(权限选项)

例 /opt 192.168.126.0/24    #将/opt目录共享给192.168.126.0网段的所有用户

1.服务器使用NFS发布共享资源

①安装nfs-utils、rpcbind 软件包

   rpm -q rpcbind nfs-utils 
   yum -y install nfs-utils rpcbind

②设置共享目录

mkdir -p /opt/xjj
chmod 777 /opt/xjj

vim /etc/exports
/opt/wwwroot 192.168.126.0/24(rw,sync,no_root_squash)

客户机地址可以是主机名、IP 地址、网段地址,允许使用“*”、 “?”通配符
“rw” 表示允许读写,“ro” 表示为只读
sync :表示同步写入到内存与硬盘中
no_root_squash : 表示当客户机以root身份访问时赋予本地root权限(默认是root_squash)
root_squash :表示客户机用root用户访问该共享目录时,将root用户映射成匿名用户

其他常用选项

all_squash :所有访问用户都映射为匿名用户或用户组
async :将数据先保存在内存缓冲区中,必要时才写入磁盘
subtree_check(默认):若输出目录是一个子目录,则nfs服务器将检查其父目录的权限
no_subtree_check :即使输出目录是一个子目录,nfs服务器也不检查其父目录的权限,这样可以提高效

③启动NFS服务程序

手动加载NFS共享服务时,应该先启动rpcbind,再启动nfs

systemctl start rpcbind
systemctl start nfs
systemctl enable rpcbind
systemctl enable nfs

④查看本机发布的NFS共享目录

[root@localhost ~]# vim /etc/exports
[root@localhost ~]# exportfs -rv
exporting 192.168.126.0/24:/opt/xjj
[root@localhost ~]# showmount -e
Export list for localhost.localdomain:
/opt/xjj 192.168.126.0/24

2.在客户机中访问NFS共享资源

①安装nfs-utils、rpcbind 软件包

   rpm -q rpcbind nfs-utils 
   yum -y install nfs-utils rpcbind
   systemctl start rpcbind
   systemctl enable rpcbind

②查看NFS服务器端共享了哪些目录

showmount -e 192.168.126.15
mount 192.168.126.15:/opt/xjj /tmp
mount							#确认挂载结果,也可以使用df -Th

③在服务器/opt/xjj,目录进行查看,是否同步

[root@xjj ~]# showmount -e 192.168.126.15
Export list for 192.168.126.15:
/opt/xjj 192.168.126.0/24
[root@xjj ~]# showmount -e 192.168.126.15
Export list for 192.168.126.15:
/opt/lic 192.168.126.0/24
[root@xjj ~]# mount 192.168.126.15:/opt/xjj /tmp
[root@xjj ~]# cd /tmp
[root@xjj tmp]# ls
[root@xjj tmp]# touch aa

④在服务器/opt/xjj目录进行查看,是否同步

[root@xjj ~]# cd /tmp
[root@xjj tmp]# ls
[root@xjj tmp]# touch aa

⑤设置自动挂载

vim /etc/fstab
102.168.126.15:/opt/xjj    /tmp     nfs    defaults,_netdev 0 0

mount -a 
df -h

umount /tmp     #解挂载

总结:

强制卸载 NFS
如果服务器端NFS服务突然间停掉了,而客户端正在挂载使用时,在客户端就会出现执行 df -h 命令卡死的现象。这个时候直接使用umount 命令是无法直接卸载的,需要加上 -lf 选项才能卸载

你可能感兴趣的:(Linux,网络服务,linux,tcp/ip,windows,NFS)