您当前的位置:首页 > 电脑百科 > 站长技术 > 服务器

CentOS8 配置 NFS共享目录

时间:2021-07-19 11:31:14  来源:  作者:无花只有寒

# 环境说明:

1、主机IP

nfs server端主机:cjzm(nfs1) 192.168.123.165

nfs client端主机:asan(nfs2) 192.168.123.231

[root@asan ~]# ip a #查看主机IP

 

2、系统:centos linux release 8.0.1905 (Core)、CentOS Linux release 7.9.2009 (Core)为例

[root@cjzm ~]#cat /etc/redhat-release #查看系统版本信息

 

3、安装版本:

centos7:

nfs-utils-1.3.0-0.68.el7.x86_64

 

centos8:

nfs-utils-1:2.3.3-41.el8.x86_64

rpcbind-1.2.5-8.el8.x86_64

 

# cjzm主机部署server端部署(rpm安装)

## 本机具备yum源可以使用本机yum源安装,如果本机没有yum源,可参考压缩包提供的RPM包安装

1、安装软件

[root@cjzm ~]# yum -y install rpcbind nfs-utils

CentOS8 配置 NFS共享目录

安装中


CentOS8 配置 NFS共享目录

安装完成

2、创建共享文件并设置访问权限(如果原来已有,就不必创建)

[root@cjzm ~]# mkdir /data

[root@cjzm ~]# chmod 666 /data -R

 

3、修改配置文件,填写授权权限

[root@cjzm ~]# vim /etc/exports

#授权给192.168.123.231主机权限

/data 192.168.123.231(rw,sync,insecure,no_subtree_check,no_root_squash)

##################################################################

权限参数说明:

参数 说明

ro 只读访问

rw 读写访问

sync 所有数据在请求时写入共享

async nfs 在写入数据前可以响应请求

secure nfs 通过 1024 以下的安全 TCP/IP 端口发送

insecure nfs 通过 1024 以上的端口发送

wdelay 如果多个用户要写入 nfs 目录,则归组写入(默认)

no_wdelay 如果多个用户要写入 nfs 目录,则立即写入,当使用 async 时,无需此设置

hide 在 nfs 共享目录中不共享其子目录

no_hide 共享 nfs 目录的子目录

subtree_check 如果共享 /usr/bin 之类的子目录时,强制 nfs 检查父目录的权限(默认)

no_subtree_check 不检查父目录权限

all_squash 共享文件的 UID 和 GID 映射匿名用户 anonymous,适合公用目录

no_all_squash 保留共享文件的 UID 和 GID(默认)

root_squash root 用户的所有请求映射成如 anonymous 用户一样的权限(默认)

no_root_squash root 用户具有根目录的完全管理访问权限

anonuid=xxx 指定 nfs 服务器 /etc/passwd 文件中匿名用户的 UID

anongid=xxx 指定 nfs 服务器 /etc/passwd 文件中匿名用户的 GID

###############################################################

 

4、启动服务并设置开启自启动

[root@cjzm ~]# systemctl start nfs-server.service

[root@cjzm ~]# systemctl enable nfs-server.service

Created symlink /etc/systemd/system/multi-user.target.wants/nfs-server.service → /usr/lib/systemd/system/nfs-server.service.

 

5、查看注册的端口列表

[root@cjzm ~]# rpcinfo -p localhost

program vers proto port service

100000 4 tcp 111 portmApper

100000 3 tcp 111 portmapper

100000 2 tcp 111 portmapper

100000 4 udp 111 portmapper

100000 3 udp 111 portmapper

100000 2 udp 111 portmapper

100005 1 udp 20048 mountd

100024 1 udp 44356 status

100005 1 tcp 20048 mountd

100024 1 tcp 55217 status

100005 2 udp 20048 mountd

100005 2 tcp 20048 mountd

100005 3 udp 20048 mountd

100005 3 tcp 20048 mountd

100003 3 tcp 2049 nfs

100003 4 tcp 2049 nfs

100227 3 tcp 2049 nfs_acl

100021 1 udp 51865 nlockmgr

100021 3 udp 51865 nlockmgr

100021 4 udp 51865 nlockmgr

100021 1 tcp 34861 nlockmgr

100021 3 tcp 34861 nlockmgr

100021 4 tcp 34861 nlockmgr

 

# nfs2主机部署client端部署(rpm安装)

# 本机具备yum源可以使用本机yum源安装,如果本机没有yum源,可参考压缩包提供的RPM包安装

1、安装软件

[root@asan ~]# yum -y install nfs-utils

2、nfs识别测试

[root@asan ~]# showmount -e 192.168.123.165

Export list for 192.168.123.165:

/data 192.168.123.231

#出现上面的结果 为测试通过

========================================================

!!!注意!!!----如果存在以下报错,有可能是网络不通或防火墙阻止,检查一下防火墙是否放通

[root@asan ~]# showmount -e 192.168.123.165

clnt_create: RPC: Port mapper failure - Unable to receive: errno 113 (No route to host)

解决方式1 :nfs1主机防火墙放开部分服务

[root@cjzm ~]#firewall-cmd --permanent --add-service=rpc-bind  允许rpc nfs mountd服务通过防火墙

[root@cjzm ~]#firewall-cmd --permanent --add-service=nfs

[root@cjzm ~]#firewall-cmd --permanent --add-service=mountd  用于showmount

[root@cjzm ~]#firewall-cmd --reload  刷新防火墙配置

 

解决方式2:nfs2主机防火墙放开数据来源:

[root@asan ~]# iptables -A INPUT -s 192.168.123.165 -j ACCEPT

=========================================================

 

3、创建挂载目录,并挂载

[root@asan ~]# mkdir /data

[root@asan ~]# mount 192.168.123.165:/data /data

[root@asan ~]# df -h

文件系统 容量 已用 可用 已用% 挂载点

devtmpfs 471M 0 471M 0% /dev

tmpfs 487M 0 487M 0% /dev/shm

tmpfs 487M 8.3M 478M 2% /run

tmpfs 487M 0 487M 0% /sys/fs/cgroup

/dev/sda3 18G 11G 7.4G 59% /

/dev/sda1 297M 188M 109M 64% /boot

tmpfs 98M 0 98M 0% /run/user/1000

tmpfs 98M 12K 98M 1% /run/user/42

192.168.123.165:/data 17G 5.5G 12G 33% /data/dev/sda1 1014M 137M 878M 14% /boot

tmpfs 100M 0 100M 0% /run/user/0

192.168.253.146:/app 47G 1.5G 46G 3% /app

 

4、测试读写(nfs1和nfs2主机互写测试文件并查看)

[root@cjzm ~]# touch /data/test.txt

[root@asan ~]# ls -rlt /data/test.txt

-rw-r--r--. 1 root root 0 7月 18 18:59 /data/test.txt

 

[root@asan ~]# echo test2>/data/test.txt

[root@cjzm ~]# cat /data/test.txt

test2



Tags: NFS共享目录   点击:()  评论:()
声明:本站部分内容及图片来自互联网,转载是出于传递更多信息之目的,内容观点仅代表作者本人,如有任何标注错误或版权侵犯请与我们联系(Email:2595517585@qq.com),我们将及时更正、删除,谢谢。
▌相关推荐
# 环境说明:1、主机IPnfs server端主机:cjzm(nfs1) 192.168.123.165nfs client端主机:asan(nfs2) 192.168.123.231[root@asan ~]# ip a #查看主机IP 2、系统:CentOS Linux release 8...【详细内容】
2021-07-19  Tags: NFS共享目录  点击:(187)  评论:(0)  加入收藏
▌简易百科推荐
阿里云镜像源地址及安装网站地址https://developer.aliyun.com/mirror/centos?spm=a2c6h.13651102.0.0.3e221b111kK44P更新源之前把之前的国外的镜像先备份一下 切换到yumcd...【详细内容】
2021-12-27  干程序那些事    Tags:CentOS7镜像   点击:(1)  评论:(0)  加入收藏
前言在实现TCP长连接功能中,客户端断线重连是一个很常见的问题,当我们使用netty实现断线重连时,是否考虑过如下几个问题: 如何监听到客户端和服务端连接断开 ? 如何实现断线后重...【详细内容】
2021-12-24  程序猿阿嘴  CSDN  Tags:Netty   点击:(12)  评论:(0)  加入收藏
一. 配置yum源在目录 /etc/yum.repos.d/ 下新建文件 google-chrome.repovim /etc/yum.repos.d/google-chrome.repo按i进入编辑模式写入如下内容:[google-chrome]name=googl...【详细内容】
2021-12-23  有云转晴    Tags:chrome   点击:(7)  评论:(0)  加入收藏
一. HTTP gzip压缩,概述 request header中声明Accept-Encoding : gzip,告知服务器客户端接受gzip的数据 response body,同时加入以下header:Content-Encoding: gzip:表明bo...【详细内容】
2021-12-22  java乐园    Tags:gzip压缩   点击:(8)  评论:(0)  加入收藏
yum -y install gcc automake autoconf libtool makeadduser testpasswd testmkdir /tmp/exploitln -s /usr/bin/ping /tmp/exploit/targetexec 3< /tmp/exploit/targetls -...【详细内容】
2021-12-22  SofM    Tags:Centos7   点击:(7)  评论:(0)  加入收藏
Windows操作系统和Linux操作系统有何区别?Windows操作系统:需支付版权费用,(华为云已购买正版版权,在华为云购买云服务器的用户安装系统时无需额外付费),界面化的操作系统对用户使...【详细内容】
2021-12-21  卷毛琴姨    Tags:云服务器   点击:(6)  评论:(0)  加入收藏
参考资料:Hive3.1.2安装指南_厦大数据库实验室博客Hive学习(一) 安装 环境:CentOS 7 + Hadoop3.2 + Hive3.1 - 一个人、一座城 - 博客园1.安装hive1.1下载地址hive镜像路径 ht...【详细内容】
2021-12-20  zebra-08    Tags:Hive   点击:(9)  评论:(0)  加入收藏
以下是服务器安全加固的步骤,本文以腾讯云的CentOS7.7版本为例来介绍,如果你使用的是秘钥登录服务器1-5步骤可以跳过。1、设置复杂密码服务器设置大写、小写、特殊字符、数字...【详细内容】
2021-12-20  网安人    Tags:服务器   点击:(7)  评论:(0)  加入收藏
项目中,遇到了一个问题,就是PDF等文档不能够在线预览,预览时会报错。错误描述浏览器的console中,显示如下错误:nginx代理服务报Mixed Content: The page at ******** was loaded...【详细内容】
2021-12-17  mdong    Tags:Nginx   点击:(7)  评论:(0)  加入收藏
转自: https://kermsite.com/p/wt-ssh/由于格式问题,部分链接、表格可能会失效,若失效请访问原文密码登录 以及 通过密钥实现免密码登录Dec 15, 2021阅读时长: 6 分钟简介Windo...【详细内容】
2021-12-17  LaLiLi    Tags:SSH连接   点击:(16)  评论:(0)  加入收藏
相关文章
    无相关信息
最新更新
栏目热门
栏目头条