Ubuntu 如何搭建NFS服务?


前言:

  • NFS服务是一个在linux间共享文件的功能。
  • 比如A服务器有liqi的文件,B,C,D都想访问这个liqi的文件,就可以把A服务上的liqi文件共享出来。
  • NFS就是实现这个功能的。

假设:

  • 服务器A是192.168.49.160  作为服务端
  • 服务器B是192.168.50.123  作为客户端

 

 1.搭建服务端

  1.1在服务器A上安装nfs(我这个服务器A是Ubuntu)

sudo apt-get install nfs-kernel-server # 安装 NFS服务器端

  1.2启动服务

sudo systemctl enable nfs-server
sudo systemctl start nfs-server  # 启动服务

  1.3查看服务

sudo systemctl status nfs-server

  1.4创建文件夹

sudo mkdir /home/nfsfile  # 创建一个共享文件夹
sudo chown -Rf 777 /home/nfsfile  # 增加权限

  1.5打开配置参数文件

sudo vim /etc/exports  # 设置配置文件

  1.6输入设置参数

/home/nfsfile 192.168.*.*(rw,no_root_squash,sync)  # 允许192.168下所有网段都可以访问

 

Ubuntu 如何搭建NFS服务?

 

   1.7 常用参数解释

 Ubuntu 如何搭建NFS服务?

 

 

   1.7再查看一下服务器状态,如果没起来就在启动一下

sudo systemctl status nfs-server

  Ubuntu 如何搭建NFS服务?

 

 2.配置客户端

  2.1Ubuntu系统

sudo apt-get install nfs-common

  2.2 CentOS系统

yum install nfs-utils -y

  2.3创建客户端目录,可以起一样的名字

mkdir ./nfsfile    # 在当前目录下创建一个nfsfile

  2.4 挂载

mount -t nfs 192.168.49.160:/home/nfsfile ./nfsfile  #把远程的nfsfile挂载到自己的

   2.5 查看一下 

df -h

 

Ubuntu 如何搭建NFS服务?

  

成功了!

 

扩展 

1.如何取消挂载?

sudo umount ./nfsfile

 

 

参考资料

第12章 使用Samba或NFS实现文件共享

https://developer.aliyun.com/article/517837

Ubuntu20.04搭建NFS服务

https://blog.csdn.net/baidu_33032485/article/details/114496376

 

原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/282366.html

(0)
上一篇 2022年8月26日
下一篇 2022年8月26日

相关推荐

发表回复

登录后才能评论