美文网首页
nfs 服务搭建

nfs 服务搭建

作者: Andy_1ee | 来源:发表于2021-08-12 11:24 被阅读0次

nfs百科: nfs 百科

1. 安装 nfs-server

centos

### 1. 安装
yum install -y  nfs-utils
yum install -y rpcbind 
### 2. 启动
systemctl start rpcbind
systemctl start nfs-server
systemctl status nfs-server
systemctl status rpcbind
lsof -i:111
systemctl enable rpcbind
systemctl enable nfs-server
### 3.  配置共享目录
vim /etc/exports
/data *(rw,sync,no_root_squash)
### 4. 测试
1. 重启nfs服务
systemctl restart nfs-server
2. 测试
showmount -e <ip>

ubuntu

1. 安装
apt-get update
apt-get install -y nfs-kernel-server
2. 配置共享目录
vim /etc/exports
/data *(rw,sync,no_root_squash)
3. 启动
systemctl restart nfs-kernel-server
4. 测试
showmount -e <ip>

2. 配置nfs客户端

2.1 liunx
# centos
1. 安装
  yum install nfs-utils rpcbind -y
2. 启动
systemctl start rpcbind
3. 挂载
mount -t nfs <ip>:<nfs-server path> <local path>
4. 开机启动
vim /etc/rc.local
最后一行添加: mount -t nfs <ip>:<nfs-server path> <local path>
# ubuntu
1. 安装
 apt install nfs-common
2. 挂载
mount -t nfs <ip>:<nfs-server path> <local path>
3. 卸载
umount <local path>
2.2 windows
参考: https://blog.csdn.net/qq_34158598/article/details/81976063
1. 安装

3. 常见问题处理

1. 通过127.0.0.1:/data/ifs 可以挂载nfs, 但是在其他机器上无法进行挂载
# mount.nfs: access denied by server while mounting
# 解决思路:参考 http://liuzhigong.blog.163.com/blog/static/17827237520115305226932/
# 1. 根据资料查看日志 cat /var/log/messages | grep mount 发现并没有报错
# 2. 由于描述和资料类似, 所以增加 insecure (secure 选项要求mount客户端请求源端口小于1024, 使用insecure会关闭此项)
# /data/ifs  *(insecure,rw,async,no_root_squash)
通过上述方式发现问题解决

 

持续更新中...

相关文章

  • 搭建、挂载nfs及卸载

    搭建 1、 安装 nfs 和 rpc 2、运行 rpc 和 nfs (先启动RPC服务,然后再启动NFS服务) ...

  • 2018-10-24 (linxu如何创建NFS共享文件系统)

    linxu如何创建NFS共享文件系统服务端搭建nfs服务器1. yum -y install nfs-utils ...

  • Linux实用工具-nfs

    nfs服务器建立 本文介绍Linux环境下nfs服务的搭建过程。 简介 nfs服务的作用是让其他机器可以通过网络把...

  • 40-存储-NFS

    一、搭建NFS-Server 安装nfs-utils 创建 exports 文件 启动 NFS 服务并创建共享目录...

  • k8s基于NFS创建Storageclass

    结果展示 搭建NFS服务器 注意:安装nfs相关软件时需要在k8s的各个节点上都要安装参考Centos7搭建NFS...

  • k8s设置nfs为default StorageClass

    nfs服务器搭建 在服务端创建一个共享目录 /nfs(目录可自定义) 修改 NFS 配置文件 vim /etc/e...

  • nfs 搭建以及在k8s中的应用

    1. 如何搭建nfs服务 作为准备工作,我们已经在 k8s-master 节点上搭建了一个 NFS 服务器,目录为...

  • nfs服务搭建

    nfs是什么?基哥 度娘网络文件系统(NFS) 是sun微系统最初开发的分布式文件系统协议,[1] 允许客户端计算...

  • NFS 服务搭建

    1、系统环境 查询当前系统,安装对应得版本得 nfs相关软件;本文系统环境为 Ubuntu 16.04 amd64...

  • nfs服务搭建

    NFS工作流程 1、由程序在NFS客户端发起存取文件的请求,客户端本地的RPC(rpcbind)服务会通过网络向N...

网友评论

      本文标题:nfs 服务搭建

      本文链接:https://www.haomeiwen.com/subject/mnrnnktx.html