ubuntu 搭建NFS服务

摘要:

NFS,Network file system,即网络文件系统,它允许网络中的计算机共享资源。在NFS的应用中,本地NFS的客户端应用可以透明地读写位于远端NFS服务器上的文件,就像访问本地文件一样。

下面讲述NFS服务器搭建和客户端使用:

服务器端:(ubuntu端)

步骤1:安装nfs-kernel-server。

sudo apt-get install nfs-kernel-server

步骤2:配置共享文件夹

sudo mkdir -p /home/nfsboot/    #创建NFS文件夹

sudo vim /etc/exports

#末尾添加内容如下:

/home/nfsboot/ *(rw,sync,no_root_squash)

注意:你可以创建多个共享文件夹,在/etc/exports下添加多个条目。

其中/home/nfsboot/ 是NFS服务器共享文件夹

rw:可读可写

sync:请求或者写入数据时,数据同步写入到NFS server的硬盘中后才会返回

no_root_squash:访问nfs server共享目录的用户如果是root的话,它对该目录具有root权限。

步骤3:重启NFS服务器服务

sudo service nfs-kernel-server restart

 

客户端:(ubuntu)

首先需要确保网络能够ping通。

其次执行挂载操作

sudo mount -t nfs -o nolock -o tcp 192.168.1.55:/home/nfsboot/ /mnt

参数解释:

-t nfs                          #挂载类型
-o nolock                       #读写的时候不锁定 
-o tcp                          #tcp模式,
192.168.1.55:/home/nfsboot      #服务器地址,
/mnt                            #挂载到本地mnt目录

通过df -h 可以查看挂载情况。此时就可以在/mnt目录下使用NFS服务器提供的服务了。

 

参考链接:

https://help.ubuntu.com/lts/serverguide/network-file-system.html

https://www.cnblogs.com/me80/p/7464125.html(推荐,详细的NFS工作过程)

你可能感兴趣的:(ubuntu 搭建NFS服务)