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下所有网段都可以访问
1.7 常用参数解释
1.7再查看一下服务器状态,如果没起来就在启动一下
sudo systemctl status nfs-server
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
成功了!
扩展
1.如何取消挂载?
sudo umount ./nfsfile
参考资料
https://www.linuxprobe.com/basic-learning-12.html
https://developer.aliyun.com/article/517837
https://www.pimspeak.com/ubuntu20-04-nfs.html
https://blog.csdn.net/baidu_33032485/article/details/114496376
标签:nfsfile,sudo,192.168,server,nfs,服务器,Ubuntu,NFS,搭建 来源: https://www.cnblogs.com/liqi175/p/16627100.html